diff --git a/db.URWF b/db.URWF
index 4d080663d3cfe234f411dac4f0ed72504b210265..f825522ded0848d8625e29da77d21ff22d1a157c 100644
Binary files a/db.URWF and b/db.URWF differ
diff --git a/db.UWF b/db.UWF
new file mode 100644
index 0000000000000000000000000000000000000000..2ae06d2dab8c50140ffe9d6c720a93a2b150621e
Binary files /dev/null and b/db.UWF differ
diff --git a/hyper_URWF.py b/hyper_URWF.py
new file mode 100644
index 0000000000000000000000000000000000000000..d056f11598d0d5a0058ef1d22e2e2cc2824f1490
--- /dev/null
+++ b/hyper_URWF.py
@@ -0,0 +1,90 @@
+"""
+Optuna example that optimizes multi-layer perceptrons using PyTorch.
+
+In this example, we optimize the validation accuracy of fashion product recognition using
+PyTorch and FashionMNIST. We optimize the neural network architecture as well as the optimizer
+configuration. As it is too time consuming to use the whole FashionMNIST dataset,
+we here use a small subset of it.
+
+"""
+import generating
+
+import numpy as np
+import math
+import os
+import train_URWF
+import optuna
+from optuna.trial import TrialState
+import torch
+import torch.nn as nn
+import torch.nn.functional as F
+import torch.optim as optim
+import torch.utils.data
+from torchvision import datasets
+from torchvision import transforms
+
+
+def objective(trial):
+    # SCENARIO = trial.suggest_categorical(
+    # "SCENARIO",
+    # ["scalar", "vector", "matrix", "vector-matrix", "tensor", "SPD-matrix"],
+    # )
+    LR = trial.suggest_float("LR", 1e-4, 1e-2)
+    scenario = trial.suggest_int("scenario", 0, 7)
+    x, x_val, Amatrix, y, y_val = generating.gen_x_Amatrix_y(
+        n=64, m=10 * 64, N=100, cplx_flag=1, cuda_flag=1
+    )
+
+    return train_URWF.train_URWF(
+        x,
+        x_val,
+        Amatrix,
+        y,
+        y_val,
+        SCENARIO=scenario,
+        LR=LR,
+        cuda_flag=1,
+        cplx_flag=1,
+        npower_iter=30,
+        T=30,
+        scalar=True,
+        vector=True,
+        matrix=True,
+        tensor=True,
+        EPOCHS=50,
+    )
+
+
+if __name__ == "__main__":
+    # print("enter 0 for Wirtinger Flow")
+    # print("enter 1 for Truncated Wirtinger Flow")
+    # print("enter 2 for Reshaped Wirtinger Flow")
+    # print("enter 3 for Incrementally Reshaped Wirtinger Flow")
+    # print("enter 4 for Minibatch Incrementally Reshaped Wirtinger Flow")
+    # name = input(
+    # "Please Enter Your Desired Deep Unfolding Variant for Hyperparameter Study: "
+    # )
+    study = optuna.create_study(
+        direction="minimize",
+        storage="sqlite:///db.URWF",
+        study_name="Deep Unfolding Using Reshaped Wirtinger Flow",
+        load_if_exists=True,
+    )
+    study.optimize(objective, n_trials=20)
+
+    pruned_trials = study.get_trials(deepcopy=False, states=[TrialState.PRUNED])
+    complete_trials = study.get_trials(deepcopy=False, states=[TrialState.COMPLETE])
+
+    print("Study statistics: ")
+    print("  Number of finished trials: ", len(study.trials))
+    print("  Number of pruned trials: ", len(pruned_trials))
+    print("  Number of complete trials: ", len(complete_trials))
+
+    print("Best trial:")
+    trial = study.best_trial
+
+    print("  Value: ", trial.value)
+
+    print("  Params: ")
+    for key, value in trial.params.items():
+        print("    {}: {}".format(key, value))
diff --git a/hyper_UWF.py b/hyper_UWF.py
new file mode 100644
index 0000000000000000000000000000000000000000..1b2504409f553dc7fe97a387f51e158832f1d3ba
--- /dev/null
+++ b/hyper_UWF.py
@@ -0,0 +1,91 @@
+"""
+Optuna example that optimizes multi-layer perceptrons using PyTorch.
+
+In this example, we optimize the validation accuracy of fashion product recognition using
+PyTorch and FashionMNIST. We optimize the neural network architecture as well as the optimizer
+configuration. As it is too time consuming to use the whole FashionMNIST dataset,
+we here use a small subset of it.
+
+"""
+import generating
+
+import numpy as np
+import math
+import os
+import train_UWF
+import optuna
+from optuna.trial import TrialState
+import torch
+import torch.nn as nn
+import torch.nn.functional as F
+import torch.optim as optim
+import torch.utils.data
+from torchvision import datasets
+from torchvision import transforms
+
+
+def objective(trial):
+    # SCENARIO = trial.suggest_categorical(
+    # "SCENARIO",
+    # ["scalar", "vector", "matrix", "vector-matrix", "tensor", "SPD-matrix"],
+    # )
+    LR = trial.suggest_float("LR", 1e-4, 1e-2)
+    scenario = trial.suggest_int("scenario", 0, 7)
+    x, x_val, Amatrix, y, y_val = generating.gen_x_Amatrix_y(
+        n=64, m=10 * 64, N=100, cplx_flag=1, cuda_flag=1
+    )
+
+    return train_UWF.train_UWF(
+        x,
+        x_val,
+        Amatrix,
+        y,
+        y_val,
+        SCENARIO=scenario,
+        LR=LR,
+        cuda_flag=1,
+        cplx_flag=1,
+        npower_iter=30,
+        tau0=100,
+        T=160,
+        scalar=True,
+        vector=True,
+        matrix=True,
+        tensor=True,
+        EPOCHS=50,
+    )
+
+
+if __name__ == "__main__":
+    # print("enter 0 for Wirtinger Flow")
+    # print("enter 1 for Truncated Wirtinger Flow")
+    # print("enter 2 for Reshaped Wirtinger Flow")
+    # print("enter 3 for Incrementally Reshaped Wirtinger Flow")
+    # print("enter 4 for Minibatch Incrementally Reshaped Wirtinger Flow")
+    # name = input(
+    # "Please Enter Your Desired Deep Unfolding Variant for Hyperparameter Study: "
+    # )
+    study = optuna.create_study(
+        direction="minimize",
+        storage="sqlite:///db.UWF",
+        study_name="Deep Unfolding Using Reshaped Wirtinger Flow",
+        load_if_exists=True,
+    )
+    study.optimize(objective, n_trials=20)
+
+    pruned_trials = study.get_trials(deepcopy=False, states=[TrialState.PRUNED])
+    complete_trials = study.get_trials(deepcopy=False, states=[TrialState.COMPLETE])
+
+    print("Study statistics: ")
+    print("  Number of finished trials: ", len(study.trials))
+    print("  Number of pruned trials: ", len(pruned_trials))
+    print("  Number of complete trials: ", len(complete_trials))
+
+    print("Best trial:")
+    trial = study.best_trial
+
+    print("  Value: ", trial.value)
+
+    print("  Params: ")
+    for key, value in trial.params.items():
+        print("    {}: {}".format(key, value))
diff --git a/main.py b/main.py
deleted file mode 100644
index 1205c98516925fcf5f79f6dbec40af8903e50233..0000000000000000000000000000000000000000
--- a/main.py
+++ /dev/null
@@ -1,90 +0,0 @@
-"""
-Optuna example that optimizes multi-layer perceptrons using PyTorch.
-
-In this example, we optimize the validation accuracy of fashion product recognition using
-PyTorch and FashionMNIST. We optimize the neural network architecture as well as the optimizer
-configuration. As it is too time consuming to use the whole FashionMNIST dataset,
-we here use a small subset of it.
-
-"""
-import generating
-
-import numpy as np
-import math
-import os
-import train_URWF
-import optuna
-from optuna.trial import TrialState
-import torch
-import torch.nn as nn
-import torch.nn.functional as F
-import torch.optim as optim
-import torch.utils.data
-from torchvision import datasets
-from torchvision import transforms
-
-
-def objective(trial):
-    # SCENARIO = trial.suggest_categorical(
-    # "SCENARIO",
-    # ["scalar", "vector", "matrix", "vector-matrix", "tensor", "SPD-matrix"],
-    # )
-    LR = trial.suggest_float("LR", 1e-4, 1e-2)
-    scenario = trial.suggest_int("scenario", 0, 5)
-    x, x_val, Amatrix, y, y_val = generating.gen_x_Amatrix_y(
-        n=64, m=10 * 64, N=100, cplx_flag=1, cuda_flag=1
-    )
-
-    return train_URWF.train_URWF(
-        x,
-        x_val,
-        Amatrix,
-        y,
-        y_val,
-        SCENARIO=scenario,
-        LR=LR,
-        cuda_flag=1,
-        cplx_flag=1,
-        npower_iter=30,
-        T=5,
-        scalar=True,
-        vector=True,
-        matrix=True,
-        tensor=True,
-        EPOCHS=1,
-    )
-
-
-if __name__ == "__main__":
-    # print("enter 0 for Wirtinger Flow")
-    # print("enter 1 for Truncated Wirtinger Flow")
-    # print("enter 2 for Reshaped Wirtinger Flow")
-    # print("enter 3 for Incrementally Reshaped Wirtinger Flow")
-    # print("enter 4 for Minibatch Incrementally Reshaped Wirtinger Flow")
-    # name = input(
-    # "Please Enter Your Desired Deep Unfolding Variant for Hyperparameter Study: "
-    # )
-    study = optuna.create_study(
-        direction="minimize",
-        storage="sqlite:///db.URWF",
-        study_name="Deep Unfolding Using Reshaped Wirtinger Flow",
-        load_if_exists=True,
-    )
-    study.optimize(objective, n_trials=2)
-
-    pruned_trials = study.get_trials(deepcopy=False, states=[TrialState.PRUNED])
-    complete_trials = study.get_trials(deepcopy=False, states=[TrialState.COMPLETE])
-
-    print("Study statistics: ")
-    print("  Number of finished trials: ", len(study.trials))
-    print("  Number of pruned trials: ", len(pruned_trials))
-    print("  Number of complete trials: ", len(complete_trials))
-
-    print("Best trial:")
-    trial = study.best_trial
-
-    print("  Value: ", trial.value)
-
-    print("  Params: ")
-    for key, value in trial.params.items():
-        print("    {}: {}".format(key, value))
diff --git a/models_UIRWF/UIRWF_20230706_083938_0 b/models_UIRWF/UIRWF_20230706_083938_0
deleted file mode 100644
index 70b1db22b83925fdc1f032dfc694312d674daeb7..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_083938_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_084957_0 b/models_UIRWF/UIRWF_20230706_084957_0
deleted file mode 100644
index ee1adcb4f1163de60f068aa5562000846a95f939..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_084957_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085023_0 b/models_UIRWF/UIRWF_20230706_085023_0
deleted file mode 100644
index d4b01c60059ccdcf8b39ca2ed8fd93e734e1fd39..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085023_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085023_1 b/models_UIRWF/UIRWF_20230706_085023_1
deleted file mode 100644
index b87344174bfd547275639565f2174ffc48f0f2c4..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085023_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085023_2 b/models_UIRWF/UIRWF_20230706_085023_2
deleted file mode 100644
index 12325086cbf498db50518d2df432cb03eba42d66..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085023_2 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085023_4 b/models_UIRWF/UIRWF_20230706_085023_4
deleted file mode 100644
index b518a9d0353d51e89ab7e69b2699cc750efadd7f..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085023_4 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085023_5 b/models_UIRWF/UIRWF_20230706_085023_5
deleted file mode 100644
index e4207ac52979c09cfe8325840fd0b3d279789966..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085023_5 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085023_6 b/models_UIRWF/UIRWF_20230706_085023_6
deleted file mode 100644
index 3e85c03407b410e4802bfd0de6b3408dbc8c6f67..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085023_6 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085023_8 b/models_UIRWF/UIRWF_20230706_085023_8
deleted file mode 100644
index 6593a40a5096479abeeb890176ee209a3bbde26b..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085023_8 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085231_0 b/models_UIRWF/UIRWF_20230706_085231_0
deleted file mode 100644
index 44fb1f1d22b6e584a5bed4b749d081b835145a86..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085231_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085231_1 b/models_UIRWF/UIRWF_20230706_085231_1
deleted file mode 100644
index b30282851158a79ff799e15530dff43404e1fd0a..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085231_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085231_10 b/models_UIRWF/UIRWF_20230706_085231_10
deleted file mode 100644
index 6cd77dd72e75d85c9f79411cc6c32df4f1a6a70e..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085231_10 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085231_11 b/models_UIRWF/UIRWF_20230706_085231_11
deleted file mode 100644
index 37cc9d93f31f84e87d2768b9114a222983ed010a..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085231_11 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085231_14 b/models_UIRWF/UIRWF_20230706_085231_14
deleted file mode 100644
index a9ca926ed4e1750bc2bd78482c7afc061a3f5eb5..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085231_14 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085231_2 b/models_UIRWF/UIRWF_20230706_085231_2
deleted file mode 100644
index 6b3ebb63a31b3bf188ca794fce5cf94025072d69..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085231_2 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085231_4 b/models_UIRWF/UIRWF_20230706_085231_4
deleted file mode 100644
index a34d2199c8397e334009e29b60e2aa486a771902..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085231_4 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085231_6 b/models_UIRWF/UIRWF_20230706_085231_6
deleted file mode 100644
index 72a7ed76f26f177b8f1fea3739f96e4410acbedb..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085231_6 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085231_7 b/models_UIRWF/UIRWF_20230706_085231_7
deleted file mode 100644
index f86997042d9d95fa920c254b9786fecdbf0d5ae9..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085231_7 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085929_0 b/models_UIRWF/UIRWF_20230706_085929_0
deleted file mode 100644
index b176024f6ff39b25e860cb769e872b89fd5c1ba8..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085929_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085929_1 b/models_UIRWF/UIRWF_20230706_085929_1
deleted file mode 100644
index edaf6b38b13861bfcbf4296393589b00575c0a17..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085929_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085929_11 b/models_UIRWF/UIRWF_20230706_085929_11
deleted file mode 100644
index 18938200e89c745eb33d72ef4dff2e67d2af30a8..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085929_11 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085929_12 b/models_UIRWF/UIRWF_20230706_085929_12
deleted file mode 100644
index ba12d6498c98892a53e03b7258549ae63429a0a1..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085929_12 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085929_15 b/models_UIRWF/UIRWF_20230706_085929_15
deleted file mode 100644
index dca8a6a6cb4147e5bc88313535ea84a63f6e9302..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085929_15 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085929_17 b/models_UIRWF/UIRWF_20230706_085929_17
deleted file mode 100644
index 0609844239e1afc1cf4c6745b0c97e6f2f0a0366..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085929_17 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085929_19 b/models_UIRWF/UIRWF_20230706_085929_19
deleted file mode 100644
index cdf28ad0f864060078879fd16739642bf221da8f..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085929_19 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085929_2 b/models_UIRWF/UIRWF_20230706_085929_2
deleted file mode 100644
index b5f3c01c9862ea84bda9fbfc87c1d706c0ea4b6f..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085929_2 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085929_3 b/models_UIRWF/UIRWF_20230706_085929_3
deleted file mode 100644
index d7fae79e32ba5586f7c9778d420ee0ca00111b05..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085929_3 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085929_4 b/models_UIRWF/UIRWF_20230706_085929_4
deleted file mode 100644
index c69f6c377498a756f122c6c415cecd473f3492bb..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085929_4 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085929_5 b/models_UIRWF/UIRWF_20230706_085929_5
deleted file mode 100644
index 2fba806f6e2b6d2dadd133c1d891ace08c142e6a..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085929_5 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085929_6 b/models_UIRWF/UIRWF_20230706_085929_6
deleted file mode 100644
index 4744aca4dbfc14bfaa990bc33d0457d6f22a69dd..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085929_6 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085929_7 b/models_UIRWF/UIRWF_20230706_085929_7
deleted file mode 100644
index 995c590280474f818cfb85a5643e9fe79db2033b..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085929_7 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085929_8 b/models_UIRWF/UIRWF_20230706_085929_8
deleted file mode 100644
index 249a9876d9a638ef36c238ab36e69b0ad37f236f..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085929_8 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230706_085929_9 b/models_UIRWF/UIRWF_20230706_085929_9
deleted file mode 100644
index 2c44d72fc300949c10f6352abe36371f771796c1..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230706_085929_9 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_144840_0 b/models_UIRWF/UIRWF_20230707_144840_0
deleted file mode 100644
index a4b4224ff3bd10e51e7815a24ed44f8f6e971082..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_144840_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_144840_1 b/models_UIRWF/UIRWF_20230707_144840_1
deleted file mode 100644
index 3f70678745a566621b507e4a296d3f64b7b0a340..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_144840_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_144840_2 b/models_UIRWF/UIRWF_20230707_144840_2
deleted file mode 100644
index 2441f0f5bfb67962e63323688a6e6e25c348e96b..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_144840_2 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_144840_3 b/models_UIRWF/UIRWF_20230707_144840_3
deleted file mode 100644
index 5aebb060cf02b643fe39a68a1de85b35019be3e6..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_144840_3 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_144840_4 b/models_UIRWF/UIRWF_20230707_144840_4
deleted file mode 100644
index 57bcc4e89e286562ac24eca382d98c218a3ec0ab..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_144840_4 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_144940_0 b/models_UIRWF/UIRWF_20230707_144940_0
deleted file mode 100644
index 2c5ae581a3cfce6827fe452c5f8637d7392ad4a4..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_144940_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_144940_1 b/models_UIRWF/UIRWF_20230707_144940_1
deleted file mode 100644
index 5a6a6cfb6cf4b78b98d6ccded044b4105752be4a..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_144940_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_144940_2 b/models_UIRWF/UIRWF_20230707_144940_2
deleted file mode 100644
index 68f096019e348a36e74bf56b23effd3c27e97046..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_144940_2 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_145139_0 b/models_UIRWF/UIRWF_20230707_145139_0
deleted file mode 100644
index 69cbf10cbaa00c10873178431d62cdf7ed62f8d9..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_145139_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_145139_1 b/models_UIRWF/UIRWF_20230707_145139_1
deleted file mode 100644
index 6eae2049dd2b37b15c819c0b1d9b498f05d57b85..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_145139_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_145955_0 b/models_UIRWF/UIRWF_20230707_145955_0
deleted file mode 100644
index ec61e51b4b39ad62a53d780a66bd0fed67ceb372..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_145955_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_145955_1 b/models_UIRWF/UIRWF_20230707_145955_1
deleted file mode 100644
index c52cc4e4176f280b5ce0f112c3c259f85019ab82..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_145955_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_150128_0 b/models_UIRWF/UIRWF_20230707_150128_0
deleted file mode 100644
index 414282ae3b7c7c21fffa778ac9e85a40ac7cd5a0..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_150128_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_150128_1 b/models_UIRWF/UIRWF_20230707_150128_1
deleted file mode 100644
index 921a091f531ebd27495ab1d2789e54ab090aed30..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_150128_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_150303_0 b/models_UIRWF/UIRWF_20230707_150303_0
deleted file mode 100644
index 76a15b624a2fb124df3b66cf07054100804dfbf4..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_150303_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_150303_1 b/models_UIRWF/UIRWF_20230707_150303_1
deleted file mode 100644
index abe50c65da11dbe7044372959216abcc0e4e7d94..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_150303_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_150840_0 b/models_UIRWF/UIRWF_20230707_150840_0
deleted file mode 100644
index d5fb7d899abeb9aa0a029f9e212e432182c4fac7..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_150840_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_150840_1 b/models_UIRWF/UIRWF_20230707_150840_1
deleted file mode 100644
index 1e6e83cb10f3fcb57ac5b826c4121d5ae1062fec..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_150840_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_151013_0 b/models_UIRWF/UIRWF_20230707_151013_0
deleted file mode 100644
index e2cadf089a10822fc2d9fc2bbaa6ba7f5f4849a9..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_151013_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_151013_1 b/models_UIRWF/UIRWF_20230707_151013_1
deleted file mode 100644
index 1429849d7023e9f0b2995abb02e8acb002cb7454..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_151013_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_151118_0 b/models_UIRWF/UIRWF_20230707_151118_0
deleted file mode 100644
index 6a3216841b05e6a1ef7f97b5c2a84c6f9822b7b4..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_151118_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_151118_1 b/models_UIRWF/UIRWF_20230707_151118_1
deleted file mode 100644
index 3bfef9ac791669de442341b5551495deeb2ffe62..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_151118_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_151118_10 b/models_UIRWF/UIRWF_20230707_151118_10
deleted file mode 100644
index a4c327429639d9d6f1c267293f821d020f40cf85..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_151118_10 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_151118_14 b/models_UIRWF/UIRWF_20230707_151118_14
deleted file mode 100644
index d7350e19b594f43e7a17e3138e593548e335f73c..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_151118_14 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_151118_2 b/models_UIRWF/UIRWF_20230707_151118_2
deleted file mode 100644
index d1364c77ce1fe15334740dc5895ab15061859269..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_151118_2 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_151118_3 b/models_UIRWF/UIRWF_20230707_151118_3
deleted file mode 100644
index 9948734e4ea047272a011723246d8aaadd00b157..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_151118_3 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_151118_4 b/models_UIRWF/UIRWF_20230707_151118_4
deleted file mode 100644
index 9e11ba3eedf44caa8e8e27f7c2bf0a02212edbbf..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_151118_4 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_151118_5 b/models_UIRWF/UIRWF_20230707_151118_5
deleted file mode 100644
index d4e0eab6e71a826b99a6b91dc21f547f54d8527a..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_151118_5 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_151118_6 b/models_UIRWF/UIRWF_20230707_151118_6
deleted file mode 100644
index 5250f3719887b8dc49f6418b5cde306b5caf17c5..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_151118_6 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_151118_7 b/models_UIRWF/UIRWF_20230707_151118_7
deleted file mode 100644
index a5146141e88ebc45da3bc5f1cb18eb14014f8877..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_151118_7 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_151118_8 b/models_UIRWF/UIRWF_20230707_151118_8
deleted file mode 100644
index 7779ef37826b3bbf71c8bb1f88068e5615f681be..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_151118_8 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_152935_0 b/models_UIRWF/UIRWF_20230707_152935_0
deleted file mode 100644
index 6bca2495b22b61faf738b066c2e6db6de09e6618..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_152935_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_152935_1 b/models_UIRWF/UIRWF_20230707_152935_1
deleted file mode 100644
index d28a140e9064aaf5a346af5349dac301c327ef55..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_152935_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_152935_2 b/models_UIRWF/UIRWF_20230707_152935_2
deleted file mode 100644
index 2bba15c8a71f26335627a93c58602651d1fcf562..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_152935_2 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_152935_3 b/models_UIRWF/UIRWF_20230707_152935_3
deleted file mode 100644
index e3d83b35e7f15c41f58762befa2d568c621a6a7f..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_152935_3 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_152935_4 b/models_UIRWF/UIRWF_20230707_152935_4
deleted file mode 100644
index f6ec62044e87b4334cddfbbc6f8b2b9438ca586e..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_152935_4 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_152935_5 b/models_UIRWF/UIRWF_20230707_152935_5
deleted file mode 100644
index 22fe697aaeaaede8c10a2c836299be1130bf6eff..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_152935_5 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_152935_6 b/models_UIRWF/UIRWF_20230707_152935_6
deleted file mode 100644
index 72341e02f5097089081880bbce6ce3f7f468069d..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_152935_6 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153058_0 b/models_UIRWF/UIRWF_20230707_153058_0
deleted file mode 100644
index 14dcd2e7c02c02cb2a7e4e45a3d4edc758f10060..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153058_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153058_1 b/models_UIRWF/UIRWF_20230707_153058_1
deleted file mode 100644
index 20a745ebd2f49d3b27cff566b2c4e618f9c1df74..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153058_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153058_2 b/models_UIRWF/UIRWF_20230707_153058_2
deleted file mode 100644
index c997c59ba85b5c37eb4ff3c85fee972ba6986eb9..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153058_2 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153058_3 b/models_UIRWF/UIRWF_20230707_153058_3
deleted file mode 100644
index b427b8f6b35b98b2f0ca3f8feba8fc392bd0bfbf..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153058_3 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153058_4 b/models_UIRWF/UIRWF_20230707_153058_4
deleted file mode 100644
index ec6677a58ed3567df234970bacad6f882d1f3cc6..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153058_4 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153058_5 b/models_UIRWF/UIRWF_20230707_153058_5
deleted file mode 100644
index 91d667a00ee2ec2c3d8cf64792b0ebef31180e3b..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153058_5 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153240_0 b/models_UIRWF/UIRWF_20230707_153240_0
deleted file mode 100644
index 599e5ee8347aeb2d3a3703a357d1814300365495..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153240_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153240_1 b/models_UIRWF/UIRWF_20230707_153240_1
deleted file mode 100644
index 2947abbba7cbf24beda665090cf744c06af1e083..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153240_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153339_0 b/models_UIRWF/UIRWF_20230707_153339_0
deleted file mode 100644
index 487a45ceb3b11c8968fe079a43c34b4cfa5f2f7c..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153339_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153339_1 b/models_UIRWF/UIRWF_20230707_153339_1
deleted file mode 100644
index db8f76314081cfc268481b887a1893def9e6ea6e..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153339_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153339_10 b/models_UIRWF/UIRWF_20230707_153339_10
deleted file mode 100644
index 46a32daba8621a7098878436a0aef38da7913ef3..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153339_10 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153339_11 b/models_UIRWF/UIRWF_20230707_153339_11
deleted file mode 100644
index 8daba42651dd1a30934800d99ec711f9ff86e2c9..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153339_11 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153339_12 b/models_UIRWF/UIRWF_20230707_153339_12
deleted file mode 100644
index 261363e2c93f74410dd71610b5b74f389e09c7c3..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153339_12 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153339_13 b/models_UIRWF/UIRWF_20230707_153339_13
deleted file mode 100644
index b9aac6cc3744c6a7d83ebc812f30e1cf9b3791b1..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153339_13 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153339_15 b/models_UIRWF/UIRWF_20230707_153339_15
deleted file mode 100644
index 9b642b57cefc542f6f6d6ef4219848325e0e0578..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153339_15 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153339_17 b/models_UIRWF/UIRWF_20230707_153339_17
deleted file mode 100644
index f3f280a503419552ad744292c4615f36a7508ac2..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153339_17 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153339_18 b/models_UIRWF/UIRWF_20230707_153339_18
deleted file mode 100644
index 661c27a16a349d4a335fe9a1d07a5539970a61f5..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153339_18 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153339_19 b/models_UIRWF/UIRWF_20230707_153339_19
deleted file mode 100644
index 5e9a3465af8bf644c08f56bf2bf54948174ade06..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153339_19 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153339_2 b/models_UIRWF/UIRWF_20230707_153339_2
deleted file mode 100644
index 0077d262dd827df04c7c428f969bccb71713bb98..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153339_2 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153339_3 b/models_UIRWF/UIRWF_20230707_153339_3
deleted file mode 100644
index e0de7cc810a2764c7ae66521d711468689be3816..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153339_3 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153339_5 b/models_UIRWF/UIRWF_20230707_153339_5
deleted file mode 100644
index 115518426518480575a24c6eb73102bffe4508dc..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153339_5 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153339_7 b/models_UIRWF/UIRWF_20230707_153339_7
deleted file mode 100644
index 234d80f68c1913efa0ba39bad38fe1f55e955758..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153339_7 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153339_9 b/models_UIRWF/UIRWF_20230707_153339_9
deleted file mode 100644
index 64f6d5e82325a60fceff3cfca8b449d435151911..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153339_9 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153902_0 b/models_UIRWF/UIRWF_20230707_153902_0
deleted file mode 100644
index 961482a57bb3c7094d4599732f9bc676dc4a15aa..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153902_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153902_1 b/models_UIRWF/UIRWF_20230707_153902_1
deleted file mode 100644
index 3f18ce3c2f180922277e08cc9d583502bcd52d53..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153902_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153902_11 b/models_UIRWF/UIRWF_20230707_153902_11
deleted file mode 100644
index a6480481c5a88024e45acf889aa2b1f6968f8008..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153902_11 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153902_12 b/models_UIRWF/UIRWF_20230707_153902_12
deleted file mode 100644
index 3b93bf4eabed4bbf5906eca289df88c1f1a7d498..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153902_12 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153902_13 b/models_UIRWF/UIRWF_20230707_153902_13
deleted file mode 100644
index 6892bd1e268aa62e6e9e4f7313d6808cb1ec7cd4..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153902_13 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153902_14 b/models_UIRWF/UIRWF_20230707_153902_14
deleted file mode 100644
index cdeeb3019e72194bf5e09b6006d2ae330fca0f1c..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153902_14 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153902_15 b/models_UIRWF/UIRWF_20230707_153902_15
deleted file mode 100644
index b0d63b0b61049cd4cb7674f8b02af919695f38b2..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153902_15 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153902_19 b/models_UIRWF/UIRWF_20230707_153902_19
deleted file mode 100644
index 172f5511307211c576f719ea29b4515f0b8dc9f3..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153902_19 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153902_2 b/models_UIRWF/UIRWF_20230707_153902_2
deleted file mode 100644
index 1d9895acfff72f9730d5844afeab1f4414b107a6..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153902_2 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153902_3 b/models_UIRWF/UIRWF_20230707_153902_3
deleted file mode 100644
index 4d3a92fcd729c5bd5608946de114d0a5fde8bb2a..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153902_3 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153902_4 b/models_UIRWF/UIRWF_20230707_153902_4
deleted file mode 100644
index 0e3b71997e8dfef199ef734a7dae96a81ecacce3..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153902_4 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153902_5 b/models_UIRWF/UIRWF_20230707_153902_5
deleted file mode 100644
index 2dd80f362b7cffe5149207d229ecf759e6027d4e..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153902_5 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153902_6 b/models_UIRWF/UIRWF_20230707_153902_6
deleted file mode 100644
index 2af2ca10781b1ddf42c0e74cbc55371e0bed3547..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153902_6 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153902_8 b/models_UIRWF/UIRWF_20230707_153902_8
deleted file mode 100644
index 05bdf82b9c5544a383b121b7aba9169993d2880e..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153902_8 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_153902_9 b/models_UIRWF/UIRWF_20230707_153902_9
deleted file mode 100644
index b6dcea61436a8548b5fdee49d37bc723a8323851..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_153902_9 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_154240_0 b/models_UIRWF/UIRWF_20230707_154240_0
deleted file mode 100644
index 703afdadad2572035b726824d280c6c503c5c6fa..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_154240_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_154240_1 b/models_UIRWF/UIRWF_20230707_154240_1
deleted file mode 100644
index 8d3f6d6d4c327dd8cb4be1abd264de144d28437c..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_154240_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_154240_10 b/models_UIRWF/UIRWF_20230707_154240_10
deleted file mode 100644
index 4497789e3832f984af9a85814377753949a07610..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_154240_10 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_154240_11 b/models_UIRWF/UIRWF_20230707_154240_11
deleted file mode 100644
index 10eb2a0c12fe7d545426562e9f46231b28dd27c7..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_154240_11 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_154240_12 b/models_UIRWF/UIRWF_20230707_154240_12
deleted file mode 100644
index 602286ca91ec97314103ff243fbd83bca74fc6bc..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_154240_12 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_154240_14 b/models_UIRWF/UIRWF_20230707_154240_14
deleted file mode 100644
index 6760386257419e3caec58b31aa86958cc599c64b..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_154240_14 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_154240_15 b/models_UIRWF/UIRWF_20230707_154240_15
deleted file mode 100644
index 33264a0874df5a3e5fbc37b8b579b43a5f957ea6..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_154240_15 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_154240_16 b/models_UIRWF/UIRWF_20230707_154240_16
deleted file mode 100644
index f5aec77ee015e04dfb0075669ac62a13649ba37d..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_154240_16 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_154240_17 b/models_UIRWF/UIRWF_20230707_154240_17
deleted file mode 100644
index 45552378e1292841665fb55e181c6bd58ef6fa1b..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_154240_17 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_154240_18 b/models_UIRWF/UIRWF_20230707_154240_18
deleted file mode 100644
index c0d2911d2f9da7d48dcd38b9aa9927b2fbf66636..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_154240_18 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_154240_19 b/models_UIRWF/UIRWF_20230707_154240_19
deleted file mode 100644
index a6449ab2a60bd4df5f08081d018a02c05928e260..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_154240_19 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_154240_2 b/models_UIRWF/UIRWF_20230707_154240_2
deleted file mode 100644
index 790c1667afcc45151e6a6e9b2ce209808ecc4c6f..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_154240_2 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_154240_3 b/models_UIRWF/UIRWF_20230707_154240_3
deleted file mode 100644
index d00b5bf4ba1d3ce9dd4de2500d9f484d3b19f988..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_154240_3 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_154240_4 b/models_UIRWF/UIRWF_20230707_154240_4
deleted file mode 100644
index cbde09681135246c670b98c9362a8c7937a6f8db..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_154240_4 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_154240_5 b/models_UIRWF/UIRWF_20230707_154240_5
deleted file mode 100644
index 6cb8984cf84566802b74aa21e06a49447c7f5f72..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_154240_5 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_154240_6 b/models_UIRWF/UIRWF_20230707_154240_6
deleted file mode 100644
index a4f84a4bdb2fb5b68479c5c9a43e2491d6d9b573..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_154240_6 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_154240_9 b/models_UIRWF/UIRWF_20230707_154240_9
deleted file mode 100644
index 0af04a9eac2a45a2556080596d3464a333ba7064..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_154240_9 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_181419_0 b/models_UIRWF/UIRWF_20230707_181419_0
deleted file mode 100644
index a34629048d7da564658c53dd48b51a903fa57ab6..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_181419_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_181419_1 b/models_UIRWF/UIRWF_20230707_181419_1
deleted file mode 100644
index 7b6db604cb0bc67e4422b9ee03869dd600a9a7d2..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_181419_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_181419_2 b/models_UIRWF/UIRWF_20230707_181419_2
deleted file mode 100644
index 1e8eeacea68cbd836078515f20f6cdab012c7539..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_181419_2 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_182031_0 b/models_UIRWF/UIRWF_20230707_182031_0
deleted file mode 100644
index 5feeb96e7c71e7a82622d4d93fa2d3ccf9461633..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_182031_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_182226_0 b/models_UIRWF/UIRWF_20230707_182226_0
deleted file mode 100644
index 90f0efc82d78a8d9f44ccff689e831f6969c2c37..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_182226_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_182226_1 b/models_UIRWF/UIRWF_20230707_182226_1
deleted file mode 100644
index 46f3c85a43492271e6af16c5170901a0a29d146c..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_182226_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_182226_2 b/models_UIRWF/UIRWF_20230707_182226_2
deleted file mode 100644
index 6156ee3dbea4ed4ebae82d55055fdd884313d080..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_182226_2 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_182226_3 b/models_UIRWF/UIRWF_20230707_182226_3
deleted file mode 100644
index 6ba9a434a0a53787e0180a8a964bc3b421a3edd2..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_182226_3 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_182324_0 b/models_UIRWF/UIRWF_20230707_182324_0
deleted file mode 100644
index 2359dfaff3a51afe79568977228ae921f025f7b7..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_182324_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_182324_1 b/models_UIRWF/UIRWF_20230707_182324_1
deleted file mode 100644
index 22db58d2e9a02a77628eb25d0c93cb06572536f8..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_182324_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_182405_0 b/models_UIRWF/UIRWF_20230707_182405_0
deleted file mode 100644
index f6848465f0178628c6ca53828b0475525f370c46..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_182405_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_182405_1 b/models_UIRWF/UIRWF_20230707_182405_1
deleted file mode 100644
index adbddb42e581be0947d5f2a813eb87d03099d959..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_182405_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_182450_0 b/models_UIRWF/UIRWF_20230707_182450_0
deleted file mode 100644
index 68303df769ddb88ee8b7e1e0f5f92e14cdda7d87..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_182450_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_182450_1 b/models_UIRWF/UIRWF_20230707_182450_1
deleted file mode 100644
index a13a157acddbaed9fed2b34d617cd6f897ae7152..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_182450_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_182556_0 b/models_UIRWF/UIRWF_20230707_182556_0
deleted file mode 100644
index 5aaa818f1ed77402236da5bbf8e900dec34f385e..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_182556_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_182556_1 b/models_UIRWF/UIRWF_20230707_182556_1
deleted file mode 100644
index acec710984f8f337dab8f4d6c052feb5218ad39e..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_182556_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_184914_0 b/models_UIRWF/UIRWF_20230707_184914_0
deleted file mode 100644
index 9fab4440e296e86a7fcbc65a823acef8f144e642..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_184914_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_184914_1 b/models_UIRWF/UIRWF_20230707_184914_1
deleted file mode 100644
index ef5df7d29a44a56fe978ca879a33df0808558e8b..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_184914_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_184914_2 b/models_UIRWF/UIRWF_20230707_184914_2
deleted file mode 100644
index 567a24f3cf0e3bc44b48ee53560d9661c983c584..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_184914_2 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_184914_3 b/models_UIRWF/UIRWF_20230707_184914_3
deleted file mode 100644
index 66e07813641fe594d51ecfbe856bc422e03084de..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_184914_3 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_184914_4 b/models_UIRWF/UIRWF_20230707_184914_4
deleted file mode 100644
index ccc358a9cd6019f277b313fb1a7e93ae14253977..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_184914_4 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_184914_8 b/models_UIRWF/UIRWF_20230707_184914_8
deleted file mode 100644
index e7b029c547b07e3464d293f8dde960aaf35d642e..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_184914_8 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_185329_0 b/models_UIRWF/UIRWF_20230707_185329_0
deleted file mode 100644
index c458b02c5e59c4485953ef7181ecf185f96c5bfb..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_185329_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_185843_0 b/models_UIRWF/UIRWF_20230707_185843_0
deleted file mode 100644
index da2e288739ada8225d147ee349bf684a0365ac7a..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_185843_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_185843_1 b/models_UIRWF/UIRWF_20230707_185843_1
deleted file mode 100644
index 5b69a0da652f293ba97475ae2c3ffee32fc9d5b4..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_185843_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_190142_0 b/models_UIRWF/UIRWF_20230707_190142_0
deleted file mode 100644
index 50ccceb81ed772d91177fc422cae7a6879b319fb..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_190142_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_190142_1 b/models_UIRWF/UIRWF_20230707_190142_1
deleted file mode 100644
index 9ffe01906992007fe4ae864b1525ca65f7073503..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_190142_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_190327_0 b/models_UIRWF/UIRWF_20230707_190327_0
deleted file mode 100644
index 6ffe91750452042476b5753e54d4b85997467014..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_190327_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_190327_1 b/models_UIRWF/UIRWF_20230707_190327_1
deleted file mode 100644
index 189133538011ddd321520c86258e5acc6355d47a..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_190327_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_190641_0 b/models_UIRWF/UIRWF_20230707_190641_0
deleted file mode 100644
index b546b9d9a371b3704803d8d9c0421932fa9f4285..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_190641_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_190641_1 b/models_UIRWF/UIRWF_20230707_190641_1
deleted file mode 100644
index daaf8f59b27fd500cf2208ef9a836e87f5855704..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_190641_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_190641_13 b/models_UIRWF/UIRWF_20230707_190641_13
deleted file mode 100644
index a34b1b1d97a690d6c53921a15ff9ef7a95e76721..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_190641_13 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_191413_0 b/models_UIRWF/UIRWF_20230707_191413_0
deleted file mode 100644
index 19a6eca1147aefa69aadacc63a795b05a848e894..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_191413_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_191413_11 b/models_UIRWF/UIRWF_20230707_191413_11
deleted file mode 100644
index 4517d2f2b683ebc622b59089ef005da0b4e8a0e1..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_191413_11 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_191413_4 b/models_UIRWF/UIRWF_20230707_191413_4
deleted file mode 100644
index 6bfcc28a8c95af0820a4a251bbc411495269a490..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_191413_4 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_192005_0 b/models_UIRWF/UIRWF_20230707_192005_0
deleted file mode 100644
index b58e9c1eff8b8bd1b14cf4d2eded206ac42b9d66..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_192005_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_192005_1 b/models_UIRWF/UIRWF_20230707_192005_1
deleted file mode 100644
index bda1e6913d5c6d77e5abdb1bf73ed0882e9ffe86..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_192005_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_192005_14 b/models_UIRWF/UIRWF_20230707_192005_14
deleted file mode 100644
index 2255b1443e251cfa2696d10581515000f449c675..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_192005_14 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_192005_3 b/models_UIRWF/UIRWF_20230707_192005_3
deleted file mode 100644
index e94d8f9f376e7bd2f911fa9c5619033f43e8763e..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_192005_3 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_192005_5 b/models_UIRWF/UIRWF_20230707_192005_5
deleted file mode 100644
index 2d0ae996b99f12a94c91b62f054dabe57c5ba474..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_192005_5 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_192715_0 b/models_UIRWF/UIRWF_20230707_192715_0
deleted file mode 100644
index b2af698cd8be8f7a35d9d2f828e81f171e90fb76..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_192715_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_200757_0 b/models_UIRWF/UIRWF_20230707_200757_0
deleted file mode 100644
index 3d991fb1613bd216205c6991a199ee12fdd527f1..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_200757_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_200839_0 b/models_UIRWF/UIRWF_20230707_200839_0
deleted file mode 100644
index f48c9a2e298bef354b6983ae932f881c03d7bfba..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_200839_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_200839_1 b/models_UIRWF/UIRWF_20230707_200839_1
deleted file mode 100644
index 5962b9b9badbe9b8d2c04c364b08b86c1abe4771..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_200839_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_200839_7 b/models_UIRWF/UIRWF_20230707_200839_7
deleted file mode 100644
index 485f0bba334f9407952908b4173e37636e91bdef..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_200839_7 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_201635_0 b/models_UIRWF/UIRWF_20230707_201635_0
deleted file mode 100644
index 014267f3d6bd283e775d7eb890275193dabb1ad6..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_201635_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_201635_2 b/models_UIRWF/UIRWF_20230707_201635_2
deleted file mode 100644
index c175ac87491990eb9e41ced26f3a3aabc5d90590..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_201635_2 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_201841_0 b/models_UIRWF/UIRWF_20230707_201841_0
deleted file mode 100644
index 0528b76957fb235fd267a257cbf2bf431f2a49d3..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_201841_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_201841_1 b/models_UIRWF/UIRWF_20230707_201841_1
deleted file mode 100644
index e970611fa2ecb3f53de623b94d9a5a5acf4eb1e7..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_201841_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_201841_2 b/models_UIRWF/UIRWF_20230707_201841_2
deleted file mode 100644
index 9c33cde906f0f6786d166f600b632f8a625cd87f..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_201841_2 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_201841_3 b/models_UIRWF/UIRWF_20230707_201841_3
deleted file mode 100644
index 0bfc2dbef8fe3e68ec525174eded98159d2e3b0e..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_201841_3 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_201841_6 b/models_UIRWF/UIRWF_20230707_201841_6
deleted file mode 100644
index 913e8861b087f9d278fbb5ef2ebc380ed389899b..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_201841_6 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_201841_7 b/models_UIRWF/UIRWF_20230707_201841_7
deleted file mode 100644
index ef42f92283b51570d094933679398f4e0e4da63e..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_201841_7 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_201841_8 b/models_UIRWF/UIRWF_20230707_201841_8
deleted file mode 100644
index 02b9612f8b58e41a252fa9e6961944c30746b421..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_201841_8 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_201841_9 b/models_UIRWF/UIRWF_20230707_201841_9
deleted file mode 100644
index 155fbca8a6bcb190941046c8b411e8cce40553ee..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_201841_9 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_202144_0 b/models_UIRWF/UIRWF_20230707_202144_0
deleted file mode 100644
index 5f9f952e98d730f51c7c959ab332ae4dc4da4641..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_202144_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_202144_1 b/models_UIRWF/UIRWF_20230707_202144_1
deleted file mode 100644
index 9077c950598b823854ea005676d2685a500190d3..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_202144_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_202253_0 b/models_UIRWF/UIRWF_20230707_202253_0
deleted file mode 100644
index 5f63afb8dfa8c9ab35e8021d7ad97795a3514758..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_202253_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_202253_1 b/models_UIRWF/UIRWF_20230707_202253_1
deleted file mode 100644
index adff613f16066797d5090b5865dc6f333d7212a8..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_202253_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_202510_0 b/models_UIRWF/UIRWF_20230707_202510_0
deleted file mode 100644
index 58b36827d0da1573c30b9908fdcc60de686aa9b5..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_202510_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_202510_1 b/models_UIRWF/UIRWF_20230707_202510_1
deleted file mode 100644
index 3e327098b54f8894c15df940e8f1f0e419cba496..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_202510_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_202624_0 b/models_UIRWF/UIRWF_20230707_202624_0
deleted file mode 100644
index ac3681a6cce6b8a01d384958a1406a76d6c18563..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_202624_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_202624_1 b/models_UIRWF/UIRWF_20230707_202624_1
deleted file mode 100644
index 8e3f52d493d9522e3adfa2dc5e1d4911f0297f9f..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_202624_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_203350_0 b/models_UIRWF/UIRWF_20230707_203350_0
deleted file mode 100644
index cdf73a8f54cafb6951b7394bfe1aa3dd8446629d..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_203350_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_203350_1 b/models_UIRWF/UIRWF_20230707_203350_1
deleted file mode 100644
index 81f4cc370d1e4c58128113aac6c59cd9645590d4..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_203350_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_203707_0 b/models_UIRWF/UIRWF_20230707_203707_0
deleted file mode 100644
index c9adc03e4ab3605092a9d99ef4a045e705d30ed2..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_203707_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_203707_1 b/models_UIRWF/UIRWF_20230707_203707_1
deleted file mode 100644
index c50416651a6ddb536fa0bec15ff402e635bc0d30..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_203707_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_203707_11 b/models_UIRWF/UIRWF_20230707_203707_11
deleted file mode 100644
index 0184246d7952fc09ae8fd4f1ad6f99bf94e00d12..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_203707_11 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_203707_13 b/models_UIRWF/UIRWF_20230707_203707_13
deleted file mode 100644
index d210fd4a74b8e12113f6b56dbc56c5ce1f7db868..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_203707_13 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_203707_14 b/models_UIRWF/UIRWF_20230707_203707_14
deleted file mode 100644
index 9e5c3904675e4009222a9c940d81a2cc988d41e3..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_203707_14 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_203707_2 b/models_UIRWF/UIRWF_20230707_203707_2
deleted file mode 100644
index 6c27986b816d04d5af568ed2d4aa3549938e836a..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_203707_2 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_203707_3 b/models_UIRWF/UIRWF_20230707_203707_3
deleted file mode 100644
index e0a3f9f31a52ca4233fe113bfc14e0d0a6eb4fb4..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_203707_3 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_203707_4 b/models_UIRWF/UIRWF_20230707_203707_4
deleted file mode 100644
index 791e7c166b203f07b939b96ba22778dccae77ac2..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_203707_4 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_203707_5 b/models_UIRWF/UIRWF_20230707_203707_5
deleted file mode 100644
index c90fdf982cf87ad6b69d25ae60a82ff355e9ddca..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_203707_5 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_203707_7 b/models_UIRWF/UIRWF_20230707_203707_7
deleted file mode 100644
index 0b2a5da1e33ccda627e3b86e6d6bc2b346124432..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_203707_7 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_203707_8 b/models_UIRWF/UIRWF_20230707_203707_8
deleted file mode 100644
index 453de6959d9a106679a31b9b8eefffaa434c1940..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_203707_8 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_203707_9 b/models_UIRWF/UIRWF_20230707_203707_9
deleted file mode 100644
index aafb4584ff50d30e28348bbbe7325b1900bfe5f1..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_203707_9 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_205125_0 b/models_UIRWF/UIRWF_20230707_205125_0
deleted file mode 100644
index 74844ebf43bb1a7cdcb2ac83a468dc20b5c31fc2..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_205125_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_205125_12 b/models_UIRWF/UIRWF_20230707_205125_12
deleted file mode 100644
index 689eb8763740cca2ef5ae63f6f62083a7f21ed03..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_205125_12 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_205125_13 b/models_UIRWF/UIRWF_20230707_205125_13
deleted file mode 100644
index 8abab1dc319ae0eb167e8e7fd3b7d6b62a71ad06..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_205125_13 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_205125_14 b/models_UIRWF/UIRWF_20230707_205125_14
deleted file mode 100644
index d2a333a075da2d7af56515f7e17db5cb71e4f5bc..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_205125_14 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_205125_2 b/models_UIRWF/UIRWF_20230707_205125_2
deleted file mode 100644
index e12c7bdd8603c4204f58093663cf46cdaec4c9b1..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_205125_2 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_205125_3 b/models_UIRWF/UIRWF_20230707_205125_3
deleted file mode 100644
index a7068738a66e4a9bd66c9f12b366c9bf31319961..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_205125_3 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_205125_4 b/models_UIRWF/UIRWF_20230707_205125_4
deleted file mode 100644
index e6fa9a3e3e4654400fcb3a84a929e427b6de041f..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_205125_4 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_205125_5 b/models_UIRWF/UIRWF_20230707_205125_5
deleted file mode 100644
index a5142c6091922ea0d6f066d3eb670d95b09030ac..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_205125_5 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_205125_8 b/models_UIRWF/UIRWF_20230707_205125_8
deleted file mode 100644
index b1963d06b53ad42ffa7ff8eb04f8f44a0e8764e9..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_205125_8 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_205618_0 b/models_UIRWF/UIRWF_20230707_205618_0
deleted file mode 100644
index ad2542563dc07e88a54c12794c3874394136c6b0..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_205618_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_205618_1 b/models_UIRWF/UIRWF_20230707_205618_1
deleted file mode 100644
index 48c6995b5d57a1941c559a95527016b0637bbc30..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_205618_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_205618_2 b/models_UIRWF/UIRWF_20230707_205618_2
deleted file mode 100644
index 4c08ee3ea643b0cc011c49a5101434661ad3240b..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_205618_2 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_205618_4 b/models_UIRWF/UIRWF_20230707_205618_4
deleted file mode 100644
index d36c03c8fdc6ee21ab5147d6b3bfb6a4d09c49df..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_205618_4 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_210023_0 b/models_UIRWF/UIRWF_20230707_210023_0
deleted file mode 100644
index 4e45aac0933790173ea115c1906d42848b5afc7a..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_210023_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_210023_1 b/models_UIRWF/UIRWF_20230707_210023_1
deleted file mode 100644
index 606fe991e8a04a33f7c633c2f810ddde6f5ad3be..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_210023_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_210023_10 b/models_UIRWF/UIRWF_20230707_210023_10
deleted file mode 100644
index bb0abc0bac785fcd304e2be0fa16f575b6814436..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_210023_10 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_210023_11 b/models_UIRWF/UIRWF_20230707_210023_11
deleted file mode 100644
index e77aeb577cb4a35979f837be85a002fa9ddcf9cd..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_210023_11 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_210023_12 b/models_UIRWF/UIRWF_20230707_210023_12
deleted file mode 100644
index ae9f8305e218ec70dea57c516ebf9a5ce90c4c0c..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_210023_12 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_210023_13 b/models_UIRWF/UIRWF_20230707_210023_13
deleted file mode 100644
index 79106442d49ff52f247286f767e3b968b1c041f3..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_210023_13 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_210023_14 b/models_UIRWF/UIRWF_20230707_210023_14
deleted file mode 100644
index 8bed947a53a4a8104236791b82396e23c3dd5ddf..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_210023_14 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_210023_2 b/models_UIRWF/UIRWF_20230707_210023_2
deleted file mode 100644
index 73b4bae2d9eb62aacb9fa28686123fceaf8adbf9..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_210023_2 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_210023_3 b/models_UIRWF/UIRWF_20230707_210023_3
deleted file mode 100644
index 8ec1b3856d0e5cfa9884836e19650cd583b7f617..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_210023_3 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_210023_6 b/models_UIRWF/UIRWF_20230707_210023_6
deleted file mode 100644
index b15774a40a787a45a23ad974ea774e231cfa4f7b..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_210023_6 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_210023_7 b/models_UIRWF/UIRWF_20230707_210023_7
deleted file mode 100644
index 2500b7b75f8de1687be96e01b2ee10ab94fd3095..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_210023_7 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_210023_8 b/models_UIRWF/UIRWF_20230707_210023_8
deleted file mode 100644
index 968d6a8e882b290a6c11b982f850f3100e268a0b..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_210023_8 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_210023_9 b/models_UIRWF/UIRWF_20230707_210023_9
deleted file mode 100644
index e40d138e749f6450e0ece2bdc6fad6ba38574fe6..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_210023_9 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_211631_0 b/models_UIRWF/UIRWF_20230707_211631_0
deleted file mode 100644
index e5069f470af9b6336243cd45d89050c89628f019..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_211631_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_211631_1 b/models_UIRWF/UIRWF_20230707_211631_1
deleted file mode 100644
index 5827970f26b530ac851a7f7f35513fe175d171c1..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_211631_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230707_211631_12 b/models_UIRWF/UIRWF_20230707_211631_12
deleted file mode 100644
index d4fb72ce97f6979740ce280b269d1c7c54564fbf..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230707_211631_12 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_121732_0 b/models_UIRWF/UIRWF_20230708_121732_0
deleted file mode 100644
index c1fa56073041c632a47dba61c0d546d67ad83d23..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_121732_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_121732_1 b/models_UIRWF/UIRWF_20230708_121732_1
deleted file mode 100644
index bf64cd33a9862d2ca10639c832d92702325dfd4c..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_121732_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_123124_0 b/models_UIRWF/UIRWF_20230708_123124_0
deleted file mode 100644
index 2ed15a8106fc78cd40a539585ef155f598ae1951..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_123124_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_123124_1 b/models_UIRWF/UIRWF_20230708_123124_1
deleted file mode 100644
index cc1da6a2019ec563b0c289b0533672733a255d5d..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_123124_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_123717_0 b/models_UIRWF/UIRWF_20230708_123717_0
deleted file mode 100644
index d8b382567bc9ad96ae443d52705eea354c8cda88..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_123717_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_124423_0 b/models_UIRWF/UIRWF_20230708_124423_0
deleted file mode 100644
index adcbbf519921445ef6a904f4d054d5e10a25ee19..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_124423_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_124423_1 b/models_UIRWF/UIRWF_20230708_124423_1
deleted file mode 100644
index 7538635b1e98feb674628c26d55daecd5d5573af..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_124423_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_124747_0 b/models_UIRWF/UIRWF_20230708_124747_0
deleted file mode 100644
index 6db87b98e4d25d866d414f431f96377478d28c5f..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_124747_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_124747_1 b/models_UIRWF/UIRWF_20230708_124747_1
deleted file mode 100644
index bdb6a37e3539593132027dba52bae4d86d52b347..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_124747_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_124747_11 b/models_UIRWF/UIRWF_20230708_124747_11
deleted file mode 100644
index 17e06f94ce739d0f0a3e894e44656b864d7aa8fe..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_124747_11 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_124747_15 b/models_UIRWF/UIRWF_20230708_124747_15
deleted file mode 100644
index b29e67eea91b6a831b5d2e535a45025f01bfc847..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_124747_15 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_124747_16 b/models_UIRWF/UIRWF_20230708_124747_16
deleted file mode 100644
index 29fc9ac8a9a3ad9ae54887001e54f5aa541e6e3d..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_124747_16 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_124747_4 b/models_UIRWF/UIRWF_20230708_124747_4
deleted file mode 100644
index be38f19784f5c0a56a406806c96dd809a641dc2c..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_124747_4 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_124747_5 b/models_UIRWF/UIRWF_20230708_124747_5
deleted file mode 100644
index ea1aff3d2b2ddc71747819b7848e7295a1973125..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_124747_5 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_124747_6 b/models_UIRWF/UIRWF_20230708_124747_6
deleted file mode 100644
index ad41f8a235e0824cd543e5221b8d1341ccc4707a..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_124747_6 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_124747_7 b/models_UIRWF/UIRWF_20230708_124747_7
deleted file mode 100644
index aee28d432630cb4b8e9b956683a65bff339451d5..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_124747_7 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_124747_8 b/models_UIRWF/UIRWF_20230708_124747_8
deleted file mode 100644
index 5976e113c789b25178049b542f158f882f4b3523..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_124747_8 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_124747_9 b/models_UIRWF/UIRWF_20230708_124747_9
deleted file mode 100644
index 8eb9c3c89be3a675441e3c40cb54422cc5e972f1..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_124747_9 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_133932_0 b/models_UIRWF/UIRWF_20230708_133932_0
deleted file mode 100644
index c761e08cb99a922f0fb70dc862801b397f2ef934..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_133932_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_133932_1 b/models_UIRWF/UIRWF_20230708_133932_1
deleted file mode 100644
index a5f44d1913e4b5c6a9eb87521fc31a14316b5178..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_133932_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_133932_2 b/models_UIRWF/UIRWF_20230708_133932_2
deleted file mode 100644
index 4c5a1e7c1eeac0fdf4e4c162e763030a22f90dba..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_133932_2 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_133932_3 b/models_UIRWF/UIRWF_20230708_133932_3
deleted file mode 100644
index a496830a1ae5ceb5d8527473adf368e3188940f0..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_133932_3 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_133932_4 b/models_UIRWF/UIRWF_20230708_133932_4
deleted file mode 100644
index 883ae9a232f0d39de68e2a24f0d94aab877b4f9a..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_133932_4 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_134325_0 b/models_UIRWF/UIRWF_20230708_134325_0
deleted file mode 100644
index efee24201afe1897426684d6a35307a01b309379..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_134325_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_134325_1 b/models_UIRWF/UIRWF_20230708_134325_1
deleted file mode 100644
index c69536ab280c8a02b11ca19bad550775a6da2dc9..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_134325_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_134325_10 b/models_UIRWF/UIRWF_20230708_134325_10
deleted file mode 100644
index 00bb2c086ef73d5b653d45b33b02f392786eeedd..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_134325_10 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_134325_11 b/models_UIRWF/UIRWF_20230708_134325_11
deleted file mode 100644
index d329c1f97b00e43bbcbbc0e8352c828f6219ca81..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_134325_11 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_134325_13 b/models_UIRWF/UIRWF_20230708_134325_13
deleted file mode 100644
index 57db11a67f42fb34d99038b435b2c07b6bb5d79b..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_134325_13 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_134325_14 b/models_UIRWF/UIRWF_20230708_134325_14
deleted file mode 100644
index 9242f81a9c54261c6aae74e1d73abf20c7890173..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_134325_14 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_134325_15 b/models_UIRWF/UIRWF_20230708_134325_15
deleted file mode 100644
index 8808faa5944113dd8150f0f44360c704f0d3af72..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_134325_15 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_134325_17 b/models_UIRWF/UIRWF_20230708_134325_17
deleted file mode 100644
index 18ebcaebbf01585160e090e9246e7c2033549c08..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_134325_17 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_134325_18 b/models_UIRWF/UIRWF_20230708_134325_18
deleted file mode 100644
index f83bf44fa4636629ee9bb6bae89199132f65724c..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_134325_18 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_134325_19 b/models_UIRWF/UIRWF_20230708_134325_19
deleted file mode 100644
index 815440e466034a499e5b586e540c28c51a769017..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_134325_19 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_134325_2 b/models_UIRWF/UIRWF_20230708_134325_2
deleted file mode 100644
index 5dcd11de9530687194c856190d40f18a90fdb345..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_134325_2 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_134325_3 b/models_UIRWF/UIRWF_20230708_134325_3
deleted file mode 100644
index b6135253526cbb339e2674cfdafabd6d54d2ab20..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_134325_3 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_134325_4 b/models_UIRWF/UIRWF_20230708_134325_4
deleted file mode 100644
index 9329b2f532b5537e4e1ff5507b4419bc4f711b20..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_134325_4 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_134325_7 b/models_UIRWF/UIRWF_20230708_134325_7
deleted file mode 100644
index 10052e79a3f4e52938e51564a4948ea51a7586d9..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_134325_7 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_134325_8 b/models_UIRWF/UIRWF_20230708_134325_8
deleted file mode 100644
index afff84ab2331a446c66f561b4b8fd07ebfd5de74..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_134325_8 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_134325_9 b/models_UIRWF/UIRWF_20230708_134325_9
deleted file mode 100644
index b3e62655db9b46939040575f3705df20f235a219..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_134325_9 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_0 b/models_UIRWF/UIRWF_20230708_141211_0
deleted file mode 100644
index c75f7678085ee64a4c74797b53327b7981f48391..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_1 b/models_UIRWF/UIRWF_20230708_141211_1
deleted file mode 100644
index 6596ba38b65552b7262e9fbd12be1c7794f8663a..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_11 b/models_UIRWF/UIRWF_20230708_141211_11
deleted file mode 100644
index a3493b38bdfe83de96f0fc98953322b8938b87fd..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_11 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_12 b/models_UIRWF/UIRWF_20230708_141211_12
deleted file mode 100644
index 49bad40d6a32da00fdee6c0c3223e07d88216abb..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_12 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_13 b/models_UIRWF/UIRWF_20230708_141211_13
deleted file mode 100644
index 8a79b50250bb753bf274e8570ab1d81d21de8753..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_13 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_14 b/models_UIRWF/UIRWF_20230708_141211_14
deleted file mode 100644
index b02c5ee9d5135c16119c541c4594383d1846e33e..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_14 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_17 b/models_UIRWF/UIRWF_20230708_141211_17
deleted file mode 100644
index 2f2f980935c2bca53c55c0ee984c302ac18dcfa9..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_17 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_18 b/models_UIRWF/UIRWF_20230708_141211_18
deleted file mode 100644
index a47cbce8ee9e8d2ae51731fe0daa0a5a899d44bd..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_18 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_19 b/models_UIRWF/UIRWF_20230708_141211_19
deleted file mode 100644
index e92da5443b32a094e14ba39f72018873c6a376b3..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_19 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_2 b/models_UIRWF/UIRWF_20230708_141211_2
deleted file mode 100644
index d5b5199887004da48315ce7b52d5085202da578f..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_2 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_21 b/models_UIRWF/UIRWF_20230708_141211_21
deleted file mode 100644
index 02ecdb3730f9fcc9f6a2f6d79761a76136f5a3e1..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_21 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_22 b/models_UIRWF/UIRWF_20230708_141211_22
deleted file mode 100644
index 5515f9bd0a2d9cbcde799bfbde8c48a140c3f04c..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_22 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_24 b/models_UIRWF/UIRWF_20230708_141211_24
deleted file mode 100644
index 4845a728a422db8e8e954bfaffc14dfbd23e0139..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_24 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_25 b/models_UIRWF/UIRWF_20230708_141211_25
deleted file mode 100644
index c53755e77b5442d7ae82b9b851f11848bdf08812..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_25 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_26 b/models_UIRWF/UIRWF_20230708_141211_26
deleted file mode 100644
index 387fcf7c7b17280ffceceda597cd835449623b13..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_26 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_27 b/models_UIRWF/UIRWF_20230708_141211_27
deleted file mode 100644
index 8a4c1c06a699d590bd3d983ebbbc2df2383d5b15..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_27 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_28 b/models_UIRWF/UIRWF_20230708_141211_28
deleted file mode 100644
index 14ceaeb039e05fbcaf9dc68455bed8ced8ff82cc..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_28 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_3 b/models_UIRWF/UIRWF_20230708_141211_3
deleted file mode 100644
index da51f3f036f8421922a5025897af1bf8d1609280..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_3 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_30 b/models_UIRWF/UIRWF_20230708_141211_30
deleted file mode 100644
index 9b4c8f3e32157d1cd833d257de4e3a69fda9efd0..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_30 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_32 b/models_UIRWF/UIRWF_20230708_141211_32
deleted file mode 100644
index b1913ac7a9b80b881a7f9320287afb7154e91c40..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_32 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_34 b/models_UIRWF/UIRWF_20230708_141211_34
deleted file mode 100644
index 6438b94f0447b416127eb5bafee931fa3845c03f..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_34 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_35 b/models_UIRWF/UIRWF_20230708_141211_35
deleted file mode 100644
index b8fec9de625a78d563ff0b9f6ef79e38e518a6f5..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_35 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_36 b/models_UIRWF/UIRWF_20230708_141211_36
deleted file mode 100644
index e812fa241daf9a08089888fa81c184ba6b35ffa6..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_36 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_4 b/models_UIRWF/UIRWF_20230708_141211_4
deleted file mode 100644
index 9e417d43a3a847359b026029ef50bbfa950efbce..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_4 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_41 b/models_UIRWF/UIRWF_20230708_141211_41
deleted file mode 100644
index c5657132153086dbcca8bb64fbee44d4ffbdaac4..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_41 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_42 b/models_UIRWF/UIRWF_20230708_141211_42
deleted file mode 100644
index fdcd13d079a0b9baa7fac55115b16725a8a5fa1c..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_42 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_44 b/models_UIRWF/UIRWF_20230708_141211_44
deleted file mode 100644
index de8bcf11bbd9a332e1a4e51c5677ea16fefe19b4..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_44 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_45 b/models_UIRWF/UIRWF_20230708_141211_45
deleted file mode 100644
index b75b8a15f2dff710fca2f97447d4feb9010e30d9..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_45 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_47 b/models_UIRWF/UIRWF_20230708_141211_47
deleted file mode 100644
index 0f59807f72aa868f060e7b73837018a1ccda8277..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_47 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_48 b/models_UIRWF/UIRWF_20230708_141211_48
deleted file mode 100644
index 3a0db46cfa1d1dec92a011c16c2c316184a00ada..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_48 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_49 b/models_UIRWF/UIRWF_20230708_141211_49
deleted file mode 100644
index d4d364a12a620a9e66844f63617efa443d46540a..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_49 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_5 b/models_UIRWF/UIRWF_20230708_141211_5
deleted file mode 100644
index 5998c18b5a83f16757f5774cd9dfe1584b068e33..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_5 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_52 b/models_UIRWF/UIRWF_20230708_141211_52
deleted file mode 100644
index 8a20010037d5513de888fd3719fc0398cc54c4fe..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_52 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_53 b/models_UIRWF/UIRWF_20230708_141211_53
deleted file mode 100644
index 375715cacae0fd29e3dd4909e8cab741d2f67dab..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_53 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_54 b/models_UIRWF/UIRWF_20230708_141211_54
deleted file mode 100644
index 47f542e4aa0495aaa10b2a9189f181d8de7b784c..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_54 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_6 b/models_UIRWF/UIRWF_20230708_141211_6
deleted file mode 100644
index 7dddbaf6aaa623a8d2debb2ebc200afe0d7a7b92..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_6 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_7 b/models_UIRWF/UIRWF_20230708_141211_7
deleted file mode 100644
index ff22ed161dc0366c8322dd7167b90df4868a5965..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_7 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_141211_8 b/models_UIRWF/UIRWF_20230708_141211_8
deleted file mode 100644
index c3349dcc30d92c919231ec30c150de2b256bdfd2..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_141211_8 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_224216_0 b/models_UIRWF/UIRWF_20230708_224216_0
deleted file mode 100644
index 617ec6cc9938845627451346215ca09c1dd3cfa1..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_224216_0 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_224216_1 b/models_UIRWF/UIRWF_20230708_224216_1
deleted file mode 100644
index da4f973d5998834b26b93636f7765e09eb384054..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_224216_1 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_224216_10 b/models_UIRWF/UIRWF_20230708_224216_10
deleted file mode 100644
index 3b458af420c4098aa5c68759d8d13645dff792e5..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_224216_10 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_224216_11 b/models_UIRWF/UIRWF_20230708_224216_11
deleted file mode 100644
index 236e29fbc09871ba95d696ae14aef2cbd950675e..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_224216_11 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_224216_13 b/models_UIRWF/UIRWF_20230708_224216_13
deleted file mode 100644
index 7a087b67ad1f154b60b62c84587cabfed2152cfc..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_224216_13 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_224216_16 b/models_UIRWF/UIRWF_20230708_224216_16
deleted file mode 100644
index d416222c0faf37e3fc4983538483153b78765764..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_224216_16 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_224216_2 b/models_UIRWF/UIRWF_20230708_224216_2
deleted file mode 100644
index bb087b639ecd2b6fc6cad18a8e18f867b2a19832..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_224216_2 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_224216_20 b/models_UIRWF/UIRWF_20230708_224216_20
deleted file mode 100644
index bb5e9211a61f18be353d0d1c92b18aa84ce02e50..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_224216_20 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_224216_21 b/models_UIRWF/UIRWF_20230708_224216_21
deleted file mode 100644
index 642e5d910cff06029c27e0b82e551abb5cd31bb4..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_224216_21 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_224216_23 b/models_UIRWF/UIRWF_20230708_224216_23
deleted file mode 100644
index 3eb6eb60aac710c039724435db8d58264c6d8046..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_224216_23 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_224216_25 b/models_UIRWF/UIRWF_20230708_224216_25
deleted file mode 100644
index e914aaa774328f832126f88d1f1767ddda14b423..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_224216_25 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_224216_26 b/models_UIRWF/UIRWF_20230708_224216_26
deleted file mode 100644
index ee396802a856cd21f84fbb1e5eb4e520b1fd9ca6..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_224216_26 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_224216_29 b/models_UIRWF/UIRWF_20230708_224216_29
deleted file mode 100644
index 5daec707fc8eff866c3a8c131c8cde51025fe506..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_224216_29 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_224216_3 b/models_UIRWF/UIRWF_20230708_224216_3
deleted file mode 100644
index 96b4be7bfbae4574d9006640a63997a94cefe8da..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_224216_3 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_224216_32 b/models_UIRWF/UIRWF_20230708_224216_32
deleted file mode 100644
index ce3404840d87c3dfda808cedb7ea10fc2730228d..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_224216_32 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_224216_44 b/models_UIRWF/UIRWF_20230708_224216_44
deleted file mode 100644
index 80ef8484b9683fdf896ef91c6fdcce6e9356e771..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_224216_44 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_224216_45 b/models_UIRWF/UIRWF_20230708_224216_45
deleted file mode 100644
index 3954ad8b6eccf52c07fb54e1319bf9dd2fd4329a..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_224216_45 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_224216_5 b/models_UIRWF/UIRWF_20230708_224216_5
deleted file mode 100644
index e244e1fedd5dce469d307c1734cf6b28e8966b5e..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_224216_5 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_224216_51 b/models_UIRWF/UIRWF_20230708_224216_51
deleted file mode 100644
index 3558fc884c14fa97e669df144ec59eab42b96c3b..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_224216_51 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_224216_55 b/models_UIRWF/UIRWF_20230708_224216_55
deleted file mode 100644
index 1e024ccaf248a9918d38bc8ad2fc05bf571fb954..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_224216_55 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_224216_59 b/models_UIRWF/UIRWF_20230708_224216_59
deleted file mode 100644
index 06ba7705e157cabc67f0949db5c43cf807ed06f9..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_224216_59 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_224216_7 b/models_UIRWF/UIRWF_20230708_224216_7
deleted file mode 100644
index edb4628a3c0cf8873370d409741f68a37d03e0bb..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_224216_7 and /dev/null differ
diff --git a/models_UIRWF/UIRWF_20230708_224216_9 b/models_UIRWF/UIRWF_20230708_224216_9
deleted file mode 100644
index bc181c38022df73512c39f7cabcb1be6d29d4931..0000000000000000000000000000000000000000
Binary files a/models_UIRWF/UIRWF_20230708_224216_9 and /dev/null differ
diff --git a/models_URWF/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.005814875467485093, Learning_Process.pdf b/models_URWF/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.005814875467485093, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..7077dfe8e2eac8d28754e80392eb08a4be437c00
Binary files /dev/null and b/models_URWF/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.005814875467485093, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.005814875467485093, Learning_Process.tex b/models_URWF/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.005814875467485093, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..f068f6f5e031c36163f60a5ffcb8df01204e7f3b
--- /dev/null
+++ b/models_URWF/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.005814875467485093, Learning_Process.tex	
@@ -0,0 +1,304 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+minor ytick={2e-06,3e-06,4e-06,5e-06,6e-06,7e-06,8e-06,9e-06,2e-05,3e-05,4e-05,5e-05,6e-05,7e-05,8e-05,9e-05,0.0002,0.0003,0.0004,0.0005,0.0006,0.0007,0.0008,0.0009,0.002,0.003,0.004,0.005,0.006,0.007,0.008,0.009,0.02,0.03,0.04,0.05,0.06,0.07,0.08,0.09},
+minor yticklabels={
+  \(\displaystyle {2\times10^{-6}}\),
+  \(\displaystyle {3\times10^{-6}}\),
+  \(\displaystyle {4\times10^{-6}}\),
+  ,
+  \(\displaystyle {6\times10^{-6}}\),
+  ,
+  ,
+  ,
+  \(\displaystyle {2\times10^{-5}}\),
+  \(\displaystyle {3\times10^{-5}}\),
+  \(\displaystyle {4\times10^{-5}}\),
+  ,
+  \(\displaystyle {6\times10^{-5}}\),
+  ,
+  ,
+  ,
+  \(\displaystyle {2\times10^{-4}}\),
+  \(\displaystyle {3\times10^{-4}}\),
+  \(\displaystyle {4\times10^{-4}}\),
+  ,
+  \(\displaystyle {6\times10^{-4}}\),
+  ,
+  ,
+  ,
+  \(\displaystyle {2\times10^{-3}}\),
+  \(\displaystyle {3\times10^{-3}}\),
+  \(\displaystyle {4\times10^{-3}}\),
+  ,
+  \(\displaystyle {6\times10^{-3}}\),
+  ,
+  ,
+  ,
+  \(\displaystyle {2\times10^{-2}}\),
+  \(\displaystyle {3\times10^{-2}}\),
+  \(\displaystyle {4\times10^{-2}}\),
+  ,
+  \(\displaystyle {6\times10^{-2}}\),
+  ,
+  ,
+  
+},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.84739259168637e-05, ymax=0.000238034225783648,
+ymode=log,
+ytick style={color=black},
+ytick={1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000167337551829405
+1 6.08150439802557e-05
+2 5.94081175222527e-05
+3 5.96675927226897e-05
+4 5.86050482525025e-05
+5 5.89629453315865e-05
+6 5.90929885220248e-05
+7 5.86922615184449e-05
+8 5.73804973100778e-05
+9 5.9035504818894e-05
+10 6.15245662629604e-05
+11 5.95949095441028e-05
+12 5.95035962760448e-05
+13 5.65281916351523e-05
+14 5.94874545640778e-05
+15 5.63652574783191e-05
+16 6.14996606600471e-05
+17 5.67842289456166e-05
+18 6.44880492473021e-05
+19 6.05064051342197e-05
+20 5.89804076298606e-05
+21 6.1270700825844e-05
+22 5.93426339037251e-05
+23 6.04615815973375e-05
+24 5.97764847043436e-05
+25 6.06918474659324e-05
+26 6.22854786342941e-05
+27 5.88973052799702e-05
+28 6.21638901066035e-05
+29 5.95389683439862e-05
+30 5.97257603658363e-05
+31 6.35191172477789e-05
+32 5.98127662669867e-05
+33 5.79021798330359e-05
+34 6.15078752161935e-05
+35 6.58085409668274e-05
+36 5.94178527535405e-05
+37 5.72288008697797e-05
+38 6.01697720412631e-05
+39 6.06814210186712e-05
+40 6.23043451923877e-05
+41 5.89506416872609e-05
+42 5.86347159696743e-05
+43 6.29633068456315e-05
+44 6.06902285653632e-05
+45 5.92381620663218e-05
+46 5.94312477915082e-05
+47 6.90836604917422e-05
+48 5.85151683480944e-05
+49 5.86335154366679e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000219110588659532
+1 8.09638368082233e-05
+2 4.81429997307714e-05
+3 5.22000264027156e-05
+4 5.60991720703896e-05
+5 5.70198426430579e-05
+6 4.95187123306096e-05
+7 6.14853997831233e-05
+8 6.44242027192377e-05
+9 5.53765821678098e-05
+10 6.73554022796452e-05
+11 4.64730510429945e-05
+12 6.89034859533422e-05
+13 0.000103807811683509
+14 4.88792502437718e-05
+15 7.54926295485348e-05
+16 5.02514485560823e-05
+17 7.34383793314919e-05
+18 4.90928905492183e-05
+19 5.24313436471857e-05
+20 5.17313383170404e-05
+21 5.81411768507678e-05
+22 5.19509085279424e-05
+23 4.45181576651521e-05
+24 5.40090040885843e-05
+25 6.08578448009212e-05
+26 5.21969413966872e-05
+27 5.31661607965361e-05
+28 4.17967530665919e-05
+29 5.23408998560626e-05
+30 4.62068237538915e-05
+31 6.30989816272631e-05
+32 6.32799274171703e-05
+33 7.71976701798849e-05
+34 5.18240449309815e-05
+35 4.49886028945912e-05
+36 5.4191750678001e-05
+37 6.69984365231358e-05
+38 4.86356620967854e-05
+39 5.66308626730461e-05
+40 5.66648777748924e-05
+41 5.36910047230776e-05
+42 6.37696575722657e-05
+43 5.65411646675784e-05
+44 6.93524343660101e-05
+45 4.98161716677714e-05
+46 6.00265921093524e-05
+47 6.19510174146853e-05
+48 5.71136479265988e-05
+49 6.04439082962926e-05
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000175148670678027
+1 0.000176752451807261
+2 0.000171568666701205
+3 0.000171501480508596
+4 0.000168827114976011
+5 0.000173628752236255
+6 0.00017380528151989
+7 0.000170792191056535
+8 0.000175360386492684
+9 0.000169435981661081
+10 0.000172402244061232
+11 0.000167821868672036
+12 0.00016785494517535
+13 0.000174877946847118
+14 0.000175930981640704
+15 0.000172787054907531
+16 0.000177483219886199
+17 0.000172141822986305
+18 0.000173221880686469
+19 0.00017225241754204
+20 0.000175301756826229
+21 0.000170744635397568
+22 0.000167944308486767
+23 0.00017197486886289
+24 0.000175424487679265
+25 0.000172910120454617
+26 0.000175769921042956
+27 0.000174187167431228
+28 0.00017180347640533
+29 0.000169564940733835
+30 0.000168511993251741
+31 0.000173054533661343
+32 0.000169868828379549
+33 0.000169077102327719
+34 0.000172239830135368
+35 0.000172707965248264
+36 0.00017212335660588
+37 0.000177888301550411
+38 0.000175765002495609
+39 0.000171859792317264
+40 0.000169589824508876
+41 0.000173495558556169
+42 0.000172922300407663
+43 0.000174675355083309
+44 0.000174927874468267
+45 0.000176041226950474
+46 0.000172546220710501
+47 0.000168072583619505
+48 0.000176068875589408
+49 0.000172560248756781
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000145990707096644
+1 0.000132722241687588
+2 0.000178282134584151
+3 0.000177341935341246
+4 0.000203292351216078
+5 0.000159857037942857
+6 0.000156210342538543
+7 0.000184132339200005
+8 0.000145284226164222
+9 0.000200596172362566
+10 0.000168445752933621
+11 0.000209646721486934
+12 0.000212468905374408
+13 0.000147280807141215
+14 0.000139750263770111
+15 0.000168173399288207
+16 0.00012505118502304
+17 0.000175561144715175
+18 0.000160851224791259
+19 0.000173110893229023
+20 0.000146264734212309
+21 0.000190401144209318
+22 0.000206192402401939
+23 0.000173789143445902
+24 0.000143660610774532
+25 0.000165203979122452
+26 0.000139112424221821
+27 0.000154945300891995
+28 0.000172982545336708
+29 0.000194096021004952
+30 0.00020590795611497
+31 0.000167441947269253
+32 0.000190988488611765
+33 0.00020448501163628
+34 0.000174227694515139
+35 0.00016684147703927
+36 0.000172416723216884
+37 0.000120789038192015
+38 0.000138727671583183
+39 0.000177387817529961
+40 0.000196735913050361
+41 0.00016122889064718
+42 0.000167517442605458
+43 0.000153071159729734
+44 0.00014725569053553
+45 0.00014332820137497
+46 0.000169655613717623
+47 0.000210495694773272
+48 0.000137506052851677
+49 0.000170069077285007
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.00678629124339754, Learning_Process.pdf b/models_URWF/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.00678629124339754, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..55baca0c5da9f9fbcb00aeea0d090f95b44d4fb3
Binary files /dev/null and b/models_URWF/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.00678629124339754, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.00678629124339754, Learning_Process.tex b/models_URWF/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.00678629124339754, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..9551cff3a2d6c6c1c116dbd1f0dd5a80c98bd8c0
--- /dev/null
+++ b/models_URWF/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.00678629124339754, Learning_Process.tex	
@@ -0,0 +1,304 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.5,0.5)},
+  anchor=center,
+  draw=lightgray204
+},
+log basis y={10},
+minor ytick={2e-06,3e-06,4e-06,5e-06,6e-06,7e-06,8e-06,9e-06,2e-05,3e-05,4e-05,5e-05,6e-05,7e-05,8e-05,9e-05,0.0002,0.0003,0.0004,0.0005,0.0006,0.0007,0.0008,0.0009,0.002,0.003,0.004,0.005,0.006,0.007,0.008,0.009,0.02,0.03,0.04,0.05,0.06,0.07,0.08,0.09},
+minor yticklabels={
+  \(\displaystyle {2\times10^{-6}}\),
+  \(\displaystyle {3\times10^{-6}}\),
+  \(\displaystyle {4\times10^{-6}}\),
+  ,
+  \(\displaystyle {6\times10^{-6}}\),
+  ,
+  ,
+  ,
+  \(\displaystyle {2\times10^{-5}}\),
+  \(\displaystyle {3\times10^{-5}}\),
+  \(\displaystyle {4\times10^{-5}}\),
+  ,
+  \(\displaystyle {6\times10^{-5}}\),
+  ,
+  ,
+  ,
+  \(\displaystyle {2\times10^{-4}}\),
+  \(\displaystyle {3\times10^{-4}}\),
+  \(\displaystyle {4\times10^{-4}}\),
+  ,
+  \(\displaystyle {6\times10^{-4}}\),
+  ,
+  ,
+  ,
+  \(\displaystyle {2\times10^{-3}}\),
+  \(\displaystyle {3\times10^{-3}}\),
+  \(\displaystyle {4\times10^{-3}}\),
+  ,
+  \(\displaystyle {6\times10^{-3}}\),
+  ,
+  ,
+  ,
+  \(\displaystyle {2\times10^{-2}}\),
+  \(\displaystyle {3\times10^{-2}}\),
+  \(\displaystyle {4\times10^{-2}}\),
+  ,
+  \(\displaystyle {6\times10^{-2}}\),
+  ,
+  ,
+  
+},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.23455190128818e-05, ymax=0.000222236066397644,
+ymode=log,
+ytick style={color=black},
+ytick={1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000146183563629165
+1 4.96544744237326e-05
+2 4.74777079944033e-05
+3 4.82030955026858e-05
+4 4.86481440020725e-05
+5 4.87874931422994e-05
+6 4.96399552503135e-05
+7 4.99091438541654e-05
+8 4.7685818572063e-05
+9 5.00608184665907e-05
+10 5.07675140397623e-05
+11 4.87302168039605e-05
+12 4.74273256259039e-05
+13 5.36934021511115e-05
+14 4.74373082397506e-05
+15 4.84354713989887e-05
+16 4.86697499582078e-05
+17 5.02541843161453e-05
+18 4.72563006042037e-05
+19 4.91875871375669e-05
+20 5.10986283188686e-05
+21 4.86476237711031e-05
+22 4.85481505165808e-05
+23 4.83907570014708e-05
+24 5.0270766223548e-05
+25 4.98025983688422e-05
+26 5.55436308786739e-05
+27 4.94197738589719e-05
+28 5.27621996297967e-05
+29 5.01464201079216e-05
+30 5.04358795296866e-05
+31 4.97519577038474e-05
+32 4.98633235110901e-05
+33 4.890972195426e-05
+34 4.92463259433862e-05
+35 4.89319063490257e-05
+36 4.59155089629348e-05
+37 5.04154668306001e-05
+38 4.87819888803642e-05
+39 4.65616285509896e-05
+40 4.89351004944183e-05
+41 5.33146885572933e-05
+42 4.85036725876853e-05
+43 4.80255657748785e-05
+44 4.93797233502846e-05
+45 5.26034382346552e-05
+46 4.91993778268807e-05
+47 5.06795659021009e-05
+48 4.93166116939392e-05
+49 4.77911235066131e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000135479611344635
+1 4.77811663586181e-05
+2 6.44939282210544e-05
+3 4.71965722681489e-05
+4 4.61581003037281e-05
+5 5.05307398270816e-05
+6 4.89835983898956e-05
+7 4.79006666864734e-05
+8 4.86761564388871e-05
+9 4.38208153354935e-05
+10 6.68083448545076e-05
+11 5.25660470884759e-05
+12 5.06992473674472e-05
+13 5.0160462706117e-05
+14 5.09083984070458e-05
+15 5.33744278072845e-05
+16 5.64982365176547e-05
+17 3.5625937016448e-05
+18 5.32323610968888e-05
+19 3.73339571524411e-05
+20 5.7313318393426e-05
+21 4.75560409540776e-05
+22 4.65051816718187e-05
+23 6.19266866124235e-05
+24 6.00534804107156e-05
+25 4.62417920061853e-05
+26 4.33325112680905e-05
+27 4.114117109566e-05
+28 5.51914235984441e-05
+29 4.2577270505717e-05
+30 4.36036716564558e-05
+31 4.02656551159453e-05
+32 4.52807107649278e-05
+33 4.60058618045878e-05
+34 4.04736529162619e-05
+35 4.0635477489559e-05
+36 6.69956643832847e-05
+37 4.69680126116145e-05
+38 4.13220150221605e-05
+39 7.20919560990296e-05
+40 4.10319007642101e-05
+41 5.21789297636133e-05
+42 4.28021230618469e-05
+43 4.5072054490447e-05
+44 4.56972047686577e-05
+45 4.28922248829622e-05
+46 4.1439740016358e-05
+47 3.53374962287489e-05
+48 3.53069008269813e-05
+49 4.90411439386662e-05
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000143897996167652
+1 0.000144362842547707
+2 0.00014577187539544
+3 0.000140901538543403
+4 0.000146318940096535
+5 0.000146698919706978
+6 0.000146714533912018
+7 0.000140819363878109
+8 0.000145970043377019
+9 0.000145177196827717
+10 0.000143717785249464
+11 0.000143171389936469
+12 0.000148920298670419
+13 0.000147761718835682
+14 0.000144791920320131
+15 0.000140972071676515
+16 0.000143288023537025
+17 0.000145115060149692
+18 0.000145961705129594
+19 0.000145326543133706
+20 0.000145946047268808
+21 0.000146548365592025
+22 0.000144227509736083
+23 0.000144263220136054
+24 0.000146275982842781
+25 0.000142182499985211
+26 0.000146987367770635
+27 0.000141799682751298
+28 0.000141767537570558
+29 0.000140944888698868
+30 0.000143126657349057
+31 0.000144331133924425
+32 0.0001420215703547
+33 0.000145555080962367
+34 0.000143362791277468
+35 0.000145139056257904
+36 0.000147626051330008
+37 0.000141376222018152
+38 0.000140720629133284
+39 0.000138284667627886
+40 0.000145022931974381
+41 0.000142605640576221
+42 0.000144791672937572
+43 0.000152556385728531
+44 0.000147183600347489
+45 0.00014292863488663
+46 0.000142638105899096
+47 0.000144661418744363
+48 0.000140824675327167
+49 0.000141854645335115
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000169643361005001
+1 0.000148201244883239
+2 0.00013974925968796
+3 0.000180404051207006
+4 0.000127315521240234
+5 0.000126819315482862
+6 0.000125421211123466
+7 0.000174373417394236
+8 0.000132758505060337
+9 0.000140571151860058
+10 0.000150432737427764
+11 0.000162698255735449
+12 0.000109542212157976
+13 0.000117712188512087
+14 0.000141633339808322
+15 0.000169958817423321
+16 0.00015587494999636
+17 0.000138722098199651
+18 0.000133242909214459
+19 0.000137187700602226
+20 0.000129428211948834
+21 0.000125785809359513
+22 0.000146927937748842
+23 0.000146661215694621
+24 0.000128542524180375
+25 0.000164948578458279
+26 0.000129011066746898
+27 0.000169433289556764
+28 0.000167255406267941
+29 0.000176478453795426
+30 0.000160743875312619
+31 0.000147622413351201
+32 0.000164295110153034
+33 0.000137007955345325
+34 0.000152966749737971
+35 0.000137219889438711
+36 0.000120001706818584
+37 0.000177867856109515
+38 0.000181029114173725
+39 0.000203595918719657
+40 0.000136589034809731
+41 0.000167816513567232
+42 0.000139816358569078
+43 0.000129271051264368
+44 0.000118804702651687
+45 0.000165666380780749
+46 0.000160485695232637
+47 0.000147560058394447
+48 0.000177864378201775
+49 0.000167019068612717
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.007071586154765072, Learning_Process.pdf b/models_URWF/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.007071586154765072, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..ef169323d9bd26a1367d921d3780b1968ca9f925
Binary files /dev/null and b/models_URWF/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.007071586154765072, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.007071586154765072, Learning_Process.tex b/models_URWF/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.007071586154765072, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..edeb5739b203ea49d8522148e3b06a623b5e3784
--- /dev/null
+++ b/models_URWF/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.007071586154765072, Learning_Process.tex	
@@ -0,0 +1,261 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.03,0.97)},
+  anchor=north west,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.12941427659493e-05, ymax=0.000853101991686555,
+ymode=log,
+ytick style={color=black},
+ytick={1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000156873546075076
+1 5.59289401280694e-05
+2 5.45141410839278e-05
+3 5.58079445909243e-05
+4 5.51292578165885e-05
+5 5.42188245162833e-05
+6 5.5275817430811e-05
+7 5.55244660063181e-05
+8 5.9930098359473e-05
+9 5.61524502700195e-05
+10 5.63453795621172e-05
+11 5.53293175471481e-05
+12 5.62402747164015e-05
+13 5.8116656873608e-05
+14 5.51396478840616e-05
+15 6.26914625172503e-05
+16 5.54925463802647e-05
+17 5.61666893190704e-05
+18 5.79381339775864e-05
+19 5.48033822269645e-05
+20 5.53416321054101e-05
+21 5.37925843673293e-05
+22 5.26134863321204e-05
+23 5.58569627173711e-05
+24 5.56165214220528e-05
+25 5.45660986972507e-05
+26 5.60850239708088e-05
+27 5.47878771612886e-05
+28 5.63033572689164e-05
+29 5.83799774176441e-05
+30 5.50925324205309e-05
+31 5.73359502595849e-05
+32 5.67487877560779e-05
+33 6.02972177148331e-05
+34 5.51695156900678e-05
+35 6.95885610184632e-05
+36 5.65435075259302e-05
+37 5.95399615122005e-05
+38 5.61541055503767e-05
+39 5.88687580602709e-05
+40 5.34963073732797e-05
+41 5.42428351764102e-05
+42 5.71287782804575e-05
+43 5.68783689232077e-05
+44 5.30330471519846e-05
+45 5.24965544173028e-05
+46 5.55868791707326e-05
+47 5.69664407521486e-05
+48 5.91631796851289e-05
+49 5.68912982998881e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.00014194383402355
+1 4.70523154945113e-05
+2 6.11309878877364e-05
+3 5.27284355484881e-05
+4 5.06315336679108e-05
+5 5.89740920986515e-05
+6 5.14522507728543e-05
+7 4.70134946226608e-05
+8 6.5516542235855e-05
+9 4.87445322505664e-05
+10 4.75223350804299e-05
+11 4.87304132548161e-05
+12 5.80855303269345e-05
+13 5.668949597748e-05
+14 5.17146327183582e-05
+15 6.14180898992345e-05
+16 5.2817278628936e-05
+17 4.49019971711095e-05
+18 5.71369964745827e-05
+19 6.26956825726666e-05
+20 5.29662356711924e-05
+21 6.40920552541502e-05
+22 7.57484012865461e-05
+23 4.39893519796897e-05
+24 4.95620079163928e-05
+25 5.48750758753158e-05
+26 4.08885862270836e-05
+27 5.38253480044659e-05
+28 3.9801965613151e-05
+29 5.69197691220324e-05
+30 5.27888441865798e-05
+31 3.63676117558498e-05
+32 6.17651603533886e-05
+33 6.14521995885298e-05
+34 5.41855224582832e-05
+35 5.96274403505959e-05
+36 4.0754588553682e-05
+37 6.61319718346931e-05
+38 5.423987749964e-05
+39 4.51918422186282e-05
+40 6.42406157567166e-05
+41 6.20772843831219e-05
+42 4.40250842075329e-05
+43 5.60478911211248e-05
+44 8.20007262518629e-05
+45 0.000132158442283981
+46 4.78286092402413e-05
+47 3.93709051422775e-05
+48 6.57393393339589e-05
+49 6.6526496084407e-05
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000156278605572879
+1 0.000157281217980199
+2 0.000158382361405529
+3 0.000161535062943585
+4 0.000155895526404493
+5 0.000155597532284446
+6 0.000157816946739331
+7 0.000153652246808633
+8 0.000156006761244498
+9 0.000153118977323174
+10 0.000156141148181632
+11 0.00015283546235878
+12 0.000155426751007326
+13 0.00015384225116577
+14 0.000153365705045871
+15 0.000152987486217171
+16 0.000155724337673746
+17 0.000158504000864923
+18 0.000155942820128985
+19 0.000154999215737917
+20 0.000157066620886326
+21 0.000156693349708803
+22 0.000157666567247361
+23 0.000150366759044118
+24 0.000157407761435024
+25 0.000152588749187998
+26 0.000157007743837312
+27 0.000157044312800281
+28 0.000155700399773195
+29 0.000151236279634759
+30 0.000160109819262289
+31 0.000157691101776436
+32 0.000153229921124876
+33 0.000159714007168077
+34 0.000158844923134893
+35 0.000158571885549463
+36 0.000152866923599504
+37 0.000154378663864918
+38 0.000156986396177672
+39 0.00015542317123618
+40 0.000158465642016381
+41 0.000157058209879324
+42 0.000156008172780275
+43 0.00015556400467176
+44 0.000153010303620249
+45 0.000154618493979797
+46 0.000153922796016559
+47 0.000155017201905139
+48 0.000158175083925016
+49 0.000154774184920825
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000152411274029873
+1 0.00014279899187386
+2 0.000132710134494118
+3 0.000100887671578676
+4 0.000159194023581222
+5 0.000156007998157293
+6 0.000127663864986971
+7 0.000168474172824062
+8 0.000154959794599563
+9 0.00018757933867164
+10 0.000151984058902599
+11 0.000179786104126833
+12 0.000158754177391529
+13 0.000173730455571786
+14 0.000173633598024026
+15 0.000172373955138028
+16 0.000151623622514307
+17 0.000129092877614312
+18 0.000150990817928687
+19 0.000159008006448857
+20 0.000144473699037917
+21 0.000156084555783309
+22 0.00014228792861104
+23 0.000201866336283274
+24 0.000136487942654639
+25 0.000178822898305953
+26 0.000143973142257892
+27 0.000141190714202821
+28 0.000153583590872586
+29 0.000193165993550792
+30 0.000734089873731136
+31 0.000132054614368826
+32 0.000180128248757683
+33 0.000117691233754158
+34 0.000128508923808113
+35 0.000127700026496314
+36 0.000175534616573714
+37 0.000164682613103651
+38 0.000139988856972195
+39 0.000151938525959849
+40 0.000129749998450279
+41 0.000143923825817183
+42 0.000147190177813172
+43 0.000148758103023283
+44 0.000179540424142033
+45 0.000165105957421474
+46 0.000168812592164613
+47 0.000160761599545367
+48 0.000135511494590901
+49 0.000163022472406738
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.007772562329509599, Learning_Process.pdf b/models_URWF/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.007772562329509599, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..f51264dade20cfcaa1cb5c3e91d6021ab51517cd
Binary files /dev/null and b/models_URWF/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.007772562329509599, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.007772562329509599, Learning_Process.tex b/models_URWF/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.007772562329509599, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..5d6b955ea25c1306ce771bb7a2144617ea0ec761
--- /dev/null
+++ b/models_URWF/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.007772562329509599, Learning_Process.tex	
@@ -0,0 +1,304 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+minor ytick={2e-06,3e-06,4e-06,5e-06,6e-06,7e-06,8e-06,9e-06,2e-05,3e-05,4e-05,5e-05,6e-05,7e-05,8e-05,9e-05,0.0002,0.0003,0.0004,0.0005,0.0006,0.0007,0.0008,0.0009,0.002,0.003,0.004,0.005,0.006,0.007,0.008,0.009,0.02,0.03,0.04,0.05,0.06,0.07,0.08,0.09},
+minor yticklabels={
+  \(\displaystyle {2\times10^{-6}}\),
+  \(\displaystyle {3\times10^{-6}}\),
+  \(\displaystyle {4\times10^{-6}}\),
+  ,
+  \(\displaystyle {6\times10^{-6}}\),
+  ,
+  ,
+  ,
+  \(\displaystyle {2\times10^{-5}}\),
+  \(\displaystyle {3\times10^{-5}}\),
+  \(\displaystyle {4\times10^{-5}}\),
+  ,
+  \(\displaystyle {6\times10^{-5}}\),
+  ,
+  ,
+  ,
+  \(\displaystyle {2\times10^{-4}}\),
+  \(\displaystyle {3\times10^{-4}}\),
+  \(\displaystyle {4\times10^{-4}}\),
+  ,
+  \(\displaystyle {6\times10^{-4}}\),
+  ,
+  ,
+  ,
+  \(\displaystyle {2\times10^{-3}}\),
+  \(\displaystyle {3\times10^{-3}}\),
+  \(\displaystyle {4\times10^{-3}}\),
+  ,
+  \(\displaystyle {6\times10^{-3}}\),
+  ,
+  ,
+  ,
+  \(\displaystyle {2\times10^{-2}}\),
+  \(\displaystyle {3\times10^{-2}}\),
+  \(\displaystyle {4\times10^{-2}}\),
+  ,
+  \(\displaystyle {6\times10^{-2}}\),
+  ,
+  ,
+  
+},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.80615657013508e-05, ymax=0.000205842097355971,
+ymode=log,
+ytick style={color=black},
+ytick={1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000140207281219773
+1 4.89768535771873e-05
+2 4.39767572970595e-05
+3 4.40995645476505e-05
+4 4.31922780990135e-05
+5 4.59869261248969e-05
+6 4.30926811532117e-05
+7 4.26095975853968e-05
+8 4.27086160925683e-05
+9 4.53233406005893e-05
+10 4.55855333711952e-05
+11 4.2762574594235e-05
+12 5.5894077377161e-05
+13 4.34276553278323e-05
+14 4.36442351201549e-05
+15 4.5223245251691e-05
+16 4.45131845481228e-05
+17 4.23674900957849e-05
+18 4.43593089585193e-05
+19 4.65986740891822e-05
+20 4.33298191637732e-05
+21 4.47914790129289e-05
+22 4.09197164117359e-05
+23 4.72246101708151e-05
+24 4.44881115981843e-05
+25 4.42531600128859e-05
+26 4.42814052803442e-05
+27 4.40514049842022e-05
+28 4.41985175712034e-05
+29 4.24081772507634e-05
+30 4.32450033258647e-05
+31 4.81726201542187e-05
+32 4.10951906815171e-05
+33 4.4827724195784e-05
+34 4.46762242063414e-05
+35 4.55592344223987e-05
+36 4.78712645417545e-05
+37 4.40253534179647e-05
+38 4.51524538220838e-05
+39 4.39081668446306e-05
+40 4.67418503831141e-05
+41 4.40891963080503e-05
+42 4.35667388956062e-05
+43 4.43865537818056e-05
+44 4.33030872954987e-05
+45 5.07448203279637e-05
+46 4.78645088151097e-05
+47 4.98533991049044e-05
+48 4.92475119244773e-05
+49 5.01078247907571e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000178251109900884
+1 4.23800047428813e-05
+2 4.10460161219817e-05
+3 4.38101487816311e-05
+4 4.26106780651025e-05
+5 4.32445885962807e-05
+6 4.36011432611849e-05
+7 4.92543986183591e-05
+8 4.97671717312187e-05
+9 3.32406198140234e-05
+10 4.61091512988787e-05
+11 4.62020179838873e-05
+12 4.82955038023647e-05
+13 4.22162593167741e-05
+14 5.46872870472725e-05
+15 3.14563039864879e-05
+16 4.22757184423972e-05
+17 5.12148617417552e-05
+18 4.39560208178591e-05
+19 4.62445204902906e-05
+20 6.19604106759652e-05
+21 4.0375813114224e-05
+22 6.29231799393892e-05
+23 4.62543648609426e-05
+24 3.50767513737082e-05
+25 3.3386102586519e-05
+26 4.16820766986348e-05
+27 3.66623244190123e-05
+28 5.95474048168398e-05
+29 5.08420525875408e-05
+30 4.79779519082513e-05
+31 4.257857290213e-05
+32 7.4702977144625e-05
+33 3.70819798263256e-05
+34 3.07219852402341e-05
+35 5.39038228453137e-05
+36 4.2663868953241e-05
+37 3.43071260431316e-05
+38 6.86738276272081e-05
+39 4.17033152189106e-05
+40 3.64582301699556e-05
+41 3.72461290680803e-05
+42 4.70849881821778e-05
+43 3.53307768818922e-05
+44 4.30591935582925e-05
+45 4.61894669570029e-05
+46 4.21550321334507e-05
+47 4.14784153690562e-05
+48 5.89629053138196e-05
+49 4.20094438595697e-05
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000142701639560983
+1 0.000141718905069865
+2 0.000144723089761101
+3 0.000146059726830572
+4 0.000144703211844899
+5 0.000143912417115644
+6 0.00014631578233093
+7 0.000144321020343341
+8 0.000139916388434358
+9 0.000146358084748499
+10 0.000147362545249052
+11 0.000143922996358015
+12 0.000144525038194843
+13 0.000141794997034594
+14 0.000144397272379138
+15 0.000146914477227256
+16 0.000145424361107871
+17 0.000144371457281522
+18 0.000139674855745398
+19 0.000143815690535121
+20 0.000146244943607599
+21 0.000139561321702786
+22 0.000144315985380672
+23 0.000140263393404894
+24 0.000145344922202639
+25 0.000141897078719921
+26 0.000142252669320442
+27 0.00014358181215357
+28 0.000145796308061108
+29 0.000138891715323552
+30 0.000144772915518843
+31 0.000138708230224438
+32 0.000145491634611972
+33 0.000144343954161741
+34 0.000144866877235472
+35 0.000144994395668618
+36 0.000145144993439317
+37 0.000140334814204834
+38 0.000143682394991629
+39 0.000144217221532017
+40 0.000145078811328858
+41 0.000141356271342374
+42 0.0001434135629097
+43 0.000142507808050141
+44 0.000142677716212347
+45 0.000144922014442272
+46 0.000144357996759936
+47 0.000142571167089045
+48 0.00014277346781455
+49 0.000141278404043987
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000149909858009778
+1 0.000161676944117062
+2 0.000134200599859469
+3 0.000120270429761149
+4 0.000133811423438601
+5 0.000142525750561617
+6 0.000119089731015265
+7 0.000137935217935592
+8 0.000176915826159529
+9 0.000118536736408714
+10 0.000109622138552368
+11 0.000140008502057754
+12 0.000135675218189135
+13 0.000161481308168732
+14 0.000137295181048103
+15 0.000112904446723405
+16 0.000127287101349793
+17 0.0001361305185128
+18 0.00017888899310492
+19 0.000140518677653745
+20 0.000121117642265745
+21 0.000180228453245945
+22 0.000136929083964787
+23 0.000173338135937229
+24 0.000128295898321085
+25 0.000159671108121984
+26 0.000155956440721639
+27 0.000144667967106216
+28 0.000125005142763257
+29 0.000187543555512093
+30 0.000132923349156044
+31 0.000188016871106811
+32 0.000125907114124857
+33 0.000136736663989723
+34 0.000131546592456289
+35 0.000131414883071557
+36 0.000131908556795679
+37 0.000173355991137214
+38 0.000142846824019216
+39 0.000136357339215465
+40 0.000131493245135061
+41 0.000164497221703641
+42 0.000146099715493619
+43 0.00015440424613189
+44 0.000153152606799267
+45 0.000132320419652387
+46 0.000135664464323781
+47 0.000153153217979707
+48 0.000150992142152973
+49 0.000166150493896566
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.004865548279015659, Learning_Process.pdf b/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.004865548279015659, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..0aa0d9462726d5d6d7c92d3b07b2edb24075ec88
Binary files /dev/null and b/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.004865548279015659, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.004865548279015659, Learning_Process.tex b/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.004865548279015659, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..f597975421e6bc240617d134b976057bbb52ebc7
--- /dev/null
+++ b/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.004865548279015659, Learning_Process.tex	
@@ -0,0 +1,261 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.05143937174669e-05, ymax=0.000242694855712822,
+ymode=log,
+ytick style={color=black},
+ytick={1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000150454085087404
+1 5.29445787833538e-05
+2 5.21414294780698e-05
+3 5.03513983858284e-05
+4 4.81898787256796e-05
+5 4.20441610913258e-05
+6 3.96031828131527e-05
+7 3.54544354195241e-05
+8 3.4038457670249e-05
+9 3.24469801853411e-05
+10 3.04390814562794e-05
+11 3.23444037348963e-05
+12 3.06549300148617e-05
+13 3.12027150357608e-05
+14 3.06069778162055e-05
+15 3.18017264362425e-05
+16 2.75312049780041e-05
+17 2.77911785815377e-05
+18 3.08515809592791e-05
+19 3.2380638003815e-05
+20 3.1006129574962e-05
+21 3.06206675304566e-05
+22 2.88599003397394e-05
+23 3.29607755702455e-05
+24 3.15189718094189e-05
+25 2.73898040177301e-05
+26 2.9444901883835e-05
+27 3.29579852405004e-05
+28 2.64423742919462e-05
+29 3.21592997352127e-05
+30 2.94769579340937e-05
+31 2.59761600318598e-05
+32 2.82558485196205e-05
+33 2.78545248875162e-05
+34 2.91116484731901e-05
+35 2.38203811022686e-05
+36 2.48602282226784e-05
+37 2.22460457734996e-05
+38 2.11702918022638e-05
+39 2.23749120777939e-05
+40 1.97638364625163e-05
+41 1.82004314410733e-05
+42 1.67205635079881e-05
+43 1.8066908523906e-05
+44 1.81300565600395e-05
+45 1.6599256923655e-05
+46 1.92060924746329e-05
+47 1.68253664014628e-05
+48 1.45477297337493e-05
+49 1.28337569549331e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000182950505404733
+1 6.03965272603091e-05
+2 4.61661038571037e-05
+3 4.40606490883511e-05
+4 4.47332167823333e-05
+5 3.42285566148348e-05
+6 3.32052586600184e-05
+7 3.52929600921925e-05
+8 3.14461067318916e-05
+9 3.76925781893078e-05
+10 3.2498843211215e-05
+11 2.66923580056755e-05
+12 2.41645320784301e-05
+13 2.37160529650282e-05
+14 3.25239961966872e-05
+15 3.00368319585687e-05
+16 3.72612630599178e-05
+17 3.27405832649674e-05
+18 2.54167953244178e-05
+19 2.5492423446849e-05
+20 2.32565071200952e-05
+21 3.3006308512995e-05
+22 2.3403428713209e-05
+23 2.06840068130987e-05
+24 3.18072634399869e-05
+25 2.82987202808727e-05
+26 2.20637830352644e-05
+27 3.04351906379452e-05
+28 2.50159591814736e-05
+29 3.77742362616118e-05
+30 2.71014996542362e-05
+31 2.35856914514443e-05
+32 3.09788847516757e-05
+33 2.67943978542462e-05
+34 2.48556698352331e-05
+35 3.19150822178926e-05
+36 2.51062338065822e-05
+37 2.13237817661138e-05
+38 2.36068044614512e-05
+39 2.05828346224735e-05
+40 2.04349616979016e-05
+41 1.93797732208623e-05
+42 2.25314925046405e-05
+43 1.79407034011092e-05
+44 1.21269431474502e-05
+45 1.51289632412954e-05
+46 1.78864775080001e-05
+47 1.60176987265004e-05
+48 1.50813566506258e-05
+49 1.33729336084798e-05
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000157853588461876
+1 0.000154147535795346
+2 0.000155021625687368
+3 0.000155771864228882
+4 0.000153576111188158
+5 0.000147729821037501
+6 0.000147790196933784
+7 0.000152816210174933
+8 0.00015610437549185
+9 0.000154587716679089
+10 0.000154791632667184
+11 0.000152623746544123
+12 0.000157399495947175
+13 0.000157239235704765
+14 0.000152385429828428
+15 0.000152241642354056
+16 0.000154965557157993
+17 0.000151882530190051
+18 0.000153635512106121
+19 0.000154034962179139
+20 0.000152451524627395
+21 0.000153864661115222
+22 0.000150997046148404
+23 0.000157540212967433
+24 0.000148548075230792
+25 0.000153968663653359
+26 0.000156351408804767
+27 0.000152799679199234
+28 0.000156765949213877
+29 0.0001547528518131
+30 0.00015206630632747
+31 0.000152794775203802
+32 0.000152226857608184
+33 0.000154972221935168
+34 0.000152430176967755
+35 0.000155578745761886
+36 0.000154412147821859
+37 0.000148318053106777
+38 0.000153258923091926
+39 0.000152318098116666
+40 0.000153175424202345
+41 0.000156452762894332
+42 0.000154516543261707
+43 0.000155279994942248
+44 0.00015743836411275
+45 0.000154231078340672
+46 0.000153262488311157
+47 0.000152423846884631
+48 0.000150679348735139
+49 0.000153246277477592
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000119740725494921
+1 0.000152499400428496
+2 0.000143864948768169
+3 0.00013958549243398
+4 0.000157377478899434
+5 0.000210423124372028
+6 0.000209329373319633
+7 0.000164317971211858
+8 0.000132797780679539
+9 0.000148503560922109
+10 0.000146491714986041
+11 0.0001662176073296
+12 0.000121346813102718
+13 0.00012336706276983
+14 0.000162885553436354
+15 0.00016931003483478
+16 0.00014164212916512
+17 0.0001740729494486
+18 0.000156838825205341
+19 0.000152100343257189
+20 0.000168079699506052
+21 0.000155474946950562
+22 0.000179851587745361
+23 0.000120771197543945
+24 0.000202321709366515
+25 0.000154881068738177
+26 0.000133284469484352
+27 0.000163718883413821
+28 0.000128043509903364
+29 0.000145917976624332
+30 0.000170007202541456
+31 0.000163747929036617
+32 0.000167494436027482
+33 0.000144299861858599
+34 0.00016790309746284
+35 0.000140950287459418
+36 0.000150013642269187
+37 0.000205516495043412
+38 0.000160858806339093
+39 0.000167110745678656
+40 0.000160774783580564
+41 0.000132346482132562
+42 0.000148071674630046
+43 0.000140028481837362
+44 0.000121642209705897
+45 0.000151464395457879
+46 0.000160437164595351
+47 0.000166353143868037
+48 0.000182703763130121
+49 0.000161864896654151
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.005775342486975381, Learning_Process.pdf b/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.005775342486975381, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..39cfa8d935eb71dcf18bc1b3a6f834d2b7254b6d
Binary files /dev/null and b/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.005775342486975381, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.005775342486975381, Learning_Process.tex b/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.005775342486975381, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..3d097bd20cdcf29f851993007c7484142b00d43d
--- /dev/null
+++ b/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.005775342486975381, Learning_Process.tex	
@@ -0,0 +1,304 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.5,0.5)},
+  anchor=center,
+  draw=lightgray204
+},
+log basis y={10},
+minor ytick={2e-06,3e-06,4e-06,5e-06,6e-06,7e-06,8e-06,9e-06,2e-05,3e-05,4e-05,5e-05,6e-05,7e-05,8e-05,9e-05,0.0002,0.0003,0.0004,0.0005,0.0006,0.0007,0.0008,0.0009,0.002,0.003,0.004,0.005,0.006,0.007,0.008,0.009,0.02,0.03,0.04,0.05,0.06,0.07,0.08,0.09},
+minor yticklabels={
+  \(\displaystyle {2\times10^{-6}}\),
+  \(\displaystyle {3\times10^{-6}}\),
+  \(\displaystyle {4\times10^{-6}}\),
+  ,
+  \(\displaystyle {6\times10^{-6}}\),
+  ,
+  ,
+  ,
+  \(\displaystyle {2\times10^{-5}}\),
+  \(\displaystyle {3\times10^{-5}}\),
+  \(\displaystyle {4\times10^{-5}}\),
+  ,
+  \(\displaystyle {6\times10^{-5}}\),
+  ,
+  ,
+  ,
+  \(\displaystyle {2\times10^{-4}}\),
+  \(\displaystyle {3\times10^{-4}}\),
+  \(\displaystyle {4\times10^{-4}}\),
+  ,
+  \(\displaystyle {6\times10^{-4}}\),
+  ,
+  ,
+  ,
+  \(\displaystyle {2\times10^{-3}}\),
+  \(\displaystyle {3\times10^{-3}}\),
+  \(\displaystyle {4\times10^{-3}}\),
+  ,
+  \(\displaystyle {6\times10^{-3}}\),
+  ,
+  ,
+  ,
+  \(\displaystyle {2\times10^{-2}}\),
+  \(\displaystyle {3\times10^{-2}}\),
+  \(\displaystyle {4\times10^{-2}}\),
+  ,
+  \(\displaystyle {6\times10^{-2}}\),
+  ,
+  ,
+  
+},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.16099394583608e-05, ymax=0.000213654950786947,
+ymode=log,
+ytick style={color=black},
+ytick={1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00014206460036803
+1 5.77498722122982e-05
+2 4.78014153486583e-05
+3 4.50114021077752e-05
+4 0.000117487543320749
+5 7.60982002248056e-05
+6 6.13515803706832e-05
+7 5.47462841495872e-05
+8 4.86050521431025e-05
+9 3.83702063118108e-05
+10 4.64654112874996e-05
+11 4.65806879219599e-05
+12 4.41815209342167e-05
+13 4.44540200987831e-05
+14 4.486244142754e-05
+15 4.39274845120963e-05
+16 4.20902360929176e-05
+17 4.34033318015281e-05
+18 4.239434201736e-05
+19 4.17766132159159e-05
+20 4.30484215030447e-05
+21 4.33733548561577e-05
+22 4.30003929068334e-05
+23 4.25298931077123e-05
+24 4.0039489249466e-05
+25 4.13939451391343e-05
+26 4.23629899160005e-05
+27 3.93200934922788e-05
+28 4.23280143877491e-05
+29 4.19167954532895e-05
+30 4.2173000110779e-05
+31 4.14714377257042e-05
+32 3.88796506740618e-05
+33 4.2496725654928e-05
+34 3.89862143492792e-05
+35 4.07499283028301e-05
+36 4.21652366640046e-05
+37 4.15701942984015e-05
+38 4.02059740736149e-05
+39 4.2381103412481e-05
+40 4.16510010836646e-05
+41 4.26839105784893e-05
+42 4.19139250880107e-05
+43 3.81278186978307e-05
+44 3.73801485693548e-05
+45 3.90069362765644e-05
+46 4.11074724979699e-05
+47 4.08715459343512e-05
+48 4.11336332035717e-05
+49 4.1761919419514e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000162546828505583
+1 5.33633756276686e-05
+2 5.06655669596512e-05
+3 5.77109422010835e-05
+4 4.25523139711004e-05
+5 4.35777292295825e-05
+6 3.34637661580928e-05
+7 2.3981896447367e-05
+8 4.51569867436774e-05
+9 0.000116467977932189
+10 4.30652107752394e-05
+11 2.76320442935685e-05
+12 4.49356994067784e-05
+13 3.72658942069393e-05
+14 2.91995329462225e-05
+15 3.46563101629727e-05
+16 4.92213112011086e-05
+17 4.14628011640161e-05
+18 4.0755530790193e-05
+19 4.75359665870201e-05
+20 3.5917848435929e-05
+21 3.40775040967856e-05
+22 3.55499469151255e-05
+23 3.76324314856902e-05
+24 5.84008230362087e-05
+25 4.56843008578289e-05
+26 3.64587067451794e-05
+27 6.32059454801492e-05
+28 3.71919704775792e-05
+29 4.01134966523387e-05
+30 3.77106298401486e-05
+31 4.35299407399725e-05
+32 6.63097016513348e-05
+33 3.52690221916419e-05
+34 6.66358027956448e-05
+35 4.74457447126042e-05
+36 3.59016266884282e-05
+37 3.98695774492808e-05
+38 5.15692991029937e-05
+39 3.57125136360992e-05
+40 3.7314177461667e-05
+41 3.3282209187746e-05
+42 3.10498362523504e-05
+43 6.84534898027778e-05
+44 7.31948166503571e-05
+45 5.86753594689071e-05
+46 3.97683579649311e-05
+47 4.01577017328236e-05
+48 4.28288585681003e-05
+49 3.2593834475847e-05
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000143155019031838
+1 0.000144045610795729
+2 0.000141628275741823
+3 0.000147777987876907
+4 0.000145503421663307
+5 0.000145496393088251
+6 0.000144067555083893
+7 0.0001466818357585
+8 0.000144003206514753
+9 0.000147811137139797
+10 0.000144423189340159
+11 0.000143996454426087
+12 0.000140847274451517
+13 0.00014671086682938
+14 0.000145287442137487
+15 0.000144405639730394
+16 0.000144070465466939
+17 0.0001391136465827
+18 0.000142274773679674
+19 0.000142233329825103
+20 0.000143347380799241
+21 0.000143459779792465
+22 0.000143666271469556
+23 0.000144898163853213
+24 0.000145533223985694
+25 0.000142978635267355
+26 0.00014422980893869
+27 0.000143553770612925
+28 0.000142169970786199
+29 0.000147590020787902
+30 0.000145496087498032
+31 0.000145321173476987
+32 0.000140095260576345
+33 0.000146374426549301
+34 0.000141425436595455
+35 0.000145440746564418
+36 0.000146497506648302
+37 0.000142279066494666
+38 0.00014821405056864
+39 0.000147140075569041
+40 0.000147392245708033
+41 0.000143581390148029
+42 0.000138631294248626
+43 0.000144035060657188
+44 0.000147351936902851
+45 0.000144626435940154
+46 0.000144650257425383
+47 0.000144726669532247
+48 0.000142791148391552
+49 0.000147980492329225
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000154743363964371
+1 0.000144180099596269
+2 0.000165229357662611
+3 0.000119676573376637
+4 0.000141155353048816
+5 0.000131688837427646
+6 0.000140718926559202
+7 0.000121289587696083
+8 0.000153019078425132
+9 0.000113527428766247
+10 0.000142925884574652
+11 0.000147586950333789
+12 0.000172886459040456
+13 0.000122367040603422
+14 0.000131044769659638
+15 0.000147754137287848
+16 0.000145135796628892
+17 0.000190310107427649
+18 0.000165254561579786
+19 0.000157169997692108
+20 0.000150861029396765
+21 0.000157393646077253
+22 0.000149907980812714
+23 0.000148161547258496
+24 0.000129725187434815
+25 0.000158079128596
+26 0.000148857056046836
+27 0.000151145199197344
+28 0.00016174785559997
+29 0.000113812428025994
+30 0.000131010659970343
+31 0.000147081096656621
+32 0.000183048818144016
+33 0.000138627656269819
+34 0.000169854931300506
+35 0.000135538633912802
+36 0.000121954282803927
+37 0.000163928911206312
+38 0.000112261994217988
+39 0.000112441717647016
+40 0.000120840515592135
+41 0.000150674270116724
+42 0.000192523162695579
+43 0.000144604142406024
+44 0.000142118035000749
+45 0.000139599404064938
+46 0.00014724388893228
+47 0.000139449010021053
+48 0.000156915950356051
+49 0.000115944378194399
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.006827036145171369, Learning_Process.pdf b/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.006827036145171369, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..5521c5307ee47f98584c2610798db58a76ee675c
Binary files /dev/null and b/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.006827036145171369, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.006827036145171369, Learning_Process.tex b/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.006827036145171369, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..1658481ed81c583bb4841653c68336c89f0d9a27
--- /dev/null
+++ b/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.006827036145171369, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.03,0.03)},
+  anchor=south west,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.61097920413546e-06, ymax=0.000224958221378185,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000144670077133924
+1 4.76039786008187e-05
+2 4.26641381636728e-05
+3 3.73936818505172e-05
+4 3.42875973728951e-05
+5 3.43010142387357e-05
+6 3.24445172736887e-05
+7 3.51462585967965e-05
+8 3.05117882817285e-05
+9 2.87244256469421e-05
+10 3.00482333841501e-05
+11 2.9159364203224e-05
+12 2.96286852972116e-05
+13 2.92194908979582e-05
+14 2.7540296287043e-05
+15 2.54065216722665e-05
+16 2.20547590288334e-05
+17 1.93736759683816e-05
+18 1.80189163074829e-05
+19 1.76787598320516e-05
+20 1.34434967549169e-05
+21 1.38496488943929e-05
+22 1.21675175250857e-05
+23 1.39323583425721e-05
+24 1.48146946230554e-05
+25 1.24176012832322e-05
+26 1.27806097225402e-05
+27 1.00583747553173e-05
+28 8.91721083462471e-06
+29 7.731018740742e-06
+30 6.71626276016468e-06
+31 6.20779928794946e-06
+32 6.29124633633182e-06
+33 9.43519808060955e-06
+34 7.97215216152836e-06
+35 6.85905661157449e-06
+36 5.83621840632986e-06
+37 5.7824513532978e-06
+38 5.78614935875521e-06
+39 5.53589916307828e-06
+40 5.26943631484755e-06
+41 5.39733218829497e-06
+42 5.79350353291375e-06
+43 5.04362787978607e-06
+44 6.69796872898587e-06
+45 5.50593586012837e-06
+46 4.32005481343367e-06
+47 4.02418845624197e-06
+48 3.91804587707156e-06
+49 3.70560428564204e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000170675775734708
+1 4.49876679340377e-05
+2 5.63271132705268e-05
+3 4.0359482227359e-05
+4 3.63540893886238e-05
+5 3.23079984809738e-05
+6 3.23116364597809e-05
+7 3.19932114507537e-05
+8 3.23817148455419e-05
+9 4.84459633298684e-05
+10 2.79046707873931e-05
+11 2.88224382529734e-05
+12 3.1971310818335e-05
+13 2.09792760870187e-05
+14 2.28285061893985e-05
+15 2.59934640780557e-05
+16 2.41813595494023e-05
+17 1.77984602487413e-05
+18 1.63474633154692e-05
+19 1.61706575454446e-05
+20 1.22368101074244e-05
+21 1.24132202472538e-05
+22 1.4666082279291e-05
+23 1.22453175208648e-05
+24 1.33538214868167e-05
+25 1.28150422824547e-05
+26 1.66638255905127e-05
+27 1.24885000332142e-05
+28 1.00367369668675e-05
+29 7.71859322412638e-06
+30 6.42455415800214e-06
+31 6.13049132880406e-06
+32 5.45683042219025e-06
+33 1.30236321638222e-05
+34 7.56361396270222e-06
+35 4.70899749416276e-06
+36 4.56282168670441e-06
+37 6.00697057961952e-06
+38 7.56665895096376e-06
+39 6.15843191553722e-06
+40 4.33947343481123e-06
+41 2.17539964069147e-05
+42 5.16358386448701e-06
+43 3.5161356208846e-06
+44 7.12443579686806e-06
+45 3.93087020711391e-06
+46 5.84106737733237e-06
+47 5.20904723089188e-06
+48 4.178896688245e-06
+49 3.19721266350825e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000147063910844736
+1 0.000148563602124341
+2 0.000149867977597751
+3 0.000147269747685641
+4 0.000148863458889537
+5 0.000153339045937173
+6 0.0001493074814789
+7 0.000144427569466643
+8 0.000148005128721707
+9 0.00014807605475653
+10 0.00014708359958604
+11 0.000146378792123869
+12 0.000147143742651679
+13 0.000148742168676108
+14 0.000147962258779444
+15 0.000146220292663202
+16 0.000145576821523719
+17 0.000148620558320545
+18 0.000146494567161426
+19 0.000144078323501162
+20 0.000146659775055014
+21 0.000147546306834556
+22 0.00014552082575392
+23 0.000147541431942955
+24 0.000144778619869612
+25 0.000143065597512759
+26 0.000147820406709798
+27 0.00014687814109493
+28 0.000145636353408918
+29 0.00014710717368871
+30 0.000146496895467862
+31 0.000149878338561393
+32 0.000148129387525842
+33 0.000147016660775989
+34 0.000146700767800212
+35 0.000150347943417728
+36 0.000148013365105726
+37 0.000144505698699504
+38 0.000144983248901553
+39 0.000148511709994636
+40 0.000146610735100694
+41 0.000144111952977255
+42 0.000144065590575337
+43 0.000150317515362985
+44 0.000145942263770849
+45 0.000145331607200205
+46 0.000148379083839245
+47 0.000147100348840468
+48 0.00014746883243788
+49 0.000147770901094191
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.00014932852354832
+1 0.000139603682328016
+2 0.00012296142813284
+3 0.000148682956933044
+4 0.000132111556013115
+5 0.000143368190038018
+6 0.000126905608340167
+7 0.000171820167452097
+8 0.000141461758175865
+9 0.000139306153869256
+10 0.000147635350003839
+11 0.000154314475366846
+12 0.000149417319335043
+13 0.000137950104544871
+14 0.000142564080306329
+15 0.000156021269503981
+16 0.000162791227921844
+17 0.000135111549752764
+18 0.000151952423038892
+19 0.000175212873728015
+20 0.000151870335685089
+21 0.000159435207024217
+22 0.000164410783327185
+23 0.000145271173096262
+24 0.000169159509823658
+25 0.000183710406417958
+26 0.000142792428960092
+27 0.000150650928844698
+28 0.000162157506565563
+29 0.000147052152897231
+30 0.000154325651237741
+31 0.000122607278171927
+32 0.000139352850965224
+33 0.000149804385728203
+34 0.000151550149894319
+35 0.000119490920042153
+36 0.000140185380587354
+37 0.000171316001797095
+38 0.000167145466548391
+39 0.000136593691422604
+40 0.000153750646859407
+41 0.000176516710780561
+42 0.000176029352587648
+43 0.000119629337859806
+44 0.000160612165927887
+45 0.000164712735568173
+46 0.00013613463670481
+47 0.00014741146878805
+48 0.000145198238897137
+49 0.000141251060995273
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.007220309256191217, Learning_Process.pdf b/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.007220309256191217, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..501ad8a824a9d286a326b46b0a7ceaca0c0b5865
Binary files /dev/null and b/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.007220309256191217, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.007220309256191217, Learning_Process.tex b/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.007220309256191217, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..9bd908b52ce5f503b8012372f4510b4e25357737
--- /dev/null
+++ b/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.007220309256191217, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.92229018275343e-06, ymax=0.0001954992739252,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000121982411656063
+1 3.77129472326487e-05
+2 3.47015593433753e-05
+3 3.29738686559722e-05
+4 2.82055807474535e-05
+5 2.68716521532042e-05
+6 2.42023888858967e-05
+7 2.38167831412284e-05
+8 2.40342342294753e-05
+9 2.46001927735051e-05
+10 2.32125385082327e-05
+11 2.36768391914666e-05
+12 2.19174326048233e-05
+13 2.00962076633004e-05
+14 2.00216800294584e-05
+15 1.83621468750061e-05
+16 1.55335837916937e-05
+17 1.39000676426804e-05
+18 1.44708792504389e-05
+19 1.18633479360142e-05
+20 1.00177594504203e-05
+21 1.23562504086294e-05
+22 1.02458925539395e-05
+23 8.35919490782544e-06
+24 7.1331260187435e-06
+25 7.1461054176325e-06
+26 6.35722562947194e-06
+27 6.39474546915153e-06
+28 5.89450701227179e-06
+29 6.12288658885518e-06
+30 7.82292954681907e-06
+31 5.08405082655372e-06
+32 4.40951816926827e-06
+33 3.77793980987917e-06
+34 6.64162735120044e-06
+35 4.23343590227887e-06
+36 5.37796768185217e-06
+37 4.30056115874322e-06
+38 3.70142470274004e-06
+39 3.39496000378858e-06
+40 3.07896584672562e-06
+41 2.6981206247001e-06
+42 2.83057920569263e-06
+43 2.65030575974379e-06
+44 2.60222077486105e-06
+45 2.37170706895995e-06
+46 3.49494166584918e-06
+47 3.00309056910919e-06
+48 2.79625737675815e-06
+49 2.46873241849244e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000138908653752878
+1 3.99561649828684e-05
+2 3.68105138477404e-05
+3 3.30790498992428e-05
+4 2.57870415225625e-05
+5 3.48367575497832e-05
+6 2.67426221398637e-05
+7 2.29340639634756e-05
+8 2.86925642285496e-05
+9 2.14581596083008e-05
+10 2.02180835913168e-05
+11 2.95955869660247e-05
+12 1.7654348994256e-05
+13 2.37728945648996e-05
+14 1.92996649275301e-05
+15 2.13747498492012e-05
+16 1.70250259543536e-05
+17 1.13861260615522e-05
+18 9.12914765649475e-06
+19 1.0596548236208e-05
+20 9.70989913184894e-06
+21 1.35135969685507e-05
+22 8.37259904074017e-06
+23 9.10467770154355e-06
+24 7.18548926670337e-06
+25 4.91230093757622e-06
+26 5.6145486269088e-06
+27 5.62361083211727e-06
+28 4.9003133426595e-06
+29 4.77507182949921e-06
+30 4.73592581329285e-06
+31 5.00634359923424e-06
+32 3.9770334296918e-06
+33 3.50688219441508e-06
+34 1.20898102977662e-05
+35 3.91391540688346e-06
+36 4.59218290416175e-06
+37 3.19244441016053e-06
+38 2.78338507087028e-06
+39 2.66477218247019e-06
+40 3.48414027939725e-06
+41 3.95960432797438e-06
+42 4.45641262558638e-06
+43 3.34041828864429e-06
+44 2.47614866566437e-06
+45 2.67314317170531e-06
+46 2.94229789687961e-06
+47 2.48381365963724e-06
+48 3.28116811942891e-06
+49 2.56436555901018e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000123045581858605
+1 0.000124063401017338
+2 0.000123063975479454
+3 0.00011989357881248
+4 0.000124573503853753
+5 0.000121773162391037
+6 0.000123382167657837
+7 0.000123594450997189
+8 0.000125026286696084
+9 0.000123360310681164
+10 0.000122815297800116
+11 0.00012247274571564
+12 0.000125127087812871
+13 0.000123426667414606
+14 0.000123523088404909
+15 0.000123706529848278
+16 0.000124061742099002
+17 0.00012352284102235
+18 0.000125548991491087
+19 0.000125308724818751
+20 0.000123060148325749
+21 0.000125622798805125
+22 0.000123248712043278
+23 0.00012442453589756
+24 0.000123952064313926
+25 0.000123535093734972
+26 0.000125933234812692
+27 0.000122005105367862
+28 0.000126400263980031
+29 0.000125642822240479
+30 0.000123579986393452
+31 0.000124986414448358
+32 0.000124509431771003
+33 0.000120343065646011
+34 0.000121631208457984
+35 0.000123202422400936
+36 0.000124104582937434
+37 0.000123832884128205
+38 0.000124460901133716
+39 0.00012508402869571
+40 0.000120066571980715
+41 0.000125197591842152
+42 0.000123406643979251
+43 0.000120369899377692
+44 0.000122781173558906
+45 0.000123260819236748
+46 0.000121735174616333
+47 0.000122846278827637
+48 0.000121107463201042
+49 0.000124402329674922
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000129600230138749
+1 0.00012084876652807
+2 0.000127399121993221
+3 0.000158453942276537
+4 0.000115966831799597
+5 0.000139910698635504
+6 0.000132844768813811
+7 0.000124214056995697
+8 0.000111562621896155
+9 0.000124434154713526
+10 0.000132189205032773
+11 0.000138804665766656
+12 0.000108806976641063
+13 0.000125567399663851
+14 0.000123723686556332
+15 0.000121854711323977
+16 0.000118136573291849
+17 0.000125099075376056
+18 0.000105616127257235
+19 0.000107580657640938
+20 0.000128807834698819
+21 0.000108033062133472
+22 0.000126918574096635
+23 0.000120581178634893
+24 0.000120808741485234
+25 0.000121373057481833
+26 0.000103762395156082
+27 0.000139518364449032
+28 9.96294184005819e-05
+29 0.000105047132819891
+30 0.000123449135571718
+31 0.000112644564069342
+32 0.000117586707347073
+33 0.000153605622472242
+34 0.000142492484883405
+35 0.00012729354784824
+36 0.000120408971270081
+37 0.000121510551252868
+38 0.000118180316349026
+39 0.000110890010546427
+40 0.000156360314576887
+41 0.000109097796666902
+42 0.000127286577480845
+43 0.000151199943502434
+44 0.000130276355776004
+45 0.000128429659525864
+46 0.000142712407978252
+47 0.000130981017719023
+48 0.000147021070006303
+49 0.000117878778837621
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.009897679311073397, Learning_Process.pdf b/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.009897679311073397, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..44747003c0a1ae8dd2d665b29393fce240d0798d
Binary files /dev/null and b/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.009897679311073397, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.009897679311073397, Learning_Process.tex b/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.009897679311073397, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..3b2d5fe654c2b81e24413e3b6a42dc2bb3fa5dce
--- /dev/null
+++ b/models_URWF/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.009897679311073397, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.03,0.03)},
+  anchor=south west,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.8492618875212e-06, ymax=0.000176977487034666,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000113165442598984
+1 3.64207444363274e-05
+2 3.26858244079631e-05
+3 2.72466004389571e-05
+4 2.60102933680173e-05
+5 2.31033427553484e-05
+6 2.09144182008458e-05
+7 2.01183011085959e-05
+8 2.28581538976869e-05
+9 2.54372716881335e-05
+10 2.17703054659069e-05
+11 1.71877763932571e-05
+12 1.68485548783792e-05
+13 1.34372403408634e-05
+14 1.174097724288e-05
+15 1.38459408844938e-05
+16 1.4753760297026e-05
+17 1.20385057016392e-05
+18 1.04126902442658e-05
+19 1.04758582892828e-05
+20 1.01893820101395e-05
+21 8.84150176716503e-06
+22 1.11163153633242e-05
+23 8.35364062368171e-06
+24 1.08101539808558e-05
+25 8.54672634886811e-06
+26 7.21287733540521e-06
+27 9.16326462174766e-06
+28 8.78953960636863e-06
+29 7.11405255060527e-06
+30 6.12939675193047e-06
+31 1.13530368253123e-05
+32 9.77899435383733e-06
+33 6.75348337608739e-06
+34 5.68258792554843e-06
+35 4.52012454843498e-06
+36 4.07784909839393e-06
+37 3.82585812985781e-06
+38 4.0177669689001e-06
+39 4.04731417802395e-06
+40 4.36814434578991e-06
+41 3.63990648111212e-06
+42 3.11728126689559e-06
+43 2.9548098154919e-06
+44 5.14531029693899e-06
+45 2.94302731163043e-06
+46 2.68636267719558e-06
+47 2.80425888377067e-06
+48 2.83104031950643e-06
+49 2.28809062718938e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000114573827886488
+1 3.46084889315534e-05
+2 3.37300298269838e-05
+3 3.02930420730263e-05
+4 2.48013384407386e-05
+5 2.68880048679421e-05
+6 3.29661124851555e-05
+7 1.86640536412597e-05
+8 2.14855099329725e-05
+9 1.5899924619589e-05
+10 1.91139115486294e-05
+11 2.01699913304765e-05
+12 2.37741423916304e-05
+13 2.22465332626598e-05
+14 1.32431041492964e-05
+15 1.32072300402797e-05
+16 1.70281400642125e-05
+17 1.3980888070364e-05
+18 1.06845318441628e-05
+19 9.81558514467906e-06
+20 1.34356669150293e-05
+21 7.9899737102096e-06
+22 6.92704634275287e-06
+23 7.32980925022275e-06
+24 1.07010373540106e-05
+25 7.51823836253607e-06
+26 5.28881037098472e-06
+27 7.14865473128157e-06
+28 8.30978115118342e-06
+29 6.61842932458967e-06
+30 7.77163950260729e-06
+31 1.10586297523696e-05
+32 1.08072699731565e-05
+33 9.42105361900758e-06
+34 6.66803998683463e-06
+35 4.66991332359612e-06
+36 3.58390025212429e-06
+37 3.77266269424581e-06
+38 5.12258566232049e-06
+39 3.89621936847107e-06
+40 5.19169634571881e-06
+41 4.01693569074268e-06
+42 5.08501261720085e-06
+43 1.1086618542322e-05
+44 4.09120912081562e-06
+45 3.52557071892079e-06
+46 2.65010794464615e-06
+47 3.38710083269689e-06
+48 2.27530813390331e-06
+49 2.50148696068209e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000110930748633109
+1 0.000114055095764343
+2 0.000112405308755115
+3 0.000115531831397675
+4 0.000113565271021798
+5 0.000110715700429864
+6 0.000116957889986224
+7 0.000115386421384756
+8 0.000115539260150399
+9 0.000116320319648366
+10 0.000113060443254653
+11 0.000113601228804328
+12 0.000111464702058583
+13 0.000115151044155937
+14 0.000110027453047223
+15 0.000115613765956368
+16 0.000115176517283544
+17 0.000116259507194627
+18 0.000111978195491247
+19 0.000114543792733457
+20 0.000109749053081032
+21 0.000115656417619903
+22 0.000115265909698792
+23 0.000113466529001016
+24 0.000110585926449858
+25 0.000113217414764222
+26 0.000114128852146678
+27 0.000113377798697911
+28 0.000110911249066703
+29 0.000113349182356615
+30 0.000111813329567667
+31 0.00011235848069191
+32 0.0001117708379752
+33 0.00011355233436916
+34 0.000113913345558103
+35 0.000115228569484316
+36 0.000114178721560165
+37 0.000113146321382374
+38 0.000111698267573956
+39 0.000114390881208237
+40 0.000112570378405508
+41 0.000114685302833095
+42 0.000112320682092104
+43 0.00011495948274387
+44 0.000115123577415943
+45 0.000111168767034542
+46 0.00011469291348476
+47 0.000115775612357538
+48 0.00011463396367617
+49 0.000113705929834396
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000133028457639739
+1 0.000105428800452501
+2 0.000123947975225747
+3 9.32781986193731e-05
+4 0.000110355322249234
+5 0.000135739523102529
+6 8.40379143483005e-05
+7 9.74438735283911e-05
+8 9.19910307857208e-05
+9 8.45813992782496e-05
+10 0.000114969850983471
+11 0.00010826182551682
+12 0.000130029948195443
+13 0.000100994075182825
+14 0.000140710442792624
+15 9.07407011254691e-05
+16 9.37584482016973e-05
+17 8.66355039761402e-05
+18 0.000124874757602811
+19 0.000100134573585819
+20 0.000143838857184164
+21 8.91345698619261e-05
+22 9.27085857256316e-05
+23 0.000111355519038625
+24 0.000137085080496036
+25 0.000112296394945588
+26 0.000103598184068687
+27 0.000111216795630753
+28 0.00013440141628962
+29 0.000112584304588381
+30 0.000126014230772853
+31 0.000122161334729753
+32 0.000126244893181138
+33 0.000111054701847024
+34 0.000106672268884722
+35 9.77405361481942e-05
+36 0.000107927473436575
+37 0.000114493166620377
+38 0.00012550460814964
+39 0.0001033068401739
+40 0.000121348239190411
+41 9.86441955319606e-05
+42 0.000121880904771388
+43 9.86715676845051e-05
+44 9.71416593529284e-05
+45 0.000131907727336511
+46 9.74531430983916e-05
+47 9.12327814148739e-05
+48 9.76055307546631e-05
+49 0.000106515341030899
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.004876471446999008, Learning_Process.pdf b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.004876471446999008, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..4f3c2d315d1080e22389d59c7ab65a153aaf99db
Binary files /dev/null and b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.004876471446999008, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.004876471446999008, Learning_Process.tex b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.004876471446999008, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..4547ba733372bba17c4af2a0c5b0044c414851c6
--- /dev/null
+++ b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.004876471446999008, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=4.91882041153946e-08, ymax=0.000281435841753261,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000144098492455669
+1 1.95420398085844e-05
+2 7.18461706128437e-06
+3 4.06908793593175e-06
+4 2.57301758210815e-06
+5 1.93471237253107e-06
+6 1.48869389704487e-06
+7 1.23927009099134e-06
+8 1.04305991044384e-06
+9 8.45158922402334e-07
+10 7.61046408115362e-07
+11 6.42606266865187e-07
+12 5.58613862722268e-07
+13 5.07431309415551e-07
+14 4.55545546174108e-07
+15 4.38389633927727e-07
+16 4.04663722974874e-07
+17 3.58892123131227e-07
+18 3.50123087855536e-07
+19 3.02976104649133e-07
+20 3.05444757486839e-07
+21 2.48010394443554e-07
+22 2.5159627625726e-07
+23 2.34053374015275e-07
+24 2.19836962855879e-07
+25 2.11432379160215e-07
+26 2.01773502794822e-07
+27 1.80292857976383e-07
+28 1.76514447502996e-07
+29 1.60268385229756e-07
+30 1.63384768825381e-07
+31 1.68121459864778e-07
+32 1.45986618349525e-07
+33 1.39993005632277e-07
+34 1.35648932086951e-07
+35 1.3265214704461e-07
+36 1.25653627947031e-07
+37 1.38300435992278e-07
+38 1.19010479693316e-07
+39 1.13984114591403e-07
+40 1.12500636362256e-07
+41 1.11120769474837e-07
+42 1.06369533625639e-07
+43 1.02617541131167e-07
+44 9.63140536214269e-08
+45 9.56087120584925e-08
+46 9.12490705218261e-08
+47 8.27798132263524e-08
+48 8.55435402513649e-08
+49 8.35908551266584e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000122766592539847
+1 2.93597604468232e-05
+2 8.61368334881263e-06
+3 3.42232101502304e-06
+4 2.08310279958823e-06
+5 1.64652431067225e-06
+6 1.51655137869966e-06
+7 1.33701212234882e-06
+8 1.08563779122051e-06
+9 7.54000609504146e-07
+10 6.19161369286303e-07
+11 6.28466864327493e-07
+12 5.48327534488635e-07
+13 5.63362846150994e-07
+14 6.06554067417164e-07
+15 3.98146596580773e-07
+16 3.84586201107595e-07
+17 3.32393511826012e-07
+18 2.96999701276945e-07
+19 4.07681596925613e-07
+20 2.26745100917469e-07
+21 2.66740613596994e-07
+22 2.10105028486396e-07
+23 2.06391163715125e-07
+24 2.6996025326298e-07
+25 2.0669430966791e-07
+26 1.99840798131845e-07
+27 2.18453351408243e-07
+28 1.69644280845205e-07
+29 1.61729346359607e-07
+30 1.49708199614906e-07
+31 1.07700351748008e-07
+32 1.75339593511126e-07
+33 1.4216644217413e-07
+34 1.56783585225639e-07
+35 1.676513647908e-07
+36 9.3233317954855e-08
+37 1.28294274759355e-07
+38 1.04391666866377e-07
+39 9.84404664450267e-08
+40 1.38725653187066e-07
+41 1.17659219256439e-07
+42 8.9441819284275e-08
+43 7.28882056932889e-08
+44 7.63605143561108e-08
+45 1.07033763185882e-07
+46 8.22409447209793e-08
+47 9.85963097832609e-08
+48 8.26496702188706e-08
+49 9.85137162956562e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000138724004500546
+1 0.000141402459121309
+2 0.000143812358146533
+3 0.000137681199703366
+4 0.000142554694321007
+5 0.000139606869197451
+6 0.000142727614729665
+7 0.000141638331115246
+8 0.000142425371450372
+9 0.000142655189847574
+10 0.000138528077513911
+11 0.000142998949741013
+12 0.000142709250212647
+13 0.000139870608109049
+14 0.000141715310746804
+15 0.000142619042890146
+16 0.000144446545164101
+17 0.000145121040986851
+18 0.000141125885420479
+19 0.00014051295875106
+20 0.000141911281389184
+21 0.000140616277349181
+22 0.000142694800160825
+23 0.000140401287353598
+24 0.00014185841428116
+25 0.00014408995048143
+26 0.000144205376273021
+27 0.000141510798130184
+28 0.000138236136990599
+29 0.000142100048833527
+30 0.000143518191180192
+31 0.00015360617544502
+32 0.000140705567901023
+33 0.000142018878250383
+34 0.000137002585688606
+35 0.000141532320412807
+36 0.000145258120028302
+37 0.000142903605592437
+38 0.000139638475957327
+39 0.000139836221933365
+40 0.0001415229489794
+41 0.000141773794894107
+42 0.000139677926199511
+43 0.000141573313158005
+44 0.00014217005809769
+45 0.000142105200211518
+46 0.000144348829053342
+47 0.000143401703098789
+48 0.000138862596941181
+49 0.00014468292647507
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000169567065313458
+1 0.000144270525197499
+2 0.00013179708912503
+3 0.000177490568603389
+4 0.000132973000290804
+5 0.000159414645167999
+6 0.00013269241026137
+7 0.000140582516905852
+8 0.000135643567773513
+9 0.000131191030959599
+10 0.000166154000908136
+11 0.000129581458168104
+12 0.000134305941173807
+13 0.000158461727551185
+14 0.000141048571094871
+15 0.000130932967294939
+16 0.000114672955533024
+17 0.000113570284156594
+18 0.000145852376590483
+19 0.000162360985996202
+20 0.000141668511787429
+21 0.000152120002894662
+22 0.000131502078147605
+23 0.000152427121065557
+24 0.00013858950114809
+25 0.000118601019494236
+26 0.000119226031529251
+27 0.000140823220135644
+28 0.000170303435879759
+29 0.000133619367261417
+30 0.000124795857118443
+31 0.00011601869482547
+32 0.000149377679917961
+33 0.00013624774874188
+34 0.000189925427548587
+35 0.000140550153446384
+36 0.000108577914943453
+37 0.000130814383737743
+38 0.000158024136908352
+39 0.000163345350301825
+40 0.000142748627695255
+41 0.000144833218655549
+42 0.00015875777171459
+43 0.000141688346047886
+44 0.000138965173391625
+45 0.0001383499475196
+46 0.000114577378553804
+47 0.000125331716844812
+48 0.000165465171448886
+49 0.000115140624984633
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.005262273139195175, Learning_Process.pdf b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.005262273139195175, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..16dd1121d4f3b8cff7ebb31436d01ab839a40944
Binary files /dev/null and b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.005262273139195175, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.005262273139195175, Learning_Process.tex b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.005262273139195175, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..a2a50f395e42bcc8b59582d471acb6bb1b592f98
--- /dev/null
+++ b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.005262273139195175, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=4.32041234291369e-08, ymax=0.000334409678510157,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000156308044097386
+1 1.81118412001524e-05
+2 1.50912628669175e-05
+3 3.09177994495258e-06
+4 1.80484755674115e-06
+5 1.39242911245674e-06
+6 1.02584090200253e-06
+7 8.42962492697552e-07
+8 7.38103949515789e-07
+9 6.201375413184e-07
+10 5.69229769098456e-07
+11 4.87687486838695e-07
+12 4.24173293822605e-07
+13 3.91626741702567e-07
+14 3.59445976982897e-07
+15 3.32079537201935e-07
+16 3.3499529195069e-07
+17 2.70849596972766e-07
+18 2.56306037726972e-07
+19 2.46799118031049e-07
+20 2.21021608126648e-07
+21 2.58148304510541e-07
+22 3.38993288551137e-07
+23 2.52727602401137e-07
+24 2.09378839599594e-07
+25 1.90422895229858e-07
+26 1.83054410740624e-07
+27 1.68320582361048e-07
+28 1.53759245336005e-07
+29 1.47121156146568e-07
+30 1.38694488782676e-07
+31 1.24851652572033e-07
+32 1.23921793715454e-07
+33 1.20726355135048e-07
+34 1.13357813802395e-07
+35 1.14868676348578e-07
+36 1.04800115252601e-07
+37 1.02843763727378e-07
+38 9.92037954006264e-08
+39 9.29965651152997e-08
+40 1.15531335609376e-07
+41 8.36589961750178e-08
+42 8.70681944320495e-08
+43 8.58479936027834e-08
+44 8.26311818968861e-08
+45 7.91718193227098e-08
+46 1.72648427110289e-07
+47 1.18545884220111e-07
+48 9.96106237494132e-08
+49 8.05987951935094e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000141073644044809
+1 1.74491597135784e-05
+2 1.76952216861537e-05
+3 2.47780189965852e-06
+4 2.82009227703384e-06
+5 1.52278505538561e-06
+6 1.10678627152083e-06
+7 8.21053106392355e-07
+8 6.38704136690649e-07
+9 7.92903335877782e-07
+10 6.59371096389805e-07
+11 5.23721723766357e-07
+12 5.0269954954274e-07
+13 2.92289513481592e-07
+14 3.57180027776849e-07
+15 3.02050210621019e-07
+16 2.90600212338177e-07
+17 2.52725556038058e-07
+18 2.38648823369658e-07
+19 2.25797094799418e-07
+20 2.43793493837074e-07
+21 2.39310281813232e-07
+22 3.23488364983859e-07
+23 2.57058189845338e-07
+24 2.26864401042803e-07
+25 2.26193066055203e-07
+26 1.93080083477071e-07
+27 1.4790843749779e-07
+28 1.28163833323924e-07
+29 1.26185796034406e-07
+30 1.14127509220907e-07
+31 1.61100587092733e-07
+32 1.0319236309897e-07
+33 1.14459105304832e-07
+34 1.38054176090918e-07
+35 1.19811318199936e-07
+36 1.10935502561915e-07
+37 1.0196534105944e-07
+38 8.23683805606379e-08
+39 9.29209349465054e-08
+40 8.11448828130779e-08
+41 9.64459800911754e-08
+42 8.89448799057391e-08
+43 7.7190655645154e-08
+44 7.30986968733305e-08
+45 6.49062812385637e-08
+46 1.17948097511089e-07
+47 1.97779399968567e-07
+48 7.77175941379937e-08
+49 8.9059646768419e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000153065993799828
+1 0.000158190538058989
+2 0.000156305060954764
+3 0.000153398243128322
+4 0.000153359142132103
+5 0.000155327841639519
+6 0.000156194582814351
+7 0.000151287706103176
+8 0.000151484302477911
+9 0.000153028726344928
+10 0.000156038295244798
+11 0.000154866531374864
+12 0.000156085399794392
+13 0.000157351678353734
+14 0.000156093738041818
+15 0.000154960711370222
+16 0.000150799896800891
+17 0.000151769680087455
+18 0.00015672977315262
+19 0.000152291366248392
+20 0.000155363712110557
+21 0.000151599131640978
+22 0.000155456364154816
+23 0.000158625902258791
+24 0.000156296955537982
+25 0.000153346671140753
+26 0.000153624481754377
+27 0.000156102163600735
+28 0.000155198154971004
+29 0.000150528241647407
+30 0.000156150446855463
+31 0.000152794222231023
+32 0.0001519595971331
+33 0.000154651628690772
+34 0.000157627946464345
+35 0.000155228888615966
+36 0.000153389337356202
+37 0.000152847016579472
+38 0.000150453532114625
+39 0.000156333117047325
+40 0.000157452683197334
+41 0.00015721857198514
+42 0.000157865099026822
+43 0.000150716223288327
+44 0.000153425076860003
+45 0.000157406975631602
+46 0.000156410242198035
+47 0.000153686924022622
+48 0.00015152819105424
+49 0.000147435945109464
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000168723199749365
+1 0.000121316545119043
+2 0.000139715615659952
+3 0.000167820006026886
+4 0.000166235186043195
+5 0.000151694388478063
+6 0.000142214397783391
+7 0.000185922952368855
+8 0.000182522038812749
+9 0.000171875624801032
+10 0.000143617726280354
+11 0.000153613014845178
+12 0.000141314725624397
+13 0.000135650640004314
+14 0.000141496522701345
+15 0.000153323839185759
+16 0.000189434009371325
+17 0.000180278337211348
+18 0.000136958944494836
+19 0.000176782632479444
+20 0.00014681245374959
+21 0.000182606789167039
+22 0.00014644005568698
+23 0.000142814198625274
+24 0.000140399031806737
+25 0.000169363876921125
+26 0.000163736374815926
+27 0.000141338212415576
+28 0.000151332846144214
+29 0.000191913015441969
+30 0.000144266028655693
+31 0.000172120751813054
+32 0.000180957489646971
+33 0.000154449720866978
+34 0.000149525338201784
+35 0.00015226511459332
+36 0.000167442136444151
+37 0.000173520791577175
+38 0.000192198203876615
+39 0.000140097326948307
+40 0.000131655193399638
+41 0.000133247594931163
+42 0.000127250255900435
+43 0.00019255249935668
+44 0.000167353311553597
+45 0.000129972235299647
+46 0.000138385337777436
+47 0.000165838631801307
+48 0.000182700052391738
+49 0.000222595976083539
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.005454478444193261, Learning_Process.pdf b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.005454478444193261, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..2b7fe815cbb72fd2ebd3f4bf489cfc10910cb3fb
Binary files /dev/null and b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.005454478444193261, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.005454478444193261, Learning_Process.tex b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.005454478444193261, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..bc39194f7cf6bc641982225feb9ed77b62d8bd4c
--- /dev/null
+++ b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.005454478444193261, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.60046495212796e-08, ymax=0.000283072954566044,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000138448041980155
+1 1.76803241629386e-05
+2 7.33071829017717e-06
+3 2.85698638435861e-06
+4 1.56352496105683e-06
+5 1.12181328404404e-06
+6 9.01535486264038e-07
+7 7.56884730890306e-07
+8 6.19647835264914e-07
+9 5.6799160574883e-07
+10 4.77332491755078e-07
+11 4.13947986999119e-07
+12 3.90792905591297e-07
+13 3.66760218639683e-07
+14 3.03479112062632e-07
+15 2.7299850557938e-07
+16 2.66323581854522e-07
+17 2.47325573354829e-07
+18 2.36463407077281e-07
+19 2.17356884490982e-07
+20 1.97773360355313e-07
+21 1.77777721432903e-07
+22 1.71861174180776e-07
+23 1.5833688848943e-07
+24 1.54088780845996e-07
+25 1.53387318846399e-07
+26 1.5367692185464e-07
+27 1.31062776631552e-07
+28 1.26189320326375e-07
+29 1.27605360944472e-07
+30 1.1968764113135e-07
+31 1.06580756664698e-07
+32 1.06323426507515e-07
+33 9.73279696836471e-08
+34 9.76326717250231e-08
+35 9.79811503043493e-08
+36 9.48176364090614e-08
+37 8.57659756547946e-08
+38 8.56702584428604e-08
+39 8.05880659981995e-08
+40 8.30877908697403e-08
+41 7.68634436099092e-08
+42 7.55772973093372e-08
+43 7.35620204750376e-08
+44 7.04428728681705e-08
+45 7.48315400755928e-08
+46 6.97919446679407e-08
+47 6.51204175028397e-08
+48 6.91169219635412e-08
+49 6.54694858326366e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000145692480145954
+1 1.9432884073467e-05
+2 8.61917396832723e-06
+3 2.4431026304228e-06
+4 1.86175566341262e-06
+5 1.54029919485765e-06
+6 8.46325576731033e-07
+7 8.25692438866099e-07
+8 7.23713981187757e-07
+9 5.14967268827604e-07
+10 4.82339544305432e-07
+11 4.77798380416061e-07
+12 3.49294651869059e-07
+13 3.11382621021039e-07
+14 4.67447392793474e-07
+15 3.69936856259301e-07
+16 2.67002690179652e-07
+17 2.32207000294693e-07
+18 2.15182154761351e-07
+19 1.76810658558679e-07
+20 1.98786125338302e-07
+21 1.60768266255218e-07
+22 1.50035205592758e-07
+23 1.70026197565676e-07
+24 1.88623914709751e-07
+25 1.45073826729458e-07
+26 1.2503247148743e-07
+27 1.30059788716608e-07
+28 1.14794879380042e-07
+29 1.0430404984163e-07
+30 9.35066069018831e-08
+31 1.22782893186013e-07
+32 1.07097484658425e-07
+33 1.21480070447433e-07
+34 7.64437046996136e-08
+35 1.14540149809272e-07
+36 8.355385006098e-08
+37 1.02711240401732e-07
+38 9.24025229664949e-08
+39 1.13301588555714e-07
+40 5.77554502001476e-08
+41 7.08739591459562e-08
+42 6.60537580188247e-08
+43 7.78295969894316e-08
+44 7.05912057696878e-08
+45 7.43053263363436e-08
+46 5.41288223132597e-08
+47 7.33911420525146e-08
+48 6.07143988418102e-08
+49 5.98608025370595e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000139812778797932
+1 0.000137534763780423
+2 0.000144224686664529
+3 0.000138154078740627
+4 0.000136131813633256
+5 0.000137448485475034
+6 0.000139993499033153
+7 0.000137259252369404
+8 0.000138258314109407
+9 0.000139873212901875
+10 0.000140414340421557
+11 0.000135942726046778
+12 0.000136528280563653
+13 0.000139625728479587
+14 0.000141989250550978
+15 0.00014130691124592
+16 0.000138338436954655
+17 0.000137845549033955
+18 0.000139335490530357
+19 0.000140525095048361
+20 0.000138648319989443
+21 0.000141504962812178
+22 0.000141291267937049
+23 0.000138222865643911
+24 0.000137749288114719
+25 0.000137281735078432
+26 0.000141061158501543
+27 0.000133834240841679
+28 0.00013896198652219
+29 0.000138072078698315
+30 0.000136202084831893
+31 0.000138680406962521
+32 0.0001397900050506
+33 0.000137147289933637
+34 0.00013911712449044
+35 0.000139336159918457
+36 0.000142612683703192
+37 0.000136381830088794
+38 0.000139918207423761
+39 0.000137557450216264
+40 0.000139878102345392
+41 0.000140966265462339
+42 0.000138369578053243
+43 0.000140984251629561
+44 0.000139441443025135
+45 0.000138175746542402
+46 0.00014123399159871
+47 0.000135701251565479
+48 0.000139702431624755
+49 0.000141654061735608
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000135967042297125
+1 0.00015438167611137
+2 9.49227978708223e-05
+3 0.000150164734805003
+4 0.000166241836268455
+5 0.000155758185428567
+6 0.000134208865347318
+7 0.00015643255028408
+8 0.000154493871377781
+9 0.000134900634293444
+10 0.000130216343677603
+11 0.00016872794367373
+12 0.000164641925948672
+13 0.000134933739900589
+14 0.000119088173960336
+15 0.000122724144603126
+16 0.000147488695802167
+17 0.000153735993080772
+18 0.000139662151923403
+19 0.00012993831478525
+20 0.000147030092193745
+21 0.000120065036753658
+22 0.000118765514343977
+23 0.000149089988553897
+24 0.000152723732753657
+25 0.000156802285346203
+26 0.000123570483992808
+27 0.00018829049076885
+28 0.000142291843076237
+29 0.000151603846461512
+30 0.000166316734976135
+31 0.000145644677104428
+32 0.000138047369546257
+33 0.000158941416884772
+34 0.000138125775265507
+35 0.000137718481710181
+36 0.000109387634438463
+37 0.000163761171279475
+38 0.000134523375891149
+39 0.000152619002619758
+40 0.000132804081658833
+41 0.000122698518680409
+42 0.000147854269016534
+43 0.000123686899314635
+44 0.000139088369905949
+45 0.000143607627251185
+46 0.000122469864436425
+47 0.000172828280483373
+48 0.000135075752041303
+49 0.000120907672680914
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.0056157471209569, Learning_Process.pdf b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.0056157471209569, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..d8c7367a36eb6d16befee3b65197ba6c96426a8e
Binary files /dev/null and b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.0056157471209569, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.0056157471209569, Learning_Process.tex b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.0056157471209569, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..b3725a431abe70d87f93639565b2f92acd77ab76
--- /dev/null
+++ b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.0056157471209569, Learning_Process.tex	
@@ -0,0 +1,266 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.03,0.97)},
+  anchor=north west,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.24982088995617e-08, ymax=0.0301792568404733,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000134552712552249
+1 1.86309116543271e-05
+2 6.01214651396731e-06
+3 4.61353374703322e-06
+4 1.64696473348158e-06
+5 1.12457018985879e-06
+6 8.3450885313141e-07
+7 7.26238340575946e-07
+8 5.8871125929727e-07
+9 5.64853678497457e-07
+10 4.61872275536734e-07
+11 4.15060725345029e-07
+12 3.53193655655559e-07
+13 3.03088143027708e-07
+14 2.7846735406456e-07
+15 2.71137508889296e-07
+16 2.3950298100317e-07
+17 2.21165308289528e-07
+18 2.03666061793228e-07
+19 1.94331960301497e-07
+20 1.81818066380401e-07
+21 0.0137824444100261
+22 1.45478693980294e-07
+23 1.44074903118963e-07
+24 1.44001916169145e-07
+25 1.34827828901507e-07
+26 1.24964955716678e-07
+27 1.17476510297365e-07
+28 1.17011992983862e-07
+29 1.06373491348677e-07
+30 9.84605037501751e-08
+31 1.00290435511852e-07
+32 9.67916236049859e-08
+33 9.3266301348649e-08
+34 1.80615643330384e-07
+35 8.23968591134872e-08
+36 7.82271882826535e-08
+37 8.03242699021212e-08
+38 0.0158921647816896
+39 6.87288874701153e-08
+40 7.23656583545562e-08
+41 6.68525927949304e-08
+42 6.90422297111581e-08
+43 6.05145231702409e-08
+44 6.6320971825462e-08
+45 5.66991609218803e-08
+46 6.12937469668395e-08
+47 6.01494249963253e-08
+48 5.25263210704452e-08
+49 5.24072447660728e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000134638117742725
+1 2.32745460380102e-05
+2 9.99627081910148e-06
+3 1.94849849322054e-06
+4 1.1932610277654e-06
+5 9.79948822532606e-07
+6 9.06642014797399e-07
+7 7.64466619784798e-07
+8 6.40066389223648e-07
+9 4.80226788113214e-07
+10 4.45779022584247e-07
+11 3.92225246059752e-07
+12 3.28317895537111e-07
+13 3.23036118743403e-07
+14 2.28997677709231e-07
+15 2.21236447828232e-07
+16 6.04541014581628e-07
+17 2.08723079708761e-07
+18 1.9957658992098e-07
+19 1.70572604929475e-07
+20 1.60171097718376e-07
+21 1.66546712421223e-07
+22 1.68722735338633e-07
+23 1.35777781906654e-07
+24 1.45518512795206e-07
+25 1.10520964824445e-07
+26 1.06204154803891e-07
+27 1.24806661006005e-07
+28 1.44081795383499e-07
+29 1.18787902181339e-07
+30 1.01581797196104e-07
+31 8.53299724212775e-08
+32 9.66636335419935e-08
+33 8.32710540521475e-08
+34 7.47516111232471e-08
+35 8.34340667665856e-08
+36 7.97155763621049e-08
+37 6.52677414336722e-08
+38 7.68947501228467e-08
+39 7.34202529883987e-08
+40 7.19917139235804e-08
+41 6.77482248079286e-08
+42 6.64116939219639e-08
+43 2.05037167688715e-07
+44 5.59651418541307e-08
+45 5.32912736161961e-08
+46 4.59693474397227e-08
+47 4.68913228246493e-08
+48 4.27241495515318e-08
+49 8.27160775429547e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000135556460008956
+1 0.000136281742015854
+2 0.000136357513838448
+3 0.000135711685288697
+4 0.000133020657813177
+5 0.000131715714815073
+6 0.000135627953568473
+7 0.000138860807055607
+8 0.000135531052364968
+9 0.000132151806610636
+10 0.000134320100187324
+11 0.000135507769300602
+12 0.000136515009216964
+13 0.00013344848412089
+14 0.000134621950564906
+15 0.000132214481709525
+16 0.000136596398078837
+17 0.00013485383533407
+18 0.000133716035634279
+19 0.000136434813612141
+20 0.000161106218001805
+21 0.000132971399580128
+22 0.000131435852381401
+23 0.000135407739435323
+24 0.000136995178763755
+25 0.000133900379296392
+26 0.000132657878566533
+27 0.000133076537167653
+28 0.000132856541313231
+29 0.00013546239642892
+30 0.000135194102767855
+31 0.000136192742502317
+32 0.000135900554596446
+33 0.000133364403154701
+34 0.000136418020701967
+35 0.000135138106998056
+36 0.000135371126816608
+37 0.000137197930598632
+38 0.000132983637740836
+39 0.000133247784106061
+40 0.000135489739477634
+41 0.000134060479467735
+42 0.000135911686811596
+43 0.000136411792482249
+44 0.000270593969617039
+45 0.00013476780441124
+46 0.0080219991505146
+47 0.000137067690957338
+48 0.000135396345285699
+49 0.000134325688122772
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000126732993521728
+1 0.00011430154700065
+2 0.000116971415991429
+3 0.000129267718875781
+4 0.000152602311572991
+5 0.000158770009875298
+6 0.000128292842418887
+7 0.000100185163319111
+8 0.000140736694447696
+9 0.00015508767683059
+10 0.000138998395414092
+11 0.000128251995192841
+12 0.00012281202361919
+13 0.000144420366268605
+14 0.000133201887365431
+15 0.000152686770888977
+16 0.00011821147199953
+17 0.00013308045163285
+18 0.000147919156006537
+19 0.000117730422061868
+20 0.000164562006830238
+21 0.000150018837302923
+22 0.000163957563927397
+23 0.000132043220219202
+24 0.000112343834189232
+25 0.000139956275233999
+26 0.000161288771778345
+27 0.000152720866026357
+28 0.000149216837598942
+29 0.000130907792481594
+30 0.000128040017443709
+31 0.000120607532153372
+32 0.00012098893057555
+33 0.00014584134623874
+34 0.00011377133341739
+35 0.00012917431013193
+36 0.000127034421893768
+37 0.000120261393021792
+38 0.000154602050315589
+39 0.000146086778840981
+40 0.000127170380437747
+41 0.000139718686114065
+42 0.000123255696962588
+43 0.000115208116767462
+44 0.000128241299535148
+45 0.000132970671984367
+46 0.000158206938067451
+47 0.000126909304526635
+48 0.000129896405269392
+49 0.000134833841002546
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.005843042086097089, Learning_Process.pdf b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.005843042086097089, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..8aa46286d536a297e0b519f5bcc8ec4dba3c2335
Binary files /dev/null and b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.005843042086097089, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.005843042086097089, Learning_Process.tex b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.005843042086097089, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..86a7c0f3e6fb0bc0afe3b049619832d412a2ad02
--- /dev/null
+++ b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.005843042086097089, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.15906078467854e-08, ymax=0.000292633652448127,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000140669857501052
+1 1.9158547729603e-05
+2 4.95596032124013e-06
+3 2.36466439673677e-06
+4 1.56799285377929e-06
+5 1.20236427392229e-06
+6 9.2238326487859e-07
+7 7.41981295959704e-07
+8 6.30200759133004e-07
+9 5.43663418284268e-07
+10 4.97358087159228e-07
+11 4.39896297166342e-07
+12 3.72370209333894e-07
+13 3.18970990065282e-07
+14 2.97000099180877e-07
+15 2.80424444554228e-07
+16 2.38865851542869e-07
+17 2.51016359698042e-07
+18 2.19418183178277e-07
+19 2.0184917559618e-07
+20 1.77967990566685e-07
+21 1.69380726333657e-07
+22 1.96035671251593e-07
+23 1.98049605160122e-07
+24 1.4102703005392e-07
+25 1.26955299606379e-07
+26 1.24874873108638e-07
+27 1.25443250453827e-07
+28 1.11162741234239e-07
+29 1.07217601907905e-07
+30 1.02287536662971e-07
+31 1.07947911942574e-07
+32 9.71572902130902e-08
+33 8.64257501120846e-08
+34 8.70051763968149e-08
+35 8.44790264409312e-08
+36 7.68780665794111e-08
+37 9.00039225371074e-08
+38 7.60566933877271e-08
+39 7.56863300921395e-08
+40 7.19705894880462e-08
+41 7.21285502436331e-08
+42 6.20156086483803e-08
+43 6.67846578039644e-08
+44 6.35377688240624e-08
+45 5.93489453137863e-08
+46 5.81367025631607e-08
+47 6.13608932553689e-08
+48 5.62456499153541e-08
+49 5.49584662223879e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000175210181623697
+1 1.24717871585744e-05
+2 4.34576941188425e-06
+3 2.59725311479997e-06
+4 1.57446709181386e-06
+5 9.65733875091246e-07
+6 8.67892595124431e-07
+7 6.56484019145864e-07
+8 6.87295539592014e-07
+9 5.30127749698295e-07
+10 5.33901868493558e-07
+11 3.59136862471132e-07
+12 3.31537989950448e-07
+13 4.90271531816688e-07
+14 2.79477035292075e-07
+15 2.99797534353274e-07
+16 3.33084784642779e-07
+17 2.23248818542743e-07
+18 1.7838038957052e-07
+19 1.54736696345026e-07
+20 1.59312321557081e-07
+21 1.61392321729181e-07
+22 1.62019873073405e-07
+23 1.41579974410888e-07
+24 1.21818288789655e-07
+25 1.62005605375271e-07
+26 1.77272070800427e-07
+27 1.01689217046896e-07
+28 1.11579630868164e-07
+29 9.9110359030874e-08
+30 1.04953052471046e-07
+31 8.49686543347161e-08
+32 1.02328662876516e-07
+33 1.00523813273412e-07
+34 6.87916426045376e-08
+35 9.24125984624879e-08
+36 9.78299681264616e-08
+37 8.45533847382285e-08
+38 7.51420117239832e-08
+39 7.83297693374152e-08
+40 6.40512212157773e-08
+41 7.59147127382676e-08
+42 7.42608321502303e-08
+43 6.4433507418471e-08
+44 6.34824104395193e-08
+45 5.87961714870744e-08
+46 6.64975488007258e-08
+47 6.66565327378521e-08
+48 4.7848192963329e-08
+49 5.33465041030468e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000141166965477169
+1 0.000145059399073943
+2 0.000144490040838718
+3 0.000145549347507767
+4 0.000144842415465973
+5 0.000142601915285923
+6 0.000142555378261022
+7 0.000143093842780218
+8 0.000142837365274318
+9 0.00014645274495706
+10 0.00014491577167064
+11 0.000143409124575555
+12 0.000144525125506334
+13 0.000148459861520678
+14 0.000144396311952733
+15 0.000144864141475409
+16 0.000143406126881018
+17 0.000142658362165093
+18 0.000141775977681391
+19 0.000144918099977076
+20 0.000140810414450243
+21 0.000146600228617899
+22 0.000142564793350175
+23 0.000147291109897196
+24 0.000145838726893999
+25 0.000144247940625064
+26 0.000143219920573756
+27 0.000144443562021479
+28 0.000144053585245274
+29 0.000148230959894136
+30 0.000147241444210522
+31 0.000138151663122699
+32 0.000144788005854934
+33 0.000143817291245796
+34 0.000142815028084442
+35 0.00014543482393492
+36 0.000142978591611609
+37 0.00014180647849571
+38 0.000145391983096488
+39 0.000143655459396541
+40 0.000145059515489265
+41 0.000141202894155867
+42 0.00014468579320237
+43 0.000142558885272592
+44 0.000143362398375757
+45 0.000145884187077172
+46 0.000144824822200462
+47 0.000147430822835304
+48 0.000145454920129851
+49 0.000141767523018643
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.00016951777797658
+1 0.000134257250465453
+2 0.000144293866469525
+3 0.000131445733131841
+4 0.000136235525133088
+5 0.000157349815708585
+6 0.000158295893925242
+7 0.000150526553625241
+8 0.000156060123117641
+9 0.000120667180453893
+10 0.000133669644128531
+11 0.000150375184603035
+12 0.000138002884341404
+13 0.000106382998637855
+14 0.000142151096952148
+15 0.000137482056743465
+16 0.000150260413647629
+17 0.000155223184265196
+18 0.000163507153047249
+19 0.000135906331706792
+20 0.000173146952874959
+21 0.000122169934911653
+22 0.000156134134158492
+23 0.00011519934196258
+24 0.000128393992781639
+25 0.000140255928272381
+26 0.000148859093314968
+27 0.000140017989906482
+28 0.000144607503898442
+29 0.000106873245385941
+30 0.000116967225039843
+31 0.000193204265087843
+32 0.000137361974339001
+33 0.000143839672091417
+34 0.000157980117364787
+35 0.000134436282678507
+36 0.000154318098793738
+37 0.000165510209626518
+38 0.000130020009237342
+39 0.000145049823913723
+40 0.000135052876430564
+41 0.000171254272572696
+42 0.000140054602525197
+43 0.000157615504576825
+44 0.000145674726809375
+45 0.00012717604113277
+46 0.000137474678922445
+47 0.000112901339889504
+48 0.00013024483632762
+49 0.000169218037626706
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.005903779361135834, Learning_Process.pdf b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.005903779361135834, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..2c4c2de51a5c73b7b8946c05756565d89d593927
Binary files /dev/null and b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.005903779361135834, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.005903779361135834, Learning_Process.tex b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.005903779361135834, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..b95b44ffd88a8c97738e9c3d86fd898bfe8e9ca3
--- /dev/null
+++ b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.005903779361135834, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.19986850638941e-08, ymax=0.000270125664524756,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000137111710500903
+1 1.83311949513154e-05
+2 4.78611354992609e-06
+3 2.38767574956e-06
+4 1.44174316574208e-06
+5 1.04705964076857e-06
+6 7.75451155732299e-07
+7 6.5239959212704e-07
+8 5.28499072061095e-07
+9 4.59659673879287e-07
+10 3.91241997022007e-07
+11 3.37597441557591e-07
+12 3.1359903118755e-07
+13 2.68813892034814e-07
+14 2.5219154053957e-07
+15 2.26647586032414e-07
+16 2.17019120896111e-07
+17 2.03268399445733e-07
+18 1.84135600989066e-07
+19 1.66000162948876e-07
+20 1.72174807744341e-07
+21 1.54740291691269e-07
+22 1.35143395141313e-07
+23 1.31189906937834e-07
+24 1.29198781451123e-07
+25 1.22985355233141e-07
+26 1.15033799374942e-07
+27 1.06725345005998e-07
+28 1.01773089511425e-07
+29 9.94167592693884e-08
+30 9.04303618654012e-08
+31 8.4927819443692e-08
+32 8.56472723853585e-08
+33 8.17934449059976e-08
+34 8.26892261329704e-08
+35 7.77894655357159e-08
+36 7.08107918967471e-08
+37 7.09014571498301e-08
+38 6.47655866714558e-08
+39 6.63609469597759e-08
+40 7.14062622364509e-08
+41 6.51066898171848e-08
+42 6.12698443092086e-08
+43 6.13876380839429e-08
+44 5.57981998383639e-08
+45 5.68114053578483e-08
+46 5.36905062631376e-08
+47 5.129204083687e-08
+48 5.10317690327611e-08
+49 4.8262119634046e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000108898144389968
+1 2.33757218666142e-05
+2 4.0249974517792e-06
+3 2.13939233617566e-06
+4 1.40071767873451e-06
+5 1.23331108170532e-06
+6 9.61242562880216e-07
+7 5.81090887408209e-07
+8 5.15773933784658e-07
+9 4.40046278527007e-07
+10 4.13212973171539e-07
+11 3.18306575763927e-07
+12 3.05552674717546e-07
+13 2.86178618580379e-07
+14 2.6311371925658e-07
+15 2.73282552143428e-07
+16 2.24977611651411e-07
+17 1.91848684494289e-07
+18 2.06087634069263e-07
+19 1.86245216582392e-07
+20 1.15992762061978e-07
+21 1.22338477126505e-07
+22 1.47323163446345e-07
+23 1.37090523821826e-07
+24 1.17577613423236e-07
+25 8.83521877881321e-08
+26 1.17363974538875e-07
+27 1.08937733500625e-07
+28 1.06320726445119e-07
+29 9.8412435534101e-08
+30 7.73042785340294e-08
+31 9.70471347727653e-08
+32 7.08289036310816e-08
+33 8.24262684773203e-08
+34 9.27403220885026e-08
+35 8.2115541033545e-08
+36 7.08107208424735e-08
+37 6.06292829274935e-08
+38 7.65686465342696e-08
+39 7.23172846051057e-08
+40 6.29338430258031e-08
+41 6.897015936147e-08
+42 6.13781807601299e-08
+43 5.99027814018882e-08
+44 5.59886323969749e-08
+45 5.27179757625618e-08
+46 5.10366611194968e-08
+47 6.07022130338919e-08
+48 5.59933361898857e-08
+49 5.7050421276017e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000130410146084614
+1 0.000133060602820478
+2 0.000135703681735322
+3 0.000133845547679812
+4 0.000130805725348182
+5 0.000131060223793611
+6 0.000132520188344643
+7 0.00013135772314854
+8 0.000136543982080184
+9 0.000132891276734881
+10 0.000131089516798966
+11 0.000130707790958695
+12 0.000134409463498741
+13 0.000136712726089172
+14 0.00013116946502123
+15 0.000133171735797077
+16 0.000131698820041493
+17 0.000131229651742615
+18 0.000134189889649861
+19 0.000135911861434579
+20 0.000133375928271562
+21 0.00013516895705834
+22 0.000135179929202422
+23 0.000132820016006008
+24 0.000135982103529386
+25 0.000135457710712217
+26 0.000131630513351411
+27 0.000134709640406072
+28 0.00013405540084932
+29 0.000134793415782042
+30 0.000135498950839974
+31 0.000134358182549477
+32 0.000133031629957259
+33 0.000134884190629236
+34 0.000134365487610921
+35 0.000135099689941853
+36 0.000132737346575595
+37 0.000134207657538354
+38 0.00013374314585235
+39 0.000132118308101781
+40 0.000131108332425356
+41 0.000128657295135781
+42 0.000131527282064781
+43 0.000136128219310194
+44 0.000129806838231161
+45 0.000134964822791517
+46 0.000134129819343798
+47 0.000133939058287069
+48 0.000134411122417077
+49 0.000134462243295275
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000157621296239085
+1 0.000133372246637009
+2 0.000115189483040012
+3 0.000133956855279393
+4 0.000158531256602146
+5 0.00015362493286375
+6 0.000141729949973524
+7 0.000149257539305836
+8 0.000107856896647718
+9 0.000138956456794403
+10 0.000151047468534671
+11 0.00015420226554852
+12 0.000127547013107687
+13 0.000106615436379798
+14 0.000151151180034503
+15 0.000135240377858281
+16 0.000152036984218284
+17 0.000153186338138767
+18 0.000127615829114802
+19 0.000113177076855209
+20 0.000134819158120081
+21 0.000117296367534436
+22 0.000115443974209484
+23 0.0001428139366908
+24 0.000112222856841981
+25 0.000117012175905984
+26 0.000152100023115054
+27 0.000121646582556423
+28 0.000124274229165167
+29 0.000119643344078213
+30 0.000117847288493067
+31 0.00012738881923724
+32 0.00013726697943639
+33 0.000118975425721146
+34 0.000126564074889757
+35 0.000118315241707023
+36 0.000136102535179816
+37 0.000124279365991242
+38 0.000127024206449278
+39 0.000146139791468158
+40 0.000153243847307749
+41 0.00017909835150931
+42 0.000147025668411516
+43 0.000105549559521023
+44 0.000165301564265974
+45 0.000123721387353726
+46 0.000127341787447222
+47 0.000124659753055312
+48 0.00012690138828475
+49 0.000124191079521552
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.007804453922187116, Learning_Process.pdf b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.007804453922187116, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..53a069cc39a01c63268055e1377511086ecbbb07
Binary files /dev/null and b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.007804453922187116, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.007804453922187116, Learning_Process.tex b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.007804453922187116, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..137e7b53c682c334b851b19d4594868e1cb41efa
--- /dev/null
+++ b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.007804453922187116, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.89650091764774e-08, ymax=0.000282249716442403,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000150448511703871
+1 9.55903396970825e-06
+2 2.58398858932196e-06
+3 1.35308687276847e-06
+4 9.4209298140413e-07
+5 7.12822497916932e-07
+6 5.41821236765827e-07
+7 4.24732292003682e-07
+8 3.67770752518481e-07
+9 3.04385991967138e-07
+10 2.9844051141481e-07
+11 2.48021223114847e-07
+12 2.22659522819413e-07
+13 1.94976877310182e-07
+14 1.79014591594751e-07
+15 1.61467099246693e-07
+16 1.51515791912971e-07
+17 1.36962171382038e-07
+18 1.2961332629402e-07
+19 1.19072325333036e-07
+20 1.08400413978416e-07
+21 1.05715542986218e-07
+22 9.64095860922498e-08
+23 9.58990824528883e-08
+24 9.09970978568708e-08
+25 8.22335834982368e-08
+26 7.76709683236732e-08
+27 7.67819727798269e-08
+28 7.06526606109037e-08
+29 6.81016629755504e-08
+30 6.67219310912515e-08
+31 6.42744240053617e-08
+32 6.10717449944786e-08
+33 5.66883819885788e-08
+34 5.57296679914998e-08
+35 5.17281293355154e-08
+36 5.21342897741306e-08
+37 5.04114225918784e-08
+38 4.96297118957045e-08
+39 4.59786413387064e-08
+40 4.4842948909718e-08
+41 4.60631994769756e-08
+42 4.07919706901794e-08
+43 4.22130170818491e-08
+44 4.45790746539387e-08
+45 4.09434477433024e-08
+46 3.7337763103551e-08
+47 3.71676769361784e-08
+48 3.70145158967716e-08
+49 3.27239249031663e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000132729430333711
+1 1.00829847724526e-05
+2 3.10468385578133e-06
+3 2.09923473448725e-06
+4 1.21671814667934e-06
+5 5.9872428437302e-07
+6 6.10092172337318e-07
+7 4.09750754215565e-07
+8 3.15461647915072e-07
+9 3.58836416580743e-07
+10 2.88418789295974e-07
+11 2.4798367803669e-07
+12 2.27015831910649e-07
+13 2.03292401579347e-07
+14 1.7451978351346e-07
+15 1.53717749640236e-07
+16 1.42766509725334e-07
+17 1.49438875496344e-07
+18 1.29752137922878e-07
+19 1.24951426982989e-07
+20 1.34029178866513e-07
+21 1.03473666968057e-07
+22 1.17218142747788e-07
+23 9.61745669769698e-08
+24 8.26701906930793e-08
+25 9.66462536666768e-08
+26 8.57824034028454e-08
+27 6.24005807026151e-08
+28 8.04941890919508e-08
+29 7.10049690155756e-08
+30 6.8992314083971e-08
+31 4.74993626653486e-08
+32 7.65079093412169e-08
+33 7.5176522784659e-08
+34 5.68073410533998e-08
+35 5.55311423511284e-08
+36 4.44986980596696e-08
+37 5.30178247970525e-08
+38 4.33747899819537e-08
+39 5.45254827954977e-08
+40 5.20267597892143e-08
+41 3.3700285229088e-08
+42 4.29527702294763e-08
+43 3.59928726823e-08
+44 3.81686042771889e-08
+45 3.68541357431695e-08
+46 3.68384114324272e-08
+47 3.26895701618923e-08
+48 2.93508275461818e-08
+49 4.14247232072285e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00015067400818225
+1 0.000149069775943644
+2 0.000148814302519895
+3 0.000150531195686199
+4 0.000148014732985757
+5 0.000149993400555104
+6 0.000147069411468692
+7 0.000150163992657326
+8 0.000144815930980258
+9 0.000149623781908303
+10 0.000148030419950373
+11 0.000148010833072476
+12 0.000147832368384115
+13 0.000147875500260852
+14 0.00015210521814879
+15 0.000146178412251174
+16 0.000147772560012527
+17 0.000147509970702231
+18 0.000147747414303012
+19 0.000149758387124166
+20 0.000145762125612237
+21 0.000150216510519385
+22 0.000150226143887267
+23 0.000152471111505292
+24 0.000150024920003489
+25 0.000147978906170465
+26 0.000150361272972077
+27 0.000149579660501331
+28 0.000145881364005618
+29 0.000149083149153739
+30 0.000145810336107388
+31 0.000149434607010335
+32 0.000148707607877441
+33 0.000149934989167377
+34 0.00015050868387334
+35 0.0001509616849944
+36 0.00014939573884476
+37 0.000150260646478273
+38 0.000148621053085662
+39 0.000146370744914748
+40 0.000145204627187923
+41 0.00014887799625285
+42 0.000149704370414838
+43 0.000149259300087579
+44 0.000152217544382438
+45 0.000152628475916572
+46 0.000152637454448268
+47 0.000150453153764829
+48 0.000146188991493545
+49 0.000150720064993948
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000134442350827157
+1 0.000144742691190913
+2 0.000148299906868488
+3 0.00013432429113891
+4 0.00015211763093248
+5 0.000140458563691936
+6 0.000163720571435988
+7 0.000137573297251947
+8 0.000182375384611078
+9 0.0001421168417437
+10 0.000155315647134557
+11 0.000157608577865176
+12 0.00015575201541651
+13 0.000156774811330251
+14 0.000118292380648199
+15 0.000170005630934611
+16 0.000156456706463359
+17 0.000157638613018207
+18 0.00015813868958503
+19 0.000139020063215867
+20 0.000174658955074847
+21 0.00013553311873693
+22 0.00013512589794118
+23 0.000116337578219827
+24 0.00013881160703022
+25 0.000155324160004966
+26 0.000131812557810917
+27 0.000139304043841548
+28 0.000173866501427256
+29 0.000143859113450162
+30 0.000173865308170207
+31 0.000140806238050573
+32 0.000148943305248395
+33 0.000135961672640406
+34 0.000131594279082492
+35 0.000129019361338578
+36 0.000140375646878965
+37 0.000134169575176202
+38 0.000148559440276586
+39 0.000171998006408103
+40 0.000181884242920205
+41 0.0001460879429942
+42 0.000139292751555331
+43 0.00014265270147007
+44 0.000115999093395658
+45 0.000111827765067574
+46 0.000114085640234407
+47 0.000132071174448356
+48 0.000174915592651814
+49 0.000127756196889095
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.008357741271152847, Learning_Process.pdf b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.008357741271152847, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..1dcb17350bea1192b1f16bcb23ee685573126692
Binary files /dev/null and b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.008357741271152847, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.008357741271152847, Learning_Process.tex b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.008357741271152847, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..dc5ff8cd2d2bdff4c0dd1b161724eff6b183eb68
--- /dev/null
+++ b/models_URWF/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.008357741271152847, Learning_Process.tex	
@@ -0,0 +1,256 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=8.00633024330054e-06, ymax=0.00285505710386624,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000141995420563035
+1 4.08313862862997e-05
+2 3.94379312638193e-05
+3 0.00218578055500984
+4 0.000274177844403312
+5 0.000107319778180681
+6 7.02912075212225e-05
+7 5.99319500906859e-05
+8 4.89817684865557e-05
+9 4.63236356154084e-05
+10 4.24364661739673e-05
+11 3.86338688258547e-05
+12 3.54225448973011e-05
+13 3.28320384141989e-05
+14 3.15425677399617e-05
+15 2.95073623419739e-05
+16 2.83943827525945e-05
+17 2.69895244855434e-05
+18 2.60891756624915e-05
+19 2.4722954549361e-05
+20 2.45854298555059e-05
+21 2.38611009990564e-05
+22 2.24373743549222e-05
+23 2.26041574933333e-05
+24 2.10490106837824e-05
+25 2.01898365048692e-05
+26 2.00648464669939e-05
+27 1.9554077880457e-05
+28 1.86850666068494e-05
+29 1.79531052708626e-05
+30 1.82179046532838e-05
+31 1.75423683685949e-05
+32 1.72313175426098e-05
+33 1.70121729752282e-05
+34 1.61432890308788e-05
+35 1.59741466632113e-05
+36 1.55818397615803e-05
+37 1.52958709804807e-05
+38 1.51171298057307e-05
+39 1.52034272105084e-05
+40 1.46989013956045e-05
+41 1.44484065458528e-05
+42 1.45298663483118e-05
+43 1.41541568154935e-05
+44 1.35378759296145e-05
+45 1.36524131448823e-05
+46 1.35556638269918e-05
+47 1.31160786622786e-05
+48 1.23356940093799e-05
+49 1.24153075375943e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000132336921524256
+1 1.73115968209459e-05
+2 2.20782585529378e-05
+3 0.000217160588363186
+4 0.000139594034408219
+5 0.000127711638924666
+6 6.99782685842365e-05
+7 4.4380303734215e-05
+8 6.94432746968232e-05
+9 4.29353967774659e-05
+10 3.33565221808385e-05
+11 3.3588039514143e-05
+12 3.16368932544719e-05
+13 3.41885133821052e-05
+14 2.81356242339825e-05
+15 3.04173972835997e-05
+16 2.88253013422946e-05
+17 2.82425080513349e-05
+18 2.43160211539362e-05
+19 2.68268395302584e-05
+20 1.87361038115341e-05
+21 1.79806429514429e-05
+22 2.27485088544199e-05
+23 1.75611930899322e-05
+24 2.27676227950724e-05
+25 2.37320437008748e-05
+26 1.91230265045306e-05
+27 1.86996003321838e-05
+28 2.13410839933204e-05
+29 2.27061646000948e-05
+30 1.68660535564413e-05
+31 1.80602637556149e-05
+32 1.65371930052061e-05
+33 1.47407308759284e-05
+34 1.89358252100646e-05
+35 1.69128907145932e-05
+36 1.74642300407868e-05
+37 1.74145861819852e-05
+38 1.60628242156236e-05
+39 1.26044487842591e-05
+40 1.44274117701571e-05
+41 1.51769590956974e-05
+42 1.19362657642341e-05
+43 1.26245749925147e-05
+44 1.53050041262759e-05
+45 1.29349591588834e-05
+46 1.0457833923283e-05
+47 1.25534834296559e-05
+48 1.7586353351362e-05
+49 1.48802237163181e-05
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000142661170684732
+1 0.00014241824101191
+2 0.000142663411679678
+3 0.000141826050821692
+4 0.000135978261823766
+5 0.000138897754368372
+6 0.000141709300805815
+7 0.000139733427204192
+8 0.000136928341817111
+9 0.000141743235872127
+10 0.000142293691169471
+11 0.000142117380164564
+12 0.000141644064569846
+13 0.000143004508572631
+14 0.000140752817969769
+15 0.000138735180371441
+16 0.000141795826493762
+17 0.000140522955916822
+18 0.000142264645546675
+19 0.000139962037792429
+20 0.000140511125209741
+21 0.00014472111070063
+22 0.00014262949116528
+23 0.000141557728056796
+24 0.000137918483233079
+25 0.000139428419061005
+26 0.000138546820380725
+27 0.000143071418278851
+28 0.000144020901643671
+29 0.000141290729516186
+30 0.000140293326694518
+31 0.000138966541271657
+32 0.00013975880574435
+33 0.000142355987918563
+34 0.000138505143695511
+35 0.000137475086376071
+36 0.000142917648190632
+37 0.000134268484544009
+38 0.000135437148855999
+39 0.000142362841870636
+40 0.000143547222251073
+41 0.000138302028062753
+42 0.000142395248985849
+43 0.000137126888148487
+44 0.000142134420457296
+45 0.000140155461849645
+46 0.000141878743306734
+47 0.000142120217788033
+48 0.000142070508445613
+49 0.000143021839903668
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000125505699543282
+1 0.000127617458929308
+2 0.000127169536426663
+3 0.000133470035507344
+4 0.000184440315933898
+5 0.000159871502546594
+6 0.000134260189952329
+7 0.000150491861859336
+8 0.000177225141669624
+9 0.000133800800540484
+10 0.000131488137412816
+11 0.000131377630168572
+12 0.000132791814394295
+13 0.000122015124361496
+14 0.000142836317536421
+15 0.000160612195031717
+16 0.00012990775576327
+17 0.000141096810693853
+18 0.000128212879644707
+19 0.000146186255733483
+20 0.000143648823723197
+21 0.000104289552837145
+22 0.000124578160466626
+23 0.000134123998577707
+24 0.000166229510796256
+25 0.00015318593068514
+26 0.000161846386617981
+27 0.000118995740194805
+28 0.00011122342402814
+29 0.000137678740429692
+30 0.000145482263178565
+31 0.000158832015586086
+32 0.000151385305798613
+33 0.000126861006719992
+34 0.000160958894412033
+35 0.000173009699210525
+36 0.000123056277516298
+37 0.000197429399122484
+38 0.000188468839041889
+39 0.000132776374812238
+40 0.00011514600191731
+41 0.00016379875887651
+42 0.000128036175738089
+43 0.000172565603861585
+44 0.000128845233120956
+45 0.000145497862831689
+46 0.00013445655349642
+47 0.000127775929286145
+48 0.000130306449136697
+49 0.000122028359328397
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0017910411890174017, Learning_Process.pdf b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0017910411890174017, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..2115f4256be366816cd161ee06a991b2a22036ae
Binary files /dev/null and b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0017910411890174017, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0017910411890174017, Learning_Process.tex b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0017910411890174017, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..08f63423a4467c004b202bb1999bf06ba4b92409
--- /dev/null
+++ b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0017910411890174017, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.24690699491678e-06, ymax=0.000193988752607586,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000115803435619455
+1 2.25188632612117e-05
+2 1.08119902506587e-05
+3 7.55399378249422e-06
+4 5.50802315046894e-06
+5 4.61950639873976e-06
+6 3.82409643862047e-06
+7 3.36774587594846e-06
+8 3.19862351716438e-06
+9 3.20615208693198e-06
+10 2.93199104817177e-06
+11 2.66138908955327e-06
+12 2.48593391916074e-06
+13 2.43663953369833e-06
+14 2.28682802116964e-06
+15 2.40886288338515e-06
+16 2.37764061239432e-06
+17 2.24242194235558e-06
+18 2.2269812234299e-06
+19 2.18783497984987e-06
+20 2.10779739973077e-06
+21 2.23336087401549e-06
+22 2.15464206121396e-06
+23 2.2305182483251e-06
+24 2.27058080781717e-06
+25 2.29096599468903e-06
+26 2.09136192097503e-06
+27 2.10883445106447e-06
+28 2.1871605895285e-06
+29 2.09424342756392e-06
+30 2.13166458706837e-06
+31 2.06970571525744e-06
+32 2.01620355255727e-06
+33 2.03102854356985e-06
+34 1.95300867744663e-06
+35 1.97186000150396e-06
+36 2.05786523110874e-06
+37 2.07931384466065e-06
+38 2.08003075385932e-06
+39 2.0280576791265e-06
+40 2.24870746023953e-06
+41 2.10120970223215e-06
+42 2.01324291992933e-06
+43 2.02731621357088e-06
+44 2.0666579985118e-06
+45 1.9545941540855e-06
+46 2.12442409974756e-06
+47 2.04366801881406e-06
+48 2.04983916773926e-06
+49 2.15295403904747e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000119297437777277
+1 2.71204826276517e-05
+2 9.01538351172348e-06
+3 7.36778019927442e-06
+4 5.21047104484751e-06
+5 3.69598205907096e-06
+6 3.95065080738277e-06
+7 3.71699547940807e-06
+8 3.45368766829779e-06
+9 2.78281527243962e-06
+10 3.26387271343265e-06
+11 2.98234931506158e-06
+12 2.47649018092488e-06
+13 2.12709574043402e-06
+14 2.89880949821963e-06
+15 1.95696134142054e-06
+16 2.36017194765736e-06
+17 1.93919845514756e-06
+18 2.59462194662774e-06
+19 2.51424944508472e-06
+20 2.74342346529011e-06
+21 1.82392432179768e-06
+22 2.28168141802598e-06
+23 2.58496743299474e-06
+24 1.90226717222686e-06
+25 1.75482637132518e-06
+26 2.30409432333545e-06
+27 1.75959689840965e-06
+28 1.8497593146094e-06
+29 2.19470416595868e-06
+30 1.82757719358051e-06
+31 1.74995477664197e-06
+32 2.04716707230546e-06
+33 1.90852711057232e-06
+34 1.986593588299e-06
+35 2.52769837061351e-06
+36 1.56843964305153e-06
+37 2.04732691599929e-06
+38 2.09212748814025e-06
+39 1.72771706274943e-06
+40 2.71540625362832e-06
+41 2.71047088062915e-06
+42 2.18505374505185e-06
+43 2.09204745260649e-06
+44 2.34132630794193e-06
+45 2.16903094951704e-06
+46 2.66403139903559e-06
+47 2.00228146240988e-06
+48 1.74361196059181e-06
+49 1.76195612766605e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00011666672071442
+1 0.000114899958134629
+2 0.000116629671538249
+3 0.000117643576231785
+4 0.000116024137241766
+5 0.00011805331450887
+6 0.000117044372018427
+7 0.000115521608677227
+8 0.000117518735351041
+9 0.000115802649816032
+10 0.000119910786452238
+11 0.00011548817565199
+12 0.000113627895188984
+13 0.000112508314487059
+14 0.000114645758003462
+15 0.000115957278467249
+16 0.000118129653856158
+17 0.000114271439088043
+18 0.000118620693683624
+19 0.000117262039566413
+20 0.000118463394755963
+21 0.000113706446427386
+22 0.000119253454613499
+23 0.000116739727673121
+24 0.000117005649372004
+25 0.000114392576506361
+26 0.000117439863970503
+27 0.000113817339297384
+28 0.000117563162348233
+29 0.000117321222205646
+30 0.000115443057438824
+31 0.000119158401503228
+32 0.000116967836220283
+33 0.00011472956975922
+34 0.000115060851385351
+35 0.00011795773752965
+36 0.000117072158900555
+37 0.000114691341877915
+38 0.000117605442937929
+39 0.000116113224066794
+40 0.000112122645077761
+41 0.000115560222184286
+42 0.000114378999569453
+43 0.000113961003080476
+44 0.000116759911179543
+45 0.000117864459753036
+46 0.000115982868010178
+47 0.000112749403342605
+48 0.000120007323857863
+49 0.000114202353870496
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000113071720988955
+1 0.000129543172079138
+2 0.000113494985271245
+3 0.000102518977655564
+4 0.000116769071610179
+5 9.9868222605437e-05
+6 0.000110460554424208
+7 0.000121030076115858
+8 0.000103069309261627
+9 0.000118348551040981
+10 8.31611469038762e-05
+11 0.000122956800623797
+12 0.000138880117447115
+13 0.000147740604006685
+14 0.000129984458908439
+15 0.000120661512482911
+16 9.95741720544174e-05
+17 0.000135200403747149
+18 9.72428824752569e-05
+19 0.000108763961179648
+20 9.6369389211759e-05
+21 0.00013898233009968
+22 9.05890192370862e-05
+23 0.000111548288259655
+24 0.000112023182737175
+25 0.00013467539974954
+26 0.00010292639490217
+27 0.000139742667670362
+28 0.000106050305475947
+29 0.000107495769043453
+30 0.000123153513413854
+31 9.35974312596954e-05
+32 0.000115334420115687
+33 0.000128395535284653
+34 0.000128028099425137
+35 0.000100966230093036
+36 0.000108326938061509
+37 0.000130886721308343
+38 0.000103060760011431
+39 0.000118739437311888
+40 0.00015422074648086
+41 0.000123316116514616
+42 0.000135016394779086
+43 0.000134741931105964
+44 0.000109253756818362
+45 0.000100706900411751
+46 0.00011706561781466
+47 0.000147317943628877
+48 8.39939675643109e-05
+49 0.000136751841637306
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0031878787399540515, Learning_Process.pdf b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0031878787399540515, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..c2b0cdafabf2f26ec9daba01459585a3b3db3b7d
Binary files /dev/null and b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0031878787399540515, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0031878787399540515, Learning_Process.tex b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0031878787399540515, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..aac47bf1512cd242dd3e4101b7bfe70a217519d2
--- /dev/null
+++ b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0031878787399540515, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.58858623846384e-06, ymax=0.000187061069964429,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000124286918435246
+1 6.57790806144476e-05
+2 2.80374279100215e-05
+3 1.4760606973141e-05
+4 1.04850505522336e-05
+5 8.24087237560889e-06
+6 6.82420568409725e-06
+7 6.08757090958534e-06
+8 5.47677109352662e-06
+9 5.09708706886158e-06
+10 4.74266335004359e-06
+11 5.1470110520313e-06
+12 4.38666847912828e-06
+13 4.18291074311128e-06
+14 3.90641707781469e-06
+15 3.74865226149268e-06
+16 3.57023122887767e-06
+17 3.42798443853098e-06
+18 3.2741702398198e-06
+19 3.31863930114196e-06
+20 3.23319932249433e-06
+21 3.20880076287722e-06
+22 3.12785118694592e-06
+23 3.11803637487174e-06
+24 2.99730277220078e-06
+25 2.97154520012555e-06
+26 2.9748530323559e-06
+27 2.9351240300457e-06
+28 2.87232069240417e-06
+29 2.93536072604184e-06
+30 2.75372008218255e-06
+31 2.75706292995892e-06
+32 2.80294511867396e-06
+33 2.77977164842014e-06
+34 2.72218426289328e-06
+35 2.71167345999856e-06
+36 2.93648918159306e-06
+37 2.7052399218519e-06
+38 2.58839099842589e-06
+39 2.55542613558646e-06
+40 2.58356931226444e-06
+41 2.57285569205123e-06
+42 2.54454948844796e-06
+43 2.66843721874466e-06
+44 2.55077293331851e-06
+45 2.54602741733834e-06
+46 2.55441045737825e-06
+47 2.56298221756879e-06
+48 2.59516104961222e-06
+49 2.48816695602727e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000150608088006265
+1 5.65035516046919e-05
+2 2.59587923210347e-05
+3 1.64451867021853e-05
+4 1.07519590528682e-05
+5 7.55795281293103e-06
+6 7.04365402270923e-06
+7 5.8354680732009e-06
+8 5.65755181014538e-06
+9 4.63780179416062e-06
+10 4.86547287437133e-06
+11 4.20566311731818e-06
+12 4.8376236918557e-06
+13 4.04463435188518e-06
+14 4.04977254220285e-06
+15 3.86514011552208e-06
+16 3.85117982659722e-06
+17 3.78099571207713e-06
+18 3.49064589499903e-06
+19 3.05193498206791e-06
+20 3.73462421521253e-06
+21 3.07563891510654e-06
+22 2.63190372606914e-06
+23 3.44999602930329e-06
+24 3.72587646779721e-06
+25 2.98008330901212e-06
+26 2.72699412562361e-06
+27 2.64020968643308e-06
+28 3.32529862134834e-06
+29 2.6576990421745e-06
+30 3.14642716148228e-06
+31 2.54522706200078e-06
+32 2.96568623525673e-06
+33 2.47694697463885e-06
+34 2.97190649689583e-06
+35 2.84095403912943e-06
+36 2.79666528513189e-06
+37 2.59063358498679e-06
+38 2.83917142951395e-06
+39 2.93901939585339e-06
+40 3.0099968171271e-06
+41 2.922135308836e-06
+42 2.82455948763527e-06
+43 1.97308554561459e-06
+44 2.55753025157901e-06
+45 2.64158302343276e-06
+46 2.52119184551702e-06
+47 2.33348850997572e-06
+48 2.3960617454577e-06
+49 2.73233467851242e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000126474216813222
+1 0.00012591530685313
+2 0.000127185994642787
+3 0.00012685582623817
+4 0.000128121042507701
+5 0.000124654150567949
+6 0.000128452607896179
+7 0.000129315187223256
+8 0.00012718366633635
+9 0.000129775420646183
+10 0.00012455765681807
+11 0.000126959232147783
+12 0.000128303741803393
+13 0.000127510458696634
+14 0.000128957617562264
+15 0.000127249310025945
+16 0.000126312967040576
+17 0.000129399675643072
+18 0.00012766063446179
+19 0.00012820030678995
+20 0.000125883292639628
+21 0.000129663880215958
+22 0.000129313484649174
+23 0.000125980310258456
+24 0.000126778249978088
+25 0.000124849088024348
+26 0.000129041829495691
+27 0.000128263141959906
+28 0.000127389284898527
+29 0.000127263760077767
+30 0.000127527600852773
+31 0.000126697283121757
+32 0.000126463099149987
+33 0.000126830098452047
+34 0.000127658815472387
+35 0.000126534490846097
+36 0.000126930506667122
+37 0.000125868420582265
+38 0.000127710547531024
+39 0.000125952399685048
+40 0.000129360123537481
+41 0.000127372317365371
+42 0.000125338265206665
+43 0.000128190004033968
+44 0.000124496858916245
+45 0.000125932638184167
+46 0.000127051142044365
+47 0.000125133490655571
+48 0.000126312937936746
+49 0.000129114283481613
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000129048668895848
+1 0.000132956061861478
+2 0.000122642406495288
+3 0.00012854955275543
+4 0.000118828167614993
+5 0.000145457554026507
+6 0.0001122321918956
+7 0.000104815488157328
+8 0.000125762409879826
+9 0.000101268618891481
+10 0.000148252205690369
+11 0.000126283717690967
+12 0.000114520174975041
+13 0.00012306630378589
+14 0.000110027896880638
+15 0.000122354627819732
+16 0.000133466863189824
+17 0.000106984887679573
+18 0.000118853444291744
+19 0.000114332840894349
+20 0.000135013877297752
+21 0.000103694204881322
+22 0.000108404623460956
+23 0.000136216069222428
+24 0.000131379609229043
+25 0.00014530963380821
+26 0.00010827045480255
+27 0.000114967886474915
+28 0.000124498445075005
+29 0.000123592515592463
+30 0.00012140328908572
+31 0.000129083506180905
+32 0.000131537177367136
+33 0.000129633976030163
+34 0.00012078823056072
+35 0.000129217616631649
+36 0.000127807274111547
+37 0.000133377310703509
+38 0.000122154568089172
+39 0.00013638696691487
+40 0.000104724735138007
+41 0.000123312493087724
+42 0.000143415294587612
+43 0.000117459021566901
+44 0.000148868275573477
+45 0.000136814356665127
+46 0.000125143793411553
+47 0.000144138903124258
+48 0.000132475790451281
+49 0.000106490006146487
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.005013566600213275, Learning_Process.pdf b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.005013566600213275, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..421c8ef86b1097368567e9d010f7a9a505245813
Binary files /dev/null and b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.005013566600213275, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.005013566600213275, Learning_Process.tex b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.005013566600213275, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..a5b6e35d2c5a1eb112218928124a19fe9ecb14b4
--- /dev/null
+++ b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.005013566600213275, Learning_Process.tex	
@@ -0,0 +1,256 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.81518270577493e-06, ymax=0.00167998060774585,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000158541617565788
+1 0.000783038325607777
+2 9.53620328800753e-05
+3 3.8469868741231e-05
+4 2.66848546743859e-05
+5 2.01999064302072e-05
+6 0.000153455242980272
+7 1.43069764817483e-05
+8 1.24710759337177e-05
+9 1.13026153485407e-05
+10 1.01243622339098e-05
+11 9.26048051042017e-06
+12 8.37837251310702e-06
+13 7.9821793406154e-06
+14 7.31250520402682e-06
+15 6.69760947857867e-06
+16 6.22060224486631e-06
+17 6.01784586251597e-06
+18 5.75636022404069e-06
+19 5.62305785933859e-06
+20 5.28700729773846e-06
+21 5.1341344260436e-06
+22 4.7609055400244e-06
+23 4.91497667098884e-06
+24 4.67645668322803e-06
+25 4.45869545728783e-06
+26 4.38002007285831e-06
+27 4.24120798925287e-06
+28 4.20028936787276e-06
+29 4.02160048906808e-06
+30 3.85983321393724e-06
+31 3.89869273931254e-06
+32 3.74178603124165e-06
+33 3.5744762953982e-06
+34 3.619143171818e-06
+35 3.65774235433491e-06
+36 3.52897268385277e-06
+37 3.46800743500353e-06
+38 3.38833842761233e-06
+39 3.46914271176502e-06
+40 3.2186026146519e-06
+41 3.24456368616666e-06
+42 3.2651194032951e-06
+43 3.20717663271353e-06
+44 3.21476090903161e-06
+45 3.12725023832172e-06
+46 3.0792095913057e-06
+47 3.15129750561027e-06
+48 3.10559289573575e-06
+49 2.91827291221125e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.00012326124124229
+1 0.00123159703798592
+2 0.000256542465649545
+3 3.89817578252405e-05
+4 2.13443690881832e-05
+5 1.94435706362128e-05
+6 1.68916285474552e-05
+7 1.26420873129973e-05
+8 1.21733328342088e-05
+9 1.18266225399566e-05
+10 1.03958154795691e-05
+11 8.62440629134653e-06
+12 9.36367996473564e-06
+13 5.52916981177987e-06
+14 6.67037556922878e-06
+15 7.43014015824883e-06
+16 8.24776270746952e-06
+17 6.75719502396532e-06
+18 6.33497757007717e-06
+19 4.94260257255519e-06
+20 5.91397429161589e-06
+21 5.12578571942868e-06
+22 6.74727698424249e-06
+23 3.84976465284126e-06
+24 4.41994507127674e-06
+25 4.55290728496038e-06
+26 4.44013130618259e-06
+27 4.67851077701198e-06
+28 3.73246143681172e-06
+29 3.94117887481116e-06
+30 4.8550400606473e-06
+31 3.82110101782018e-06
+32 4.30492718805908e-06
+33 5.12079623149475e-06
+34 3.87591080652783e-06
+35 3.24216284752765e-06
+36 3.82660027753445e-06
+37 3.63754588761367e-06
+38 3.82138159693568e-06
+39 3.99532927986002e-06
+40 4.35968058809522e-06
+41 3.73917828255799e-06
+42 3.17168928631872e-06
+43 3.3088761028921e-06
+44 3.08449170915992e-06
+45 3.6024082419317e-06
+46 3.16182308779389e-06
+47 2.47603043135314e-06
+48 2.54010592470877e-06
+49 3.54683766090602e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000158396927872673
+1 0.000156248031998985
+2 0.000158767856191844
+3 0.000155402987729758
+4 0.000157104266691022
+5 0.000154865905642509
+6 0.000154768044012599
+7 0.000153126908116974
+8 0.000158357477630489
+9 0.000155325615196489
+10 0.000156661131768487
+11 0.000154537134221755
+12 0.000156568246893585
+13 0.0001555946219014
+14 0.000155199959408492
+15 0.000157681657583453
+16 0.000153324712300673
+17 0.000153333734488115
+18 0.000158620547153987
+19 0.000154314344399609
+20 0.000154145207488909
+21 0.000157746224431321
+22 0.000154072055011056
+23 0.000151844171341509
+24 0.000158927636221051
+25 0.000148944789543748
+26 0.000151286498294212
+27 0.000151985863340087
+28 0.000157523070811294
+29 0.000156783600687049
+30 0.000152881752001122
+31 0.000152948457980528
+32 0.000149511892232113
+33 0.000155842702952214
+34 0.000157241665874608
+35 0.0001542478275951
+36 0.000151148342411034
+37 0.000153666609548964
+38 0.000156173191498965
+39 0.000155935646034777
+40 0.000155867237481289
+41 0.000152429405716248
+42 0.000155179164721631
+43 0.000156951035023667
+44 0.000153770874021575
+45 0.000153991539264098
+46 0.000155376736074686
+47 0.000155747577082366
+48 0.000157319489517249
+49 0.000157027243403718
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000128274099552073
+1 0.000143730256240815
+2 0.000125887439935468
+3 0.000152079155668616
+4 0.000134644127683714
+5 0.000159075760166161
+6 0.000158427574206144
+7 0.000174016851815395
+8 0.000130156171508133
+9 0.000151696571265347
+10 0.000141940356115811
+11 0.000161911520990543
+12 0.000143673125421628
+13 0.00014936325896997
+14 0.000155550107592717
+15 0.00013320057769306
+16 0.000175414999830537
+17 0.000174508488271385
+18 0.000122717887279578
+19 0.000162404059665278
+20 0.000163999022333883
+21 0.000129034699057229
+22 0.000164353346917778
+23 0.000182503979885951
+24 0.000120190125016961
+25 0.000210423298995011
+26 0.000187535144505091
+27 0.000182980205863714
+28 0.000131699634948745
+29 0.000141425975016318
+30 0.000173648688360117
+31 0.000181299852556549
+32 0.000203753399546258
+33 0.000149743165820837
+34 0.000134172616526484
+35 0.000163666001753882
+36 0.000191620521945879
+37 0.000169460938195698
+38 0.000144205754622817
+39 0.000147271945024841
+40 0.000146990685607307
+41 0.000176241344888695
+42 0.000152404070831835
+43 0.000136726099299267
+44 0.000165764693520032
+45 0.000162396841915324
+46 0.000151189902680926
+47 0.000147578219184652
+48 0.000136273796670139
+49 0.000138618444907479
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0057940422645145545, Learning_Process.pdf b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0057940422645145545, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..7a82f8089df3afb491ccce2507821bead412d2c2
Binary files /dev/null and b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0057940422645145545, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0057940422645145545, Learning_Process.tex b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0057940422645145545, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..3e94a4d1fcca39a7b0a1eec7941f7ce44f6f2a70
--- /dev/null
+++ b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0057940422645145545, Learning_Process.tex	
@@ -0,0 +1,268 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.03,0.97)},
+  anchor=north west,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.18651772638792e-07, ymax=1.16017798274969e+25,
+ymode=log,
+ytick style={color=black},
+ytick={1e-11,1e-07,0.001,10,100000,1000000000,10000000000000,1e+17,1e+21,1e+25,1e+29,1e+33},
+yticklabels={
+  \(\displaystyle {10^{-11}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{1}}\),
+  \(\displaystyle {10^{5}}\),
+  \(\displaystyle {10^{9}}\),
+  \(\displaystyle {10^{13}}\),
+  \(\displaystyle {10^{17}}\),
+  \(\displaystyle {10^{21}}\),
+  \(\displaystyle {10^{25}}\),
+  \(\displaystyle {10^{29}}\),
+  \(\displaystyle {10^{33}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000137081471621059
+1 0.00137152103707194
+2 0.000219875408220105
+3 8.61510852701031e-05
+4 4.12137560488191e-05
+5 3.14298049488571e-05
+6 2.47478965320624e-05
+7 2.01163074962096e-05
+8 1.75680033862591e-05
+9 1.58588845806662e-05
+10 1.40537831612164e-05
+11 1.25667111205985e-05
+12 1.17003637569724e-05
+13 1.07055684566149e-05
+14 1.02807553048478e-05
+15 9.26642951526446e-06
+16 8.65391120896675e-06
+17 8.20633249531966e-06
+18 7.49589480619761e-06
+19 7.31283807908767e-06
+20 6.98339181326446e-06
+21 6.763749752281e-06
+22 6.47893830318935e-06
+23 6.09458948019892e-06
+24 6.01285546508734e-06
+25 5.69564826946589e-06
+26 5.64107449463336e-06
+27 5.40995097253472e-06
+28 5.14929115524865e-06
+29 4.97340579386218e-06
+30 4.9587438297749e-06
+31 4.75688466394786e-06
+32 4.71319435746409e-06
+33 4.62616617369349e-06
+34 4.53231814390165e-06
+35 4.39933910456602e-06
+36 4.28097018811968e-06
+37 4.14548094340716e-06
+38 4.09237827625475e-06
+39 4.04462934966432e-06
+40 4.0655745578988e-06
+41 3.94349353882717e-06
+42 3.84518534701783e-06
+43 3.76379284716677e-06
+44 1
+45 1
+46 1
+47 1
+48 1
+49 1
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000158228169311769
+1 0.00117032323032618
+2 0.000291343516437337
+3 7.20313328201883e-05
+4 3.85711282433476e-05
+5 2.36551695707021e-05
+6 2.20097335841274e-05
+7 2.43024569499539e-05
+8 1.93829600902973e-05
+9 1.37515371534391e-05
+10 1.40718766488135e-05
+11 1.3126476915204e-05
+12 1.12719562821439e-05
+13 1.07344530988485e-05
+14 9.01557723409496e-06
+15 8.97675909072859e-06
+16 9.22415529203136e-06
+17 7.26430289432756e-06
+18 9.41791586228646e-06
+19 7.73341162130237e-06
+20 6.88727459419169e-06
+21 5.57466000827844e-06
+22 5.76681486563757e-06
+23 6.66392452330911e-06
+24 4.86354110762477e-06
+25 5.72618682781467e-06
+26 4.57916075902176e-06
+27 4.80470180264092e-06
+28 5.17300759383943e-06
+29 5.65318669032422e-06
+30 4.59796683571767e-06
+31 4.90069714942365e-06
+32 4.24380641561584e-06
+33 4.01511852032854e-06
+34 4.55386680187075e-06
+35 4.14240776080987e-06
+36 4.08983169108978e-06
+37 4.32275282946648e-06
+38 4.06563867727527e-06
+39 4.41190741184982e-06
+40 3.37579854203796e-06
+41 3.67669963452499e-06
+42 4.02333307647496e-06
+43 3.91060848414782e-06
+44 3.93634783558512e+23
+45 4.07776626820411e+23
+46 2.8032796392876e+23
+47 2.56052949447684e+23
+48 2.73775388600523e+23
+49 3.52954776930791e+23
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000138672505272552
+1 0.000140329342684709
+2 0.000139443858643062
+3 0.000137391354655847
+4 0.000137689334223978
+5 0.000137337585329078
+6 0.00013974608737044
+7 0.00014314244617708
+8 0.00014078502135817
+9 0.000138930801767856
+10 0.000139763636980206
+11 0.000137260038172826
+12 0.00014019850641489
+13 0.000138961710035801
+14 0.000141707670991309
+15 0.000142484699608758
+16 0.000140796255436726
+17 0.000138339906698093
+18 0.000134353977045976
+19 0.000139797368319705
+20 0.000138532719574869
+21 0.000138214702019468
+22 0.000142035787575878
+23 0.000138036062708125
+24 0.000139901443617418
+25 0.000138626608531922
+26 0.000141177617479116
+27 0.000138614574098028
+28 0.00013783980102744
+29 0.000137124792672694
+30 0.000141019045258872
+31 0.000137386625283398
+32 0.000138402028824203
+33 0.00013724974996876
+34 0.000139182957354933
+35 0.000139969924930483
+36 0.000139302690513432
+37 0.000135331196361221
+38 0.000137764363898896
+39 0.000141142270877026
+40 0.000139053139719181
+41 0.000139710085932165
+42 0.000137350987643003
+43 0.000140349759021774
+44 0.000138733958010562
+45 0.00013691520143766
+46 0.000139040814246982
+47 0.000135990514536388
+48 0.000137906696181744
+49 0.000139612166094594
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000146612786920741
+1 0.00012967293150723
+2 0.000137647337396629
+3 0.000151634012581781
+4 0.000152817738126032
+5 0.000155059431563132
+6 0.000133880210341886
+7 0.000104595346783753
+8 0.000124138590763323
+9 0.00014244818885345
+10 0.000135272071929649
+11 0.000156654030433856
+12 0.000129091189592145
+13 0.000142170800245367
+14 0.000115532478957903
+15 0.000108444946818054
+16 0.000121058605145663
+17 0.000148046587128192
+18 0.000182299525476992
+19 0.000136503294925205
+20 0.000147930171806365
+21 0.000148138482472859
+22 0.000114564252726268
+23 0.000149241808685474
+24 0.000133183595607989
+25 0.000144798745168373
+26 0.000120574528409634
+27 0.000145772690302692
+28 0.000152939566760324
+29 0.000162408890901133
+30 0.00011995954264421
+31 0.000153937144204974
+32 0.00014873880718369
+33 0.000157085232785903
+34 0.000137627124786377
+35 0.000132521061459556
+36 0.000138398114359006
+37 0.000174079192220233
+38 0.000152876047650352
+39 0.000119750620797276
+40 0.000141719036037102
+41 0.000135532070999034
+42 0.000154244204168208
+43 0.000127761144540273
+44 0.000143964469316415
+45 0.000158098337124102
+46 0.000137452763738111
+47 0.000169634862686507
+48 0.000150851599755697
+49 0.000133481618831865
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.005858372121226006, Learning_Process.pdf b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.005858372121226006, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..38ce30dd7ec340a2a0b59e8af182fc73555def77
Binary files /dev/null and b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.005858372121226006, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.005858372121226006, Learning_Process.tex b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.005858372121226006, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..329924035ed7cbc2eaf3b6df0392848a79b27e5b
--- /dev/null
+++ b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.005858372121226006, Learning_Process.tex	
@@ -0,0 +1,263 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.13081319897151e-06, ymax=0.00104316139774858,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00016067000979092
+1 0.000764857570175081
+2 5.24457136634737e-05
+3 2.04522239073412e-05
+4 1.24913512991043e-05
+5 9.3207745521795e-06
+6 1.6590534869465e-05
+7 2.33938117162324e-05
+8 1.13587975647533e-05
+9 7.33721753931604e-06
+10 5.97848838879145e-06
+11 4.9409682105761e-06
+12 4.43104045189102e-06
+13 4.07475181418704e-06
+14 3.68885366697214e-06
+15 3.47515879184357e-06
+16 3.29077784044784e-06
+17 3.11818735099223e-06
+18 2.99667362924083e-06
+19 2.98093414130562e-06
+20 2.86924682768586e-06
+21 2.83979557025305e-06
+22 2.68655139734619e-06
+23 2.63348761109228e-06
+24 2.58157410826243e-06
+25 2.5742763227754e-06
+26 2.43416343437275e-06
+27 2.39893233811017e-06
+28 2.35399443226925e-06
+29 2.37540757552779e-06
+30 2.31739795708563e-06
+31 2.23161669055116e-06
+32 2.22301150643034e-06
+33 2.26407541958906e-06
+34 2.15206478060281e-06
+35 2.23956703848671e-06
+36 2.1391281279648e-06
+37 2.12593181458942e-06
+38 2.11925180337857e-06
+39 2.08897881748271e-06
+40 2.14472765946994e-06
+41 2.13906650969875e-06
+42 2.02859496312158e-06
+43 2.0395593764988e-06
+44 2.00040790332423e-06
+45 1.96056089407648e-06
+46 1.99552391677571e-06
+47 1.92822767530743e-06
+48 1.99349528884341e-06
+49 1.95994357454765e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000142664372106083
+1 0.00067940924782306
+2 6.29941350780427e-05
+3 1.73891294252826e-05
+4 1.13160585897276e-05
+5 9.3028693299857e-06
+6 1.43909855978563e-05
+7 2.86382219201187e-05
+8 1.15627826744458e-05
+9 6.91602554070414e-06
+10 4.37794733443297e-06
+11 5.06892047269503e-06
+12 4.35319634561893e-06
+13 3.81347740585625e-06
+14 4.18110721511766e-06
+15 3.98792099076672e-06
+16 3.41319764629588e-06
+17 3.65590744877409e-06
+18 3.41559825756121e-06
+19 2.62644130089029e-06
+20 2.48079936682188e-06
+21 2.16106377592951e-06
+22 2.46850572693802e-06
+23 2.19503249354602e-06
+24 2.39141786551045e-06
+25 2.42026612795598e-06
+26 2.51572259912791e-06
+27 2.45073078986024e-06
+28 2.57006468018517e-06
+29 2.15923137147911e-06
+30 2.13830662687542e-06
+31 2.64502159552649e-06
+32 2.32346951634099e-06
+33 1.71546491856134e-06
+34 2.63683591583685e-06
+35 1.82560074790672e-06
+36 2.32889010476356e-06
+37 2.13682687899563e-06
+38 1.92415882338537e-06
+39 2.32708111980173e-06
+40 1.54227495841042e-06
+41 2.52840277426003e-06
+42 2.29215379476955e-06
+43 1.93713276530616e-06
+44 2.31253943638876e-06
+45 2.41851239479729e-06
+46 2.3002328362054e-06
+47 2.56387647823431e-06
+48 2.1533148810704e-06
+49 1.9914398308174e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000158983952132985
+1 0.000160502866492607
+2 0.0001547837164253
+3 0.000161477015353739
+4 0.000156375841470435
+5 0.000160811716341414
+6 0.000156164998770691
+7 0.000159621995408088
+8 0.000159924849867821
+9 0.000157736838445999
+10 0.00015570227697026
+11 0.000154684370500036
+12 0.000162658208864741
+13 0.000158783470396884
+14 0.000159288640134037
+15 0.00016177020734176
+16 0.000161778836627491
+17 0.000161544856382534
+18 0.000154731096699834
+19 0.00016100041102618
+20 0.000157873873831704
+21 0.000151265019667335
+22 0.000156265028635971
+23 0.000160353010869585
+24 0.000155054993228987
+25 0.000157449612743221
+26 0.000161610791110434
+27 0.000158742404892109
+28 0.000158641298185103
+29 0.000153216766193509
+30 0.000158918366651051
+31 0.000156846625031903
+32 0.00015757986693643
+33 0.000160937779583037
+34 0.000158476264914498
+35 0.000156599635374732
+36 0.000161537434905767
+37 0.000158364753588103
+38 0.000158267837832682
+39 0.000159402377903461
+40 0.000162098265718669
+41 0.000157849426614121
+42 0.000160285751917399
+43 0.00016058147593867
+44 0.00015911555965431
+45 0.000161194286192767
+46 0.000156534762936644
+47 0.00016129991854541
+48 0.00016199192032218
+49 0.00019224762218073
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000156207126565278
+1 0.00014280945470091
+2 0.00019437177979853
+3 0.000135051916004159
+4 0.000181218405487016
+5 0.000138322138809599
+6 0.000185253258678131
+7 0.000157133705215529
+8 0.000152865934069268
+9 0.000169932027347386
+10 0.000188313890248537
+11 0.000195636093849316
+12 0.000125312391901389
+13 0.000194360429304652
+14 0.00015279911167454
+15 0.000133720968733542
+16 0.00013295016833581
+17 0.000143718425533734
+18 0.000193454383406788
+19 0.000138979594339617
+20 0.000169178529176861
+21 0.000225617201067507
+22 0.000179120674147271
+23 0.000148118284414522
+24 0.000193328756722622
+25 0.000172934756847098
+26 0.000144331803312525
+27 0.000158270806423388
+28 0.000158633600221947
+29 0.000208756027859636
+30 0.000160749172209762
+31 0.000178913949639536
+32 0.000178047383087687
+33 0.000148727936903015
+34 0.000161879317602143
+35 0.000180999006261118
+36 0.000135628783027641
+37 0.000161376097821631
+38 0.00016447615053039
+39 0.000153516797581688
+40 0.000132029163069092
+41 0.00016831218090374
+42 0.000146041667903773
+43 0.00014628867211286
+44 0.000159054194227792
+45 0.00013863857020624
+46 0.000179168680915609
+47 0.000139942494570278
+48 0.000168189901160076
+49 0.000167271195095964
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006054322765089383, Learning_Process.pdf b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006054322765089383, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..7dfec334ba9798c4ae1920b080dd116386caa685
Binary files /dev/null and b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006054322765089383, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006054322765089383, Learning_Process.tex b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006054322765089383, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..1d43a1bbc9a3ad8902390362caa88c3f6d5ca504
--- /dev/null
+++ b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006054322765089383, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.20053693746807e-06, ymax=0.000397616202237356,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000116033996164333
+1 0.000224529401748441
+2 8.53284072945826e-05
+3 1.64449484145734e-05
+4 1.10092032628017e-05
+5 7.94034258433385e-06
+6 6.57932196190814e-06
+7 5.60437592866947e-06
+8 5.00574060424697e-06
+9 4.55376630270621e-06
+10 4.15368731410126e-06
+11 3.84344275516924e-06
+12 3.56512236976414e-06
+13 3.30831790051889e-06
+14 3.03978208648914e-06
+15 2.90446473627526e-06
+16 2.83297072201094e-06
+17 2.72125066658191e-06
+18 2.63582637671789e-06
+19 2.57683041127166e-06
+20 2.53067310040933e-06
+21 2.44870784626983e-06
+22 2.36492792282661e-06
+23 2.3213046915771e-06
+24 2.23976235247392e-06
+25 2.19871981244069e-06
+26 2.23881488636835e-06
+27 2.21816367229621e-06
+28 2.14362262340728e-06
+29 2.18280115404923e-06
+30 2.06711638384149e-06
+31 2.0169597974018e-06
+32 2.02519117920019e-06
+33 1.98185330191336e-06
+34 1.99717737814353e-06
+35 1.95916936718277e-06
+36 1.98015027308429e-06
+37 1.99093074115808e-06
+38 1.91316712516709e-06
+39 1.87208684110374e-06
+40 1.89021682217572e-06
+41 1.83133158770943e-06
+42 1.90268667665805e-06
+43 1.87099283266434e-06
+44 1.86267845947441e-06
+45 1.83384884167026e-06
+46 1.8320545223105e-06
+47 1.83591748736944e-06
+48 1.78333789335738e-06
+49 1.79474000105984e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000133066874695942
+1 0.000305432040477172
+2 0.000107767111330759
+3 1.75295699591516e-05
+4 8.9059712991002e-06
+5 7.91114143794402e-06
+6 6.2987223827804e-06
+7 6.23291634838097e-06
+8 4.63460628452594e-06
+9 4.06106619266211e-06
+10 3.68641713066609e-06
+11 3.32691138282826e-06
+12 2.98465624837263e-06
+13 2.9949628697068e-06
+14 3.19960827255272e-06
+15 3.31851765622559e-06
+16 2.74397098110057e-06
+17 2.48585342887964e-06
+18 2.41128486777598e-06
+19 2.34408662436181e-06
+20 2.256785364807e-06
+21 2.5228216600226e-06
+22 2.5005442694237e-06
+23 2.27286614062905e-06
+24 2.35034235629428e-06
+25 2.43331419369497e-06
+26 1.86470754215406e-06
+27 2.00988802134816e-06
+28 1.84661735147529e-06
+29 2.05886931325949e-06
+30 1.9901203813788e-06
+31 2.13820567296352e-06
+32 1.84281475412718e-06
+33 2.19732146433671e-06
+34 2.06287950277328e-06
+35 2.1665136955562e-06
+36 1.70882265138061e-06
+37 1.56287774188968e-06
+38 1.88830654224148e-06
+39 2.1030148218415e-06
+40 2.15737941289262e-06
+41 2.29744432544976e-06
+42 1.94471681425057e-06
+43 1.94790641216969e-06
+44 1.74035051259125e-06
+45 2.10034590963915e-06
+46 1.6116609913297e-06
+47 1.97303711502173e-06
+48 1.89295576547011e-06
+49 1.67353607594123e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000117165887786541
+1 0.000116607297968585
+2 0.000114843875053339
+3 0.000117043571663089
+4 0.000116065501060802
+5 0.000115757655294146
+6 0.0001188461392303
+7 0.000119300893857144
+8 0.000119284850370605
+9 0.000114642294647638
+10 0.000116478870040737
+11 0.000117287811008282
+12 0.000117749033961445
+13 0.000117419673188124
+14 0.000116754286864307
+15 0.00012014450476272
+16 0.000118315459985752
+17 0.000116384726425167
+18 0.000120892691484187
+19 0.000118331656267401
+20 0.000116956813144498
+21 0.000117576775664929
+22 0.000119178039312828
+23 0.00011929636093555
+24 0.00011952481145272
+25 0.00011904177517863
+26 0.00011916601943085
+27 0.000117674630018882
+28 0.000116507908387575
+29 0.00011822854867205
+30 0.000117908930405974
+31 0.000118530515464954
+32 0.000118708820082247
+33 0.000116474839160219
+34 0.00011731187987607
+35 0.000117644456622656
+36 0.000120713593787514
+37 0.000118146592285484
+38 0.000118381845823023
+39 0.000117397707072087
+40 0.000118845666293055
+41 0.000117391798994504
+42 0.00011613940296229
+43 0.000118329691758845
+44 0.00011747918324545
+45 0.000115228118374944
+46 0.000113761139800772
+47 0.000120100259664468
+48 0.000117109142593108
+49 0.000119081494631246
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000121734272397589
+1 0.000128710511489771
+2 0.000140652395202778
+3 0.000122431956697255
+4 0.000132833942188881
+5 0.000133928188006394
+6 0.000106334780866746
+7 0.000103608705103397
+8 0.00010359073348809
+9 0.000144496952998452
+10 0.000128998872241937
+11 0.000119987293146551
+12 0.000115771443233825
+13 0.00012100981984986
+14 0.000128006344311871
+15 9.69502507359721e-05
+16 0.000113711343146861
+17 0.000130685933982022
+18 9.04723056009971e-05
+19 0.000112944995635189
+20 0.000129723222926259
+21 0.000120940967462957
+22 0.000103232057881542
+23 0.000102501224318985
+24 9.96387243503705e-05
+25 0.000107823638245463
+26 0.000106315303128213
+27 0.00011613208334893
+28 0.000127447099657729
+29 0.000110659180791117
+30 0.000114340531581547
+31 0.000109591106593143
+32 0.000105097307823598
+33 0.000130262211314403
+34 0.000121677316201385
+35 0.000117198702355381
+36 8.90652081579901e-05
+37 0.000112760906631593
+38 0.000114216076326557
+39 0.000121091434266418
+40 0.000110129643871915
+41 0.000122322802781127
+42 0.000131395441712812
+43 0.000111636334622744
+44 0.000120126460387837
+45 0.000141503594932146
+46 0.000151550470036454
+47 9.27790242712945e-05
+48 0.000123070480185561
+49 0.000103477643278893
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006295739043023765, Learning_Process.pdf b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006295739043023765, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..3d6bbdd4e6ce27876507eda76032fe90c04509ed
Binary files /dev/null and b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006295739043023765, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006295739043023765, Learning_Process.tex b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006295739043023765, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..7d0396292129c70d41c31fb65e5bd697789c5fee
--- /dev/null
+++ b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006295739043023765, Learning_Process.tex	
@@ -0,0 +1,256 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=5.54376214818397e-06, ymax=0.00181698193059917,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00013801536988467
+1 0.000234623337746598
+2 0.00135893374681473
+3 0.00016040014452301
+4 9.70370674622245e-05
+5 7.55971705075353e-05
+6 6.34345051366836e-05
+7 5.32972735527437e-05
+8 4.64110962639097e-05
+9 4.09875137847848e-05
+10 3.68344699381851e-05
+11 3.33706120727584e-05
+12 3.04056702589151e-05
+13 2.75958263955545e-05
+14 2.50398679781938e-05
+15 2.40617391682463e-05
+16 2.24929772230098e-05
+17 2.14147858059732e-05
+18 1.96827295440016e-05
+19 1.89911279449007e-05
+20 1.79451071744552e-05
+21 1.69519407791086e-05
+22 1.59147348313127e-05
+23 1.55882262333762e-05
+24 1.51915128299152e-05
+25 1.42527906064061e-05
+26 1.37108454509871e-05
+27 1.31661154227913e-05
+28 1.29458394440007e-05
+29 1.26389995784848e-05
+30 1.22998453662149e-05
+31 1.13581254481687e-05
+32 1.10604987639817e-05
+33 1.12234138214262e-05
+34 1.07720452433568e-05
+35 1.02158719528234e-05
+36 1.00981824289192e-05
+37 9.72730595094617e-06
+38 9.46467753237812e-06
+39 9.502887223789e-06
+40 9.19136618904304e-06
+41 9.10506605578121e-06
+42 8.79238268680638e-06
+43 1.00707366073038e-05
+44 8.44054011395201e-06
+45 8.11752488516504e-06
+46 8.01151782070519e-06
+47 7.86981581768487e-06
+48 7.43706641515018e-06
+49 7.72907878854312e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000132504079374485
+1 0.000152199674630538
+2 0.0013963928213343
+3 0.000115210183139425
+4 0.000108811669633724
+5 7.70215992815793e-05
+6 5.53643512830604e-05
+7 4.96948014188092e-05
+8 4.22049815824721e-05
+9 3.58524739567656e-05
+10 3.15657598548569e-05
+11 2.94636829494266e-05
+12 2.86970989691326e-05
+13 2.77288108918583e-05
+14 3.06823130813427e-05
+15 2.26175325224176e-05
+16 2.37487565755146e-05
+17 1.991469252971e-05
+18 2.1908394046477e-05
+19 1.76872526935767e-05
+20 1.67239541042363e-05
+21 1.85528679139679e-05
+22 1.94038620975334e-05
+23 1.53128039528383e-05
+24 1.25348187793861e-05
+25 1.59225601237267e-05
+26 1.40240072141751e-05
+27 1.45232916111127e-05
+28 1.16950932351756e-05
+29 1.17524705274263e-05
+30 1.12807110781432e-05
+31 1.3500140994438e-05
+32 1.29726713566924e-05
+33 8.3778459156747e-06
+34 1.03605661934125e-05
+35 1.14938147817156e-05
+36 1.04771215774235e-05
+37 1.05434828583384e-05
+38 1.06939023680752e-05
+39 8.05259787739487e-06
+40 8.48930994834518e-06
+41 7.21352580512757e-06
+42 8.47197497932939e-06
+43 8.4879357018508e-06
+44 7.8266375567182e-06
+45 8.79744220583234e-06
+46 8.45513841341017e-06
+47 7.66950779507169e-06
+48 1.04016144177876e-05
+49 8.35452647152124e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000139086929266341
+1 0.000137156283017248
+2 0.000136972201289609
+3 0.0001398830791004
+4 0.000141053533297963
+5 0.000138151226565242
+6 0.000134872228954919
+7 0.000136054164613597
+8 0.000140394273330458
+9 0.000137191789690405
+10 0.000140822230605409
+11 0.000136101094540209
+12 0.000140017073135823
+13 0.00013559362560045
+14 0.000133707668283023
+15 0.000138201023219153
+16 0.000132054337882437
+17 0.000134383502881974
+18 0.000137090275529772
+19 0.000136272006784566
+20 0.000139483745442703
+21 0.000136094895424321
+22 0.000138943083584309
+23 0.000136376082082279
+24 0.000138893708935939
+25 0.000139070878503844
+26 0.000137766124680638
+27 0.000138033312396146
+28 0.000138016272103414
+29 0.00013934462913312
+30 0.000137581911985762
+31 0.000138388248160481
+32 0.000139378258609213
+33 0.000132124856463633
+34 0.000138328832690604
+35 0.000134195375721902
+36 0.000135940848849714
+37 0.000139390074764378
+38 0.000139792944537476
+39 0.00013522439985536
+40 0.000139211872010492
+41 0.00013488381227944
+42 0.000140144489705563
+43 0.000133825422381051
+44 0.00013991330342833
+45 0.000135368056362495
+46 0.000137832408654504
+47 0.000138666378916241
+48 0.000137991111841984
+49 0.00013739442510996
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000122787154396065
+1 0.000139570460305549
+2 0.000139468684210442
+3 0.000116233364678919
+4 0.000104728969745338
+5 0.00013060741184745
+6 0.000158400493091904
+7 0.000153190529090352
+8 0.000112014960905071
+9 0.000140904943691567
+10 0.000108749489299953
+11 0.000149870931636542
+12 0.000117685754958075
+13 0.000155410481966101
+14 0.000170373983564787
+15 0.000129776846733876
+16 0.000183573734830134
+17 0.000163352160598151
+18 0.00013847705849912
+19 0.000150305146235041
+20 0.000117917523311917
+21 0.000150581035995856
+22 0.000123748483019881
+23 0.000141942393383943
+24 0.000128611965919845
+25 0.000123137913760729
+26 0.000135869937366806
+27 0.000128101775771938
+28 0.000133654219098389
+29 0.000120645112474449
+30 0.000134738031192683
+31 0.000128074112581089
+32 0.000119261654617731
+33 0.000183932323125191
+34 0.000130329790408723
+35 0.00016904913354665
+36 0.000151799322338775
+37 0.000119601623737253
+38 0.000112833258754108
+39 0.000156980400788598
+40 0.000122024459415115
+41 0.00015877875557635
+42 0.000116151284601074
+43 0.000172434243722819
+44 0.000116688250273
+45 0.000153328248416074
+46 0.0001334497355856
+47 0.000124363592476584
+48 0.000135803682496771
+49 0.000143100653076544
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006390754996353553, Learning_Process.pdf b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006390754996353553, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..f2821a606a6f9d20e944c5d4ad01f86eff4feb34
Binary files /dev/null and b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006390754996353553, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006390754996353553, Learning_Process.tex b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006390754996353553, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..3b58ec5cb1e3f7d42fae30b2f105b7a7ffe217a1
--- /dev/null
+++ b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006390754996353553, Learning_Process.tex	
@@ -0,0 +1,257 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=4.51898515828726e-06, ymax=0.0671419572457526,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000128746934933588
+1 9.17790675885044e-05
+2 0.0433870144188404
+3 0.0004375938733574
+4 0.000150439256685786
+5 9.82816272880882e-05
+6 7.51513071008958e-05
+7 6.17179903201759e-05
+8 5.43880196346436e-05
+9 4.73338950541802e-05
+10 4.25211583205964e-05
+11 3.84764825867023e-05
+12 3.51692870026454e-05
+13 3.15104480250739e-05
+14 2.98680533887818e-05
+15 2.78252464340767e-05
+16 2.56547500612214e-05
+17 2.44575585384155e-05
+18 2.30698278755881e-05
+19 2.13290459214477e-05
+20 2.042008418357e-05
+21 1.96204709936865e-05
+22 1.85625012818491e-05
+23 1.74818324012449e-05
+24 1.70782004715875e-05
+25 1.63123058882775e-05
+26 1.57114045578055e-05
+27 1.48368562804535e-05
+28 1.45425619848538e-05
+29 1.44215191539843e-05
+30 1.38752166094491e-05
+31 1.3148248399375e-05
+32 1.28788697111304e-05
+33 1.25760470837122e-05
+34 1.21004686661763e-05
+35 1.1876712051162e-05
+36 1.14437270894996e-05
+37 1.13073556349264e-05
+38 1.08286822069203e-05
+39 1.05954522950924e-05
+40 1.01369614640134e-05
+41 1.01096402431722e-05
+42 1.01202804216882e-05
+43 9.79968262981856e-06
+44 9.63892762229079e-06
+45 9.25858057598816e-06
+46 9.26447864912916e-06
+47 9.22625713428715e-06
+48 8.73899716680171e-06
+49 8.78043738339329e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.00017094417125918
+1 0.000160401483299211
+2 0.036150973290205
+3 0.000316680670948699
+4 0.000137297145556659
+5 9.26273569348268e-05
+6 7.98769979155622e-05
+7 7.0807320298627e-05
+8 4.95305539516266e-05
+9 4.54134096798953e-05
+10 3.95019269490149e-05
+11 3.25514156429563e-05
+12 2.97561346087605e-05
+13 3.36671473633032e-05
+14 2.64266036538174e-05
+15 2.41883208218496e-05
+16 2.48695578193292e-05
+17 2.08462261070963e-05
+18 2.0019830117235e-05
+19 2.22250164370053e-05
+20 1.96651872101938e-05
+21 1.6600775779807e-05
+22 1.794079253159e-05
+23 1.91281633306062e-05
+24 1.54945028043585e-05
+25 1.58998554979917e-05
+26 1.51716085383669e-05
+27 1.72768232005183e-05
+28 1.47413256854634e-05
+29 1.08498124973266e-05
+30 1.11146719063981e-05
+31 1.3862399100617e-05
+32 1.21347275126027e-05
+33 1.09358343252097e-05
+34 1.17493718789774e-05
+35 1.09706352304784e-05
+36 1.13609557956806e-05
+37 9.75781767920125e-06
+38 1.15290868052398e-05
+39 1.07232208392816e-05
+40 1.23256968436181e-05
+41 1.07611622297554e-05
+42 8.52626817504643e-06
+43 9.39520305109909e-06
+44 8.58072780829389e-06
+45 1.00112320069456e-05
+46 8.13092628959566e-06
+47 6.99318707120256e-06
+48 1.01236291811801e-05
+49 7.61742694521672e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00013163081894163
+1 0.000131122171296738
+2 0.00013289472553879
+3 0.000134526955662295
+4 0.000135931244585663
+5 0.000130738597363234
+6 0.000132805231260136
+7 0.000132501270854846
+8 0.000134283589432016
+9 0.000132999397465028
+10 0.00013279341510497
+11 0.000129126899992116
+12 0.000132749351905659
+13 0.000132394168758765
+14 0.000136035203468055
+15 0.000134211702970788
+16 0.000134001151309349
+17 0.000133923822431825
+18 0.000131857726955786
+19 0.000135481284814887
+20 0.000132293032947928
+21 0.000135590322315693
+22 0.000133866880787537
+23 0.000133781577460468
+24 0.000131926834001206
+25 0.000132992805447429
+26 0.000133662513690069
+27 0.000133489549625665
+28 0.000133437104523182
+29 0.000133686975459568
+30 0.000132578206830658
+31 0.00013476463209372
+32 0.000131991007947363
+33 0.000131760374642909
+34 0.00013294696691446
+35 0.000137400609673932
+36 0.000131076405523345
+37 0.000133624853333458
+38 0.000132744593429379
+39 0.000130916596390307
+40 0.000135715890792198
+41 0.000132091940031387
+42 0.000132823042804375
+43 0.000131511551444419
+44 0.00013203224807512
+45 0.000135307098389603
+46 0.000132652756292373
+47 0.000133923138491809
+48 0.000131555105326697
+49 0.000133828914840706
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000144776640809141
+1 0.000147166210808791
+2 0.000132275454234332
+3 0.000116351737233344
+4 0.000102640013210475
+5 0.000152116626850329
+6 0.000133440524223261
+7 0.000136172631755471
+8 0.000119956224807538
+9 0.000131648688693531
+10 0.000132692628540099
+11 0.000166367186466232
+12 0.000129074833239429
+13 0.000135661030071788
+14 0.000101749414170627
+15 0.000123005025670864
+16 0.000121436431072652
+17 0.000125857768580317
+18 0.000141915850690566
+19 0.000112568566692062
+20 0.00013832731929142
+21 0.000107852800283581
+22 0.000123464327771217
+23 0.000125312319141813
+24 0.000140793505124748
+25 0.000132049943204038
+26 0.000122950179502368
+27 0.000124291080283001
+28 0.000127876322949305
+29 0.000124601341667585
+30 0.00013901706552133
+31 0.000115488444862422
+32 0.000141519805765711
+33 0.000142432792927139
+34 0.000133129375171848
+35 9.25990243558772e-05
+36 0.000146474660141394
+37 0.000126224476844072
+38 0.000133810273837298
+39 0.000151163156260736
+40 0.000107081934402231
+41 0.000138183706440032
+42 0.000131723150843754
+43 0.000148031249409541
+44 0.000140038304380141
+45 0.000111106644908432
+46 0.000134841044200584
+47 0.000122245735838078
+48 0.000142890101415105
+49 0.000131427237647586
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006509258631775221, Learning_Process.pdf b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006509258631775221, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..99bc5234d279077b976aa3c622fad382e4229a61
Binary files /dev/null and b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006509258631775221, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006509258631775221, Learning_Process.tex b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006509258631775221, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..c3095554373c1806b9616fb88d9f9dcd5e413c38
--- /dev/null
+++ b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006509258631775221, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.20041006152237e-06, ymax=0.000390789578789035,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000133804525830783
+1 0.000300423067528754
+2 5.09069250256289e-05
+3 3.75061426893808e-05
+4 1.41621067086817e-05
+5 1.01378491308424e-05
+6 8.31878514873097e-06
+7 7.29604607840884e-06
+8 6.43552129986347e-06
+9 5.59170166525291e-06
+10 4.97511564390152e-06
+11 4.5716642489424e-06
+12 4.27622171628173e-06
+13 3.99579994336818e-06
+14 3.64178754352906e-06
+15 3.4490228699724e-06
+16 3.41262693837052e-06
+17 3.22836308441765e-06
+18 3.11554367726785e-06
+19 2.9857685603929e-06
+20 3.18449792757747e-06
+21 2.82891278402531e-06
+22 2.7129860882269e-06
+23 2.70441478278372e-06
+24 2.57935016634292e-06
+25 2.57456167673809e-06
+26 2.51817982643843e-06
+27 2.46154968408518e-06
+28 2.51561232289532e-06
+29 2.38966799770424e-06
+30 2.34748472394131e-06
+31 2.35400398196361e-06
+32 2.28591466111538e-06
+33 2.19207004192867e-06
+34 2.2996819097898e-06
+35 2.22636231228535e-06
+36 2.1155701688258e-06
+37 2.14087549466058e-06
+38 2.1157006813155e-06
+39 2.13425050787919e-06
+40 2.09811082640954e-06
+41 1.99176429305226e-06
+42 2.13519160752185e-06
+43 1.99198075279128e-06
+44 2.0154745925538e-06
+45 1.99025180336321e-06
+46 1.96635028260062e-06
+47 1.95353231902118e-06
+48 1.96952964870434e-06
+49 1.93332607523189e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000111193396151066
+1 0.000271519500529394
+2 4.23670971940737e-05
+3 3.03271699522156e-05
+4 1.46436450449983e-05
+5 1.26596078189323e-05
+6 9.47267471929081e-06
+7 7.2430898399034e-06
+8 6.61055810269318e-06
+9 5.47721674593049e-06
+10 5.233523552306e-06
+11 4.36163054473582e-06
+12 4.0406935113424e-06
+13 3.62207606485754e-06
+14 4.30020963904099e-06
+15 3.94382459489862e-06
+16 3.36465905093064e-06
+17 3.16241857944988e-06
+18 3.02076864500123e-06
+19 2.86904628410412e-06
+20 2.34153981182317e-06
+21 2.49775507654704e-06
+22 2.80290782939119e-06
+23 2.35047968999424e-06
+24 2.61875516116561e-06
+25 2.43600266003341e-06
+26 2.66495749201567e-06
+27 2.20951005758252e-06
+28 2.44628358814225e-06
+29 2.46751596932882e-06
+30 2.31064177569351e-06
+31 2.52120025834301e-06
+32 2.11589917853416e-06
+33 2.66813276539324e-06
+34 1.61423542976991e-06
+35 2.04335128728417e-06
+36 2.46247191171278e-06
+37 1.9202270777896e-06
+38 2.05347464543593e-06
+39 1.73904595612839e-06
+40 1.92081097338814e-06
+41 2.62722460320219e-06
+42 1.56149042140896e-06
+43 2.06511185751879e-06
+44 1.87712123533856e-06
+45 2.17059323404101e-06
+46 2.19421599467751e-06
+47 2.13655971492699e-06
+48 2.10221719498804e-06
+49 2.21363848140754e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00013137525820639
+1 0.000133821027702652
+2 0.000131525273900479
+3 0.000131872977362946
+4 0.000130490108858794
+5 0.000132449567900039
+6 0.000133588473545387
+7 0.000132957138703205
+8 0.00012506140046753
+9 0.000129301086417399
+10 0.000132310669869184
+11 0.00013093939924147
+12 0.000133832261781208
+13 0.000132748144096695
+14 0.000132424611365423
+15 0.000132801724248566
+16 0.000129161038785242
+17 0.000130376196466386
+18 0.000129248408484273
+19 0.000135345151647925
+20 0.000134914531372488
+21 0.00013288707123138
+22 0.000130580185214058
+23 0.000129121981444769
+24 0.000132199013023637
+25 0.000128587314975448
+26 0.000130355401779525
+27 0.000128819796373136
+28 0.000131898108520545
+29 0.000128887186292559
+30 0.000131904598674737
+31 0.000133703200845048
+32 0.00013193249469623
+33 0.000132423316244967
+34 0.000136108268634416
+35 0.000129675667267293
+36 0.00012790592154488
+37 0.000130749685922638
+38 0.000134677844471298
+39 0.000130329906824045
+40 0.000131681605125777
+41 0.000130202519358136
+42 0.000134244619403034
+43 0.000132913351990283
+44 0.000132459899759851
+45 0.000131099674035795
+46 0.000132680070237257
+47 0.000134368907311
+48 0.000127483115647919
+49 0.000134935165988281
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000134447036543861
+1 0.000111587345600128
+2 0.000131902008433826
+3 0.000129083709907718
+4 0.000143477678648196
+5 0.000125542108435184
+6 0.000113697489723563
+7 0.000116858449473511
+8 0.000190262057003565
+9 0.000154155641212128
+10 0.00012700654042419
+11 0.000138973002322018
+12 0.000111820016172715
+13 0.000122025019663852
+14 0.00012583976786118
+15 0.000120878241432365
+16 0.000153079206938855
+17 0.000142059128847905
+18 0.000157669928739779
+19 0.000101175464806147
+20 0.000102831938420422
+21 0.000121324439533055
+22 0.000142984499689192
+23 0.000154601046233438
+24 0.000127454972243868
+25 0.000159516101120971
+26 0.000144748992170207
+27 0.000159765259013511
+28 0.000130547836306505
+29 0.000151186512084678
+30 0.000129176754853688
+31 0.000113585185317788
+32 0.000128758983919397
+33 0.000125028760521673
+34 9.3122995167505e-05
+35 0.000149259372847155
+36 0.000165915043908171
+37 0.000137650218675844
+38 0.0001032574364217
+39 0.000144272737088613
+40 0.000138864779728465
+41 0.000147164784721099
+42 0.000106946099549532
+43 0.000120120523206424
+44 0.000124341575428843
+45 0.0001363984629279
+46 0.000123048841487616
+47 0.000108145519334357
+48 0.000169867867953144
+49 0.000101455465483014
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006883727432255015, Learning_Process.pdf b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006883727432255015, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..fdaa6e94bd6051b11512b5d91516e466ddcb179d
Binary files /dev/null and b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006883727432255015, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006883727432255015, Learning_Process.tex b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006883727432255015, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..d0a2073a192103fc71c17be1cb182c3110f671c8
--- /dev/null
+++ b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006883727432255015, Learning_Process.tex	
@@ -0,0 +1,257 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.56859452512062e-06, ymax=0.0187905557429562,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000118961041152943
+1 0.000854112091474235
+2 0.000610822404269129
+3 8.57167979120277e-05
+4 5.85742200200912e-05
+5 4.46181948063895e-05
+6 3.82004873245023e-05
+7 3.25968794641085e-05
+8 2.88618266495178e-05
+9 2.5772133085411e-05
+10 2.33460141316755e-05
+11 2.14253141166409e-05
+12 1.9180801245966e-05
+13 1.83121555892285e-05
+14 1.65166857186705e-05
+15 1.58559741976205e-05
+16 1.45280346259824e-05
+17 1.3614366253023e-05
+18 1.33222556542023e-05
+19 1.25719416246284e-05
+20 1.17489680633298e-05
+21 1.12485449790256e-05
+22 1.09427455754485e-05
+23 1.04643677332206e-05
+24 1.00689740065718e-05
+25 9.57359134190483e-06
+26 9.50730282056611e-06
+27 9.1015754151158e-06
+28 8.54683366924291e-06
+29 8.29651798994746e-06
+30 8.21585490484722e-06
+31 8.06385378382402e-06
+32 7.61942828830797e-06
+33 7.5560874392977e-06
+34 7.24671235730057e-06
+35 7.03558725945186e-06
+36 6.95824110152898e-06
+37 6.80462972013629e-06
+38 6.48864488539402e-06
+39 6.46638409307343e-06
+40 6.28249199507991e-06
+41 6.16988609181135e-06
+42 5.97161988480366e-06
+43 5.9997514654242e-06
+44 5.9543012866925e-06
+45 5.82545771976584e-06
+46 5.67356664760155e-06
+47 5.59700583835365e-06
+48 5.47952049601008e-06
+49 5.54351800019504e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000120391930977348
+1 0.000160677547683008
+2 0.000737263180781156
+3 9.22629988053814e-05
+4 5.34957289346494e-05
+5 5.39865541213658e-05
+6 3.80368037440348e-05
+7 3.62018145096954e-05
+8 2.85246624116553e-05
+9 2.43574631895171e-05
+10 2.12375271075871e-05
+11 1.80694314622087e-05
+12 2.08968303923029e-05
+13 1.42085355037125e-05
+14 1.70960465766257e-05
+15 1.41113550853333e-05
+16 1.54620483954204e-05
+17 1.56625501404051e-05
+18 1.11262079371954e-05
+19 1.07971354736947e-05
+20 1.23470863400144e-05
+21 1.17722829600098e-05
+22 1.0323669812351e-05
+23 9.71857025433565e-06
+24 8.92251591722015e-06
+25 1.02426174635184e-05
+26 7.15332453182782e-06
+27 7.560706762888e-06
+28 9.25186122913146e-06
+29 8.98295456863707e-06
+30 7.18230285201571e-06
+31 6.26926930635818e-06
+32 8.10737856227206e-06
+33 6.3936531660147e-06
+34 7.23972925698035e-06
+35 7.7073709690012e-06
+36 6.86133716953918e-06
+37 6.14832197243231e-06
+38 7.71517625253182e-06
+39 6.67463609715924e-06
+40 6.6043367041857e-06
+41 6.36632830719464e-06
+42 7.13243207428604e-06
+43 5.73972965867142e-06
+44 5.0866074161604e-06
+45 5.01995782542508e-06
+46 5.97303369431756e-06
+47 5.16655109095154e-06
+48 5.56077748115058e-06
+49 3.84895656679873e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000119971380627248
+1 0.000121687611681409
+2 0.000118373718578368
+3 0.000116554620035458
+4 0.000122075769468211
+5 0.000116495866677724
+6 0.000116595459985547
+7 0.000121569762995932
+8 0.00012042818707414
+9 0.00011668422666844
+10 0.000118997755635064
+11 0.000118682932225056
+12 0.000120603406685404
+13 0.000119750926387496
+14 0.000119672709843144
+15 0.00012051007070113
+16 0.000119515243568458
+17 0.0125398449599743
+18 0.005051055457443
+19 0.000120747710752767
+20 0.00012025456817355
+21 0.000120265205623582
+22 0.00011517930397531
+23 0.000117929674161132
+24 0.000120293247164227
+25 0.00012102015898563
+26 0.000119106036436278
+27 0.000120048789540306
+28 0.000116472838271875
+29 0.000118791780550964
+30 0.00012211584544275
+31 0.000120939730550162
+32 0.000116069459181745
+33 0.000119783879199531
+34 0.000119024225568864
+35 0.000122008292237297
+36 0.00011761300265789
+37 0.000117743576993234
+38 0.000118988536996767
+39 0.00011899206583621
+40 0.000120851320389193
+41 0.000122577606816776
+42 0.000120752745715436
+43 0.00012061571032973
+44 0.000118587646284141
+45 0.000120185839477926
+46 0.00012149840767961
+47 0.00011750147677958
+48 0.000119321572128683
+49 0.000116674105811398
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000109482534753624
+1 9.85361184575595e-05
+2 0.000126970044220798
+3 0.000142072894959711
+4 9.17563738767058e-05
+5 0.000141272830660455
+6 0.000137493378133513
+7 9.68281019595452e-05
+8 0.0001071518054232
+9 0.000141396492836066
+10 0.000118018964712974
+11 0.000120596181659494
+12 0.000108542903035413
+13 0.000114822643809021
+14 0.000114163383841515
+15 0.000105781866295729
+16 0.000114776616101153
+17 0.000117815274279565
+18 9.7068324976135e-05
+19 0.000108826607174706
+20 0.000117584902909584
+21 0.000111207031295635
+22 0.000157499438500963
+23 0.00013000110629946
+24 0.000109986744064372
+25 0.000102917074400466
+26 0.000117884716019034
+27 0.000109253589471336
+28 0.000141101001645438
+29 0.000123732417705469
+30 9.16995850275271e-05
+31 9.9524600955192e-05
+32 0.000140296557219699
+33 0.000114916263555642
+34 0.000126004844787531
+35 9.45713836699724e-05
+36 0.000132130095153116
+37 0.000129683903651312
+38 0.000120549186249264
+39 0.000121752316772472
+40 0.000104145197838079
+41 8.78385326359421e-05
+42 0.000104445869510528
+43 0.000106661675090436
+44 0.000125232356367633
+45 0.000106879451777786
+46 0.000108980653749313
+47 0.000133124689455144
+48 0.000117315445095301
+49 0.00014524141442962
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006952460666111191, Learning_Process.pdf b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006952460666111191, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..8a0e9275df8b69cbc51b4fa2bb90093ced1d97e8
Binary files /dev/null and b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006952460666111191, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006952460666111191, Learning_Process.tex b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006952460666111191, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..ebe84d3bc0bd62f6a3922849a3172ad68de9109d
--- /dev/null
+++ b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.006952460666111191, Learning_Process.tex	
@@ -0,0 +1,256 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=5.24244618420043e-06, ymax=0.00482255946124283,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000133488065330312
+1 0.000780562520958483
+2 0.000369072717148811
+3 0.000149448693264276
+4 9.88013853202574e-05
+5 7.34339046175592e-05
+6 6.21201397734694e-05
+7 5.31581026734784e-05
+8 4.58245958725456e-05
+9 4.15739123127423e-05
+10 3.60735284630209e-05
+11 3.34906762873288e-05
+12 2.99537659884663e-05
+13 2.88898227154277e-05
+14 2.58435502473731e-05
+15 2.45780374825699e-05
+16 2.2598940631724e-05
+17 2.18825480260421e-05
+18 2.04689495149069e-05
+19 1.89566362678306e-05
+20 1.80125061888248e-05
+21 1.71955762198195e-05
+22 1.65260280482471e-05
+23 1.55615798576036e-05
+24 1.5437313777511e-05
+25 1.41030022859923e-05
+26 1.42757744470146e-05
+27 1.33088306029094e-05
+28 1.2989930837648e-05
+29 1.24771304399474e-05
+30 1.23830050142715e-05
+31 1.17966183097451e-05
+32 1.14770955406129e-05
+33 1.09009033621987e-05
+34 1.08498079498531e-05
+35 1.04336158983642e-05
+36 9.81401080935029e-06
+37 9.94338188320398e-06
+38 9.77647505351342e-06
+39 9.87016301223775e-06
+40 9.44857310969383e-06
+41 8.96227538760286e-06
+42 9.10058315639617e-06
+43 8.64352841745131e-06
+44 8.71449628903065e-06
+45 8.41521250549704e-06
+46 8.25213010102743e-06
+47 8.15037765278248e-06
+48 7.9233386713895e-06
+49 7.89510795584647e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000111069042759482
+1 0.00353640480898321
+2 0.000365848944056779
+3 0.00014089721662458
+4 8.0117752077058e-05
+5 8.64701942191459e-05
+6 6.04017222940456e-05
+7 4.94636951771099e-05
+8 4.96678767376579e-05
+9 3.51643648173194e-05
+10 4.17635310441256e-05
+11 3.12828888127115e-05
+12 3.54376461473294e-05
+13 2.0622710508178e-05
+14 2.74209396593506e-05
+15 2.18224795389688e-05
+16 2.33246628340567e-05
+17 1.68866627063835e-05
+18 1.7243863112526e-05
+19 2.02586761588464e-05
+20 1.90322007256327e-05
+21 1.75607128767297e-05
+22 1.62038886628579e-05
+23 1.77379824890522e-05
+24 1.25382857731893e-05
+25 1.82055700861383e-05
+26 1.19012975119404e-05
+27 1.48899589476059e-05
+28 1.3299640158948e-05
+29 1.36142116389237e-05
+30 1.02936019175104e-05
+31 1.23048712339369e-05
+32 1.12519674075884e-05
+33 1.31794577100663e-05
+34 1.0886239579122e-05
+35 1.17937443064875e-05
+36 1.42518347274745e-05
+37 1.09539751065313e-05
+38 1.02453823274118e-05
+39 7.48128240957158e-06
+40 8.47813407744979e-06
+41 1.08844533315278e-05
+42 7.49393802834675e-06
+43 9.74427075561834e-06
+44 7.44822455089889e-06
+45 8.44860642246203e-06
+46 8.29207965580281e-06
+47 7.6975720730843e-06
+48 8.3511195043684e-06
+49 7.14907082510763e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000131477281684056
+1 0.000130082407849841
+2 0.000129656313220039
+3 0.000132446337374859
+4 0.000132135435706005
+5 0.000130712694954127
+6 0.000132462257170118
+7 0.000127944993437268
+8 0.000131704306113534
+9 0.000129724285216071
+10 0.000132417830172926
+11 0.000129679814563133
+12 0.000130480737425387
+13 0.000130353248096071
+14 0.000128783533000387
+15 0.000130749584059231
+16 0.000132681409013458
+17 0.000127920036902651
+18 0.00012907489144709
+19 0.000130326341604814
+20 0.000130232801893726
+21 0.000131569671793841
+22 0.000130412125145085
+23 0.000131811015307903
+24 0.000129065287183039
+25 0.000132728207972832
+26 0.000132174100144766
+27 0.000129213891341351
+28 0.000129448002553545
+29 0.000130911503219977
+30 0.000131116801640019
+31 0.000134600355522707
+32 0.000129040461615659
+33 0.000130553613416851
+34 0.000128948842757381
+35 0.000128491985378787
+36 0.000131201930344105
+37 0.000133947221911512
+38 0.000132750923512504
+39 0.000130397209431976
+40 0.000127602470456623
+41 0.000128293468151242
+42 0.000129297404782847
+43 0.000128185871290043
+44 0.000130755666759796
+45 0.000128224128275178
+46 0.000132970642880537
+47 0.000133096546051092
+48 0.000131345921545289
+49 0.000131122884340584
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000123657620861195
+1 0.000138341230922379
+2 0.00014138976985123
+3 0.000115438204375096
+4 0.000117781819426455
+5 0.000131194523419254
+6 0.000115360591735225
+7 0.000155600006110035
+8 0.000122026329336222
+9 0.000139143434353173
+10 0.000116423841973301
+11 0.000140000091050752
+12 0.00013267295435071
+13 0.000133802779600956
+14 0.000147773534990847
+15 0.000129483931232244
+16 0.000113185436930507
+17 0.000156085196067579
+18 0.000145316487760283
+19 0.000131702123326249
+20 0.000135602342197672
+21 0.000123613092000596
+22 0.000133199646370485
+23 0.000120559801871423
+24 0.000145443249493837
+25 0.000111887689854484
+26 0.000117238632810768
+27 0.000143618308356963
+28 0.000141702519613318
+29 0.000130082189571112
+30 0.000126863931654952
+31 9.67404048424214e-05
+32 0.000146479651448317
+33 0.000131708409753628
+34 0.000146498903632164
+35 0.000151022133650258
+36 0.000127419523778372
+37 0.000101691533927806
+38 0.000111009459942579
+39 0.000132157612824813
+40 0.000158393217134289
+41 0.000152618857100606
+42 0.000142790726386011
+43 0.000153869812493213
+44 0.000130680535221472
+45 0.000153861663420685
+46 0.000110866829345468
+47 0.000110568820673507
+48 0.000124750920804217
+49 0.000127016333863139
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007249626881915763, Learning_Process.pdf b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007249626881915763, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..cac868ce245190be243166b1b3fba2b45a3ca76f
Binary files /dev/null and b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007249626881915763, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007249626881915763, Learning_Process.tex b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007249626881915763, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..6b9705bbfab6b703e73113f5830ac41b913286b5
--- /dev/null
+++ b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007249626881915763, Learning_Process.tex	
@@ -0,0 +1,257 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=4.91915646247543e-06, ymax=0.0115351896373736,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000138049654196948
+1 0.000525858486071229
+2 0.00074380513979122
+3 0.00810656417161226
+4 0.000272153993137181
+5 0.000114325790491421
+6 7.6169308158569e-05
+7 6.08402842772193e-05
+8 5.26986041222699e-05
+9 4.43577991973143e-05
+10 3.96947289118543e-05
+11 3.5197714169044e-05
+12 3.25483779306524e-05
+13 2.93467855954077e-05
+14 2.65723574557342e-05
+15 2.49027634708909e-05
+16 2.46664058067836e-05
+17 2.15827622014331e-05
+18 2.05101187020773e-05
+19 1.91058807104127e-05
+20 1.80007409653626e-05
+21 1.71966021298431e-05
+22 1.56962269102223e-05
+23 1.53599703480722e-05
+24 1.49291035995702e-05
+25 1.42187709570862e-05
+26 1.37585711854626e-05
+27 1.30699627334252e-05
+28 1.26436534628738e-05
+29 1.23805230032303e-05
+30 1.1769266166084e-05
+31 1.12549132609274e-05
+32 1.11574399852543e-05
+33 1.07964287963114e-05
+34 1.03517959360033e-05
+35 1.04021310107782e-05
+36 9.83510381047381e-06
+37 9.15173950488679e-06
+38 9.13257099455222e-06
+39 9.0134917627438e-06
+40 8.84866039996268e-06
+41 8.63792411109898e-06
+42 8.38808500702726e-06
+43 8.20314926386345e-06
+44 7.81420749262907e-06
+45 7.87741919339169e-06
+46 7.90405556472251e-06
+47 7.64626474847319e-06
+48 9.172263162327e-06
+49 9.17247689358192e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000126771439681761
+1 0.00060147832846269
+2 0.000141984826768748
+3 0.00578142795711756
+4 0.000240972454776056
+5 0.00011090433690697
+6 9.06437780940905e-05
+7 6.87499486957677e-05
+8 4.58762660855427e-05
+9 4.64139411633369e-05
+10 3.73561706510372e-05
+11 3.84014638257213e-05
+12 2.78248171525775e-05
+13 3.11568364850245e-05
+14 2.97828792099608e-05
+15 2.44660241150996e-05
+16 2.2423602786148e-05
+17 2.20999118027976e-05
+18 1.85869430424646e-05
+19 1.90971441043075e-05
+20 1.84490181709407e-05
+21 1.71626597875729e-05
+22 2.19428529817378e-05
+23 1.67072557815118e-05
+24 1.4489734894596e-05
+25 1.58206730702659e-05
+26 1.45897447509924e-05
+27 1.34430802063434e-05
+28 1.26797240227461e-05
+29 1.05983699540957e-05
+30 1.14994854811812e-05
+31 1.27086996144499e-05
+32 9.15869441087125e-06
+33 9.80415643425658e-06
+34 1.07593596112565e-05
+35 9.53089784161421e-06
+36 9.4415327112074e-06
+37 1.24310963656171e-05
+38 9.85022234090138e-06
+39 9.25299264054047e-06
+40 8.53914843901293e-06
+41 8.07201013230952e-06
+42 9.15578675630968e-06
+43 9.33050068852026e-06
+44 9.41652524488745e-06
+45 7.64956985221943e-06
+46 6.99968586559407e-06
+47 7.1228437263926e-06
+48 9.73706301010679e-06
+49 9.11070856091101e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000137249255203642
+1 0.000135670226882212
+2 0.00013897949247621
+3 0.00013715322711505
+4 0.000138030387461185
+5 0.000139176481752656
+6 0.000139025170938112
+7 0.000140942807774991
+8 0.000135797716211528
+9 0.000138350937049836
+10 0.000139529278385453
+11 0.000134650617837906
+12 0.000139357493026182
+13 0.000137024268042296
+14 0.00013734855747316
+15 0.000136596092488617
+16 0.000137249822728336
+17 0.000138053845148534
+18 0.00013691870844923
+19 0.00013578700600192
+20 0.000133848618133925
+21 0.000140650401590392
+22 0.000137491384521127
+23 0.00013821326137986
+24 0.000133703026222065
+25 0.000133237568661571
+26 0.000136625661980361
+27 0.000138456263812259
+28 0.000137819311930798
+29 0.000137500392156653
+30 0.000138018149300478
+31 0.000138549017719924
+32 0.000138210118166171
+33 0.000137591603561305
+34 0.000137885785079561
+35 0.000138598159537651
+36 0.000136166592710651
+37 0.000135163340019062
+38 0.00013742787996307
+39 0.000136573595227674
+40 0.000134157671709545
+41 0.000137624825583771
+42 0.000136484726681374
+43 0.000138634801260196
+44 0.000137184557388537
+45 0.000137428025482222
+46 0.000135175883769989
+47 0.000137265218654647
+48 0.000134366724523716
+49 0.000137218419695273
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000132241009850986
+1 0.000143008452141657
+2 0.000113049172796309
+3 0.000130669577629305
+4 0.000126095983432606
+5 0.000112145047751255
+6 0.000114972273877356
+7 9.622687502997e-05
+8 0.000148272883961909
+9 0.000120044096547645
+10 0.000115551811177284
+11 0.000151165731949732
+12 0.000113845271698665
+13 0.000132241621031426
+14 0.000132483459310606
+15 0.000139956711791456
+16 0.000132513654534705
+17 0.000123597958008759
+18 0.000142591001349501
+19 0.000141995595186017
+20 0.000163335629622452
+21 0.000100444980489556
+22 0.000127065795823
+23 0.000121064018458128
+24 0.000157943330123089
+25 0.000167791105923243
+26 0.000135867929202504
+27 0.000121426724945195
+28 0.00012911889643874
+29 0.00012545139179565
+30 0.000122875440865755
+31 0.000115883303806186
+32 0.000119167496450245
+33 0.000131423585116863
+34 0.000125545178889297
+35 0.000118947471491992
+36 0.00014239591837395
+37 0.000148440172779374
+38 0.00013442435010802
+39 0.000135870679514483
+40 0.000158864917466417
+41 0.000128600033349358
+42 0.000138193252496421
+43 0.000112855217594188
+44 0.000133374240249395
+45 0.000127807099488564
+46 0.000147986836964265
+47 0.0001280738360947
+48 0.000154342109453864
+49 0.000130079264636151
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007302173451636485, Learning_Process.pdf b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007302173451636485, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..4fd968780c4204998a6116db7c0efc8155d90d66
Binary files /dev/null and b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007302173451636485, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007302173451636485, Learning_Process.tex b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007302173451636485, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..af2462a58a0e5f554f9e06398e4d6a63bf3bbc3a
--- /dev/null
+++ b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007302173451636485, Learning_Process.tex	
@@ -0,0 +1,255 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.25307806420524e-05, ymax=0.00823451962665296,
+ymode=log,
+ytick style={color=black},
+ytick={1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000147812606883235
+1 0.00224761501885951
+2 0.000310107949189842
+3 0.000407216051826254
+4 0.000172324012964964
+5 0.00389787764288485
+6 0.00613144459202886
+7 0.00101195252500474
+8 0.000336227618390694
+9 0.000226849908358417
+10 0.000178314992808737
+11 0.000145232159411535
+12 0.000123118836199865
+13 0.000109361033537425
+14 9.44807106861845e-05
+15 8.47471819724888e-05
+16 7.71082050050609e-05
+17 6.99358497513458e-05
+18 6.4862659201026e-05
+19 5.86132737225853e-05
+20 5.60806511202827e-05
+21 5.31369405507576e-05
+22 4.89820740767755e-05
+23 4.56691304862034e-05
+24 4.30239961133339e-05
+25 4.18587806052528e-05
+26 3.90491186408326e-05
+27 3.76507741748355e-05
+28 3.65812120435294e-05
+29 3.49660913343541e-05
+30 3.32457711920142e-05
+31 3.21953448292334e-05
+32 3.05633220705204e-05
+33 2.94728142762324e-05
+34 2.79759842669591e-05
+35 2.75772435998078e-05
+36 2.68808253167663e-05
+37 2.58028539974475e-05
+38 2.51782021223335e-05
+39 2.44563925662078e-05
+40 2.39917790167965e-05
+41 2.28446260734927e-05
+42 2.21003137994558e-05
+43 2.15234595088987e-05
+44 2.15722011489561e-05
+45 2.03749914362561e-05
+46 2.03169529413572e-05
+47 1.96921228052815e-05
+48 1.92573988897493e-05
+49 1.86977213161299e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000124386671814136
+1 0.00250173103995621
+2 0.000140508243930526
+3 0.000439203868154436
+4 0.000157107730046846
+5 0.00450410647317767
+6 0.006020104046911
+7 0.00115351099520922
+8 0.00041400091140531
+9 0.000255281658610329
+10 0.000170676285051741
+11 0.000148177874507383
+12 0.000121030490845442
+13 8.11453719506972e-05
+14 9.25218046177179e-05
+15 8.58518542372622e-05
+16 7.45400539017282e-05
+17 7.37285590730608e-05
+18 6.51105292490683e-05
+19 7.44477583793923e-05
+20 5.34144819539506e-05
+21 4.48590981250163e-05
+22 4.94623345730361e-05
+23 5.10563259012997e-05
+24 5.09089986735489e-05
+25 4.35389010817744e-05
+26 4.30815998697653e-05
+27 3.88587177440058e-05
+28 3.145102164126e-05
+29 3.08627168124076e-05
+30 3.17222802550532e-05
+31 2.82048331428086e-05
+32 3.19960781780537e-05
+33 2.98612994811265e-05
+34 3.68651053577196e-05
+35 2.76137143373489e-05
+36 2.40093268075725e-05
+37 2.57096144196112e-05
+38 2.36015857808525e-05
+39 2.22618673433317e-05
+40 2.06133154279087e-05
+41 2.35826501011616e-05
+42 2.38753400481073e-05
+43 2.18397763092071e-05
+44 1.68288170243613e-05
+45 2.22219205170404e-05
+46 1.92597599379951e-05
+47 2.0272034817026e-05
+48 1.88436806638492e-05
+49 1.95300071936799e-05
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000146627775393426
+1 0.000145063037052751
+2 0.000143997851409949
+3 0.000145701618748717
+4 0.000143942685099319
+5 0.000148254403029568
+6 0.000143224126077257
+7 0.000145532118040137
+8 0.000148118037031963
+9 0.000145056765177287
+10 0.000147294384078123
+11 0.000145379905006848
+12 0.000144566656672396
+13 0.000147393715451472
+14 0.000147175902384333
+15 0.000144851539516822
+16 0.000147630882565863
+17 0.000141612836159766
+18 0.000145433092257008
+19 0.000145060330396518
+20 0.000146906648296863
+21 0.00014434008335229
+22 0.000145605517900549
+23 0.000146202277392149
+24 0.000147600047057495
+25 0.000145884958328679
+26 0.000146394406328909
+27 0.000150485240737908
+28 0.000148109946167096
+29 0.000145828948006965
+30 0.000147749989992008
+31 0.000146421589306556
+32 0.000145911879371852
+33 0.000142721139127389
+34 0.000145752026583068
+35 0.000145511847222224
+36 0.000147024547914043
+37 0.000144439458381385
+38 0.000145769663504325
+39 0.000142201970447786
+40 0.000147901257150806
+41 0.000144785008160397
+42 0.000145842612255365
+43 0.000144970734254457
+44 0.000147359241964296
+45 0.000143612662213854
+46 0.000148076956975274
+47 0.000149147293996066
+48 0.000149617975694127
+49 0.000142442309879698
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000135265625431202
+1 0.000148932085721754
+2 0.000157578717335127
+3 0.000142844379297458
+4 0.000164463257533498
+5 0.000124855330795981
+6 0.000165611869306304
+7 0.000138497474836186
+8 0.000123401609016582
+9 0.000143949684570543
+10 0.000131914785015397
+11 0.000145042315125465
+12 0.000149205749039538
+13 0.000133964349515736
+14 0.000130156797240488
+15 0.000147914921399206
+16 0.000127430728753097
+17 0.000184086558874696
+18 0.000148801700561307
+19 0.000147737024235539
+20 0.000132584405946545
+21 0.000152327309479006
+22 0.000140721211209893
+23 0.000139461437356658
+24 0.000129540509078652
+25 0.00014298121095635
+26 0.000135765003506094
+27 9.76208975771442e-05
+28 0.000121277604193892
+29 0.000143033714266494
+30 0.000127857885672711
+31 0.000132299450342543
+32 0.000142136632348411
+33 0.000169177423231304
+34 0.000150091291288845
+35 0.000144000121508725
+36 0.000129836189444177
+37 0.000161879957886413
+38 0.000139501833473332
+39 0.000178091271664016
+40 0.000122561847092584
+41 0.000153825894813053
+42 0.000142263044836
+43 0.000151508487761021
+44 0.000128449304611422
+45 0.00016066271928139
+46 0.000119727272249293
+47 0.000167949969181791
+48 0.000137482144054957
+49 0.000173633132362738
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0073601717058505, Learning_Process.pdf b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0073601717058505, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..a82a41605cdbf4e59b3418e240002591af3cca2c
Binary files /dev/null and b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0073601717058505, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0073601717058505, Learning_Process.tex b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0073601717058505, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..bb077efdcbcbc89a777961ba2d5994e426b3a162
--- /dev/null
+++ b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0073601717058505, Learning_Process.tex	
@@ -0,0 +1,256 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.05730296592536e-05, ymax=0.0469039705695751,
+ymode=log,
+ytick style={color=black},
+ytick={1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000155339424964041
+1 0.00026083760894835
+2 0.0184333138167858
+3 0.00116291083395481
+4 0.00359342247247696
+5 0.00423847092315555
+6 0.00075199076673016
+7 0.0268687792122364
+8 0.000961558369453996
+9 0.000148155886563472
+10 0.000114585775008891
+11 9.92571731330827e-05
+12 8.74829202075489e-05
+13 7.96658277977258e-05
+14 7.1915565058589e-05
+15 6.61134108668193e-05
+16 6.19656857452355e-05
+17 5.70340307604056e-05
+18 5.35225008206908e-05
+19 5.0012102292385e-05
+20 4.67562349513173e-05
+21 4.44843608420342e-05
+22 4.18711315433029e-05
+23 3.9419097447535e-05
+24 3.69969020539429e-05
+25 3.56277887476608e-05
+26 3.40037659043446e-05
+27 3.31745068251621e-05
+28 3.18318743666168e-05
+29 3.05367320834193e-05
+30 2.97022215818288e-05
+31 2.90104526357027e-05
+32 2.70421205641469e-05
+33 2.64824375335593e-05
+34 2.58573509199778e-05
+35 2.50500943366205e-05
+36 2.44030889007263e-05
+37 2.31054800678976e-05
+38 2.20699057535967e-05
+39 2.22683065658202e-05
+40 2.17184024222661e-05
+41 2.13083148992155e-05
+42 2.07396133191651e-05
+43 2.0275541828596e-05
+44 1.92395855265204e-05
+45 1.91828348761192e-05
+46 1.88294470717665e-05
+47 1.82623480213806e-05
+48 1.81791747309035e-05
+49 1.77840865944745e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000137573690153658
+1 0.000407179642934352
+2 0.0228001829236746
+3 0.000304886052617803
+4 0.00111052789725363
+5 0.00393449468538165
+6 0.000539512489922345
+7 0.0320211127400398
+8 0.00103204685728997
+9 0.00015533363330178
+10 0.000141685392009094
+11 0.000109928943857085
+12 9.80193872237578e-05
+13 7.77407112764195e-05
+14 8.13148799352348e-05
+15 6.34535244898871e-05
+16 5.32219673914369e-05
+17 5.29910321347415e-05
+18 5.67187671549618e-05
+19 4.71481143904384e-05
+20 4.57831120002083e-05
+21 3.9844246202847e-05
+22 3.98771189793479e-05
+23 4.12085573771037e-05
+24 4.35630136053078e-05
+25 4.049973358633e-05
+26 3.95423521695193e-05
+27 3.34417964040767e-05
+28 3.27943671436515e-05
+29 3.25713008351158e-05
+30 2.84246580122272e-05
+31 2.46543731918791e-05
+32 3.23178064718377e-05
+33 2.83004628727213e-05
+34 2.58617947110906e-05
+35 2.4292054149555e-05
+36 2.39151395362569e-05
+37 2.62016019405564e-05
+38 3.04963377857348e-05
+39 2.39483706536703e-05
+40 2.1805135475006e-05
+41 2.22993094212143e-05
+42 1.95221819012659e-05
+43 1.84052005351987e-05
+44 3.21281040669419e-05
+45 1.95902575796936e-05
+46 1.75450004462618e-05
+47 1.80215083673829e-05
+48 1.54871904669562e-05
+49 1.65771270985715e-05
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00015495833940804
+1 0.000155255736899562
+2 0.000153358836541884
+3 0.000155247384100221
+4 0.000152600579895079
+5 0.000152261563926004
+6 0.000156556110596284
+7 0.000155807021656074
+8 0.000153985529323108
+9 0.000152146676555276
+10 0.000155990710482001
+11 0.000153565473738126
+12 0.000153462387970649
+13 0.00015653864829801
+14 0.000153503700857982
+15 0.000153220840729773
+16 0.000152919179527089
+17 0.000155963673023507
+18 0.000158644528710283
+19 0.000157114351168275
+20 0.000154879089677706
+21 0.000154074761667289
+22 0.000153089902596548
+23 0.0001509680878371
+24 0.000157005793880671
+25 0.000156980720930733
+26 0.000157105154357851
+27 0.000154210923938081
+28 0.000153817469254136
+29 0.000155337285832502
+30 0.000153774875798263
+31 0.000156539696035907
+32 0.000155140529386699
+33 0.000154358567669988
+34 0.000155309171532281
+35 0.000152158056152984
+36 0.000152415130287409
+37 0.000155823363456875
+38 0.00015436219109688
+39 0.00015486624033656
+40 0.000156246373080648
+41 0.000151256783283316
+42 0.000146630758536048
+43 0.000151797066791914
+44 0.000151251908391714
+45 0.000149665283970535
+46 0.000152422362589277
+47 0.000154788882355206
+48 0.00015671897563152
+49 0.000154721259605139
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000158695373102091
+1 0.00013952721201349
+2 0.000164850061992183
+3 0.00014341865608003
+4 0.000161602976731956
+5 0.000166572062880732
+6 0.000128750805743039
+7 0.000134545029141009
+8 0.000151318017742597
+9 0.000167666701599956
+10 0.000132194822072051
+11 0.000153848159243353
+12 0.000155024186824448
+13 0.000126348211779259
+14 0.000153515415149741
+15 0.000156220412463881
+16 0.00016291078645736
+17 0.000134235873701982
+18 0.00011122552677989
+19 0.000123010977404192
+20 0.000142114906338975
+21 0.000150295323692262
+22 0.000160259078256786
+23 0.000178134403540753
+24 0.000124834346934222
+25 0.00012669267016463
+26 0.000123448713566177
+27 0.000147726314025931
+28 0.000153326080180705
+29 0.00014063912385609
+30 0.000154086170368828
+31 0.000122650322737172
+32 0.000143200741149485
+33 0.000146009377203882
+34 0.000139225419843569
+35 0.000167504214914516
+36 0.000165603691129945
+37 0.000131838067318313
+38 0.00014592036313843
+39 0.000141279335366562
+40 0.000129461623146199
+41 0.000175934954313561
+42 0.000216066706343554
+43 0.00017365587700624
+44 0.000176898407517001
+45 0.000195433603948914
+46 0.000164144657901488
+47 0.000148152743349783
+48 0.000128177722217515
+49 0.000142305318149738
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007469425058848503, Learning_Process.pdf b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007469425058848503, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..df22730907c5daae379a9a31aa8ecec1e678cc81
Binary files /dev/null and b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007469425058848503, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007469425058848503, Learning_Process.tex b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007469425058848503, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..369664a6a3dd63e62c3099587553cf01351a5f8f
--- /dev/null
+++ b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007469425058848503, Learning_Process.tex	
@@ -0,0 +1,255 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=5.7438785366933e-06, ymax=0.000651296896669984,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000134045039885677
+1 0.000525278097484261
+2 0.000339292921125889
+3 0.000139669544296339
+4 9.78765601757914e-05
+5 7.74251093389466e-05
+6 6.45483014523052e-05
+7 5.53891295567155e-05
+8 4.79392911074683e-05
+9 4.15195245295763e-05
+10 3.82046055165119e-05
+11 3.33611824316904e-05
+12 3.04047898680437e-05
+13 2.76273331110133e-05
+14 2.6349838663009e-05
+15 2.41644447669387e-05
+16 2.24163250095444e-05
+17 2.09828413062496e-05
+18 2.03300351131475e-05
+19 1.90850914805196e-05
+20 1.73531043401454e-05
+21 1.66710979101481e-05
+22 1.57172835315578e-05
+23 1.50729902088642e-05
+24 1.433289344277e-05
+25 1.41313457788783e-05
+26 1.33637940962217e-05
+27 1.29009686133941e-05
+28 1.25686719911755e-05
+29 1.1815087418654e-05
+30 1.16292994789546e-05
+31 1.12292991616414e-05
+32 1.07820760604227e-05
+33 1.04196724350913e-05
+34 1.03776083051343e-05
+35 9.73964142758632e-06
+36 9.62622834776994e-06
+37 9.2304871941451e-06
+38 9.28012741496786e-06
+39 9.03129875950981e-06
+40 8.72425789566478e-06
+41 8.36284743854776e-06
+42 8.33901867736131e-06
+43 8.24481139716227e-06
+44 7.9292885857285e-06
+45 7.80683058110299e-06
+46 7.46298928788747e-06
+47 7.43153896110016e-06
+48 7.26466942069237e-06
+49 7.25556310499087e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000130130982142873
+1 0.000366107240552083
+2 0.000343370687915012
+3 0.000169423525221646
+4 0.000114469054096844
+5 8.3807113696821e-05
+6 6.3575163949281e-05
+7 4.69693877676036e-05
+8 4.38165116065647e-05
+9 4.54717483080458e-05
+10 3.04355980915716e-05
+11 3.53844625351485e-05
+12 3.20507133437786e-05
+13 3.36979937856086e-05
+14 2.28619956033072e-05
+15 2.46758845605655e-05
+16 2.26563915930456e-05
+17 2.29253546422115e-05
+18 1.58129823830677e-05
+19 1.61266725626774e-05
+20 2.08067849598592e-05
+21 1.73013631865615e-05
+22 1.80341339728329e-05
+23 1.62894339155173e-05
+24 1.72253712662496e-05
+25 1.30124381030328e-05
+26 1.35536847665207e-05
+27 1.24173893709667e-05
+28 1.13752948891488e-05
+29 1.31308161144261e-05
+30 1.08507620097953e-05
+31 1.07007972474094e-05
+32 1.12921688923961e-05
+33 1.08349577203626e-05
+34 8.45244085212471e-06
+35 1.13901469376287e-05
+36 1.02139010778046e-05
+37 1.07322548501543e-05
+38 7.88233865023358e-06
+39 9.07308913156157e-06
+40 8.45813428895781e-06
+41 9.60356101131765e-06
+42 7.42882184567861e-06
+43 7.42357542549144e-06
+44 7.77934474172071e-06
+45 7.975251719472e-06
+46 8.82114727573935e-06
+47 7.69365306041436e-06
+48 9.08006950339768e-06
+49 7.12188511897693e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000133098888909444
+1 0.00013163554831408
+2 0.000128527914057486
+3 0.00013749512436334
+4 0.000134480884298682
+5 0.000133127861772664
+6 0.000133084482513368
+7 0.00013567105634138
+8 0.000132956047309563
+9 0.000133979265228845
+10 0.000135101639898494
+11 0.000135221649543382
+12 0.000136243397719227
+13 0.000138521863846108
+14 0.000137586204800755
+15 0.000132686123833992
+16 0.000133548630401492
+17 0.000134704881929792
+18 0.000134391710162163
+19 0.000135809037601575
+20 0.000134464629809372
+21 0.000131906344904564
+22 0.00013187677541282
+23 0.000132339278934523
+24 0.000133515204652213
+25 0.000132208864670247
+26 0.000136168993776664
+27 0.000136029048007913
+28 0.000138214643811807
+29 0.000129692067275755
+30 0.000139123178087175
+31 0.000136763381306082
+32 0.000133982131956145
+33 0.000130756030557677
+34 0.000129635882331058
+35 0.000131452441564761
+36 0.000134326939587481
+37 0.000135199312353507
+38 0.000135776965180412
+39 0.000136193877551705
+40 0.000134517758851871
+41 0.000131740744109266
+42 0.000134119647555053
+43 0.000134312285808846
+44 0.000136429865960963
+45 0.000135182737722062
+46 0.000131344189867377
+47 0.000134317757328972
+48 0.000134744885144755
+49 0.000132963265059516
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000142576405778527
+1 0.000153198707266711
+2 0.000183001509867609
+3 0.000102542588138022
+4 0.00012537841394078
+5 0.000140919568366371
+6 0.000140385687700473
+7 0.000114276961539872
+8 0.000139910538564436
+9 0.000130721819004975
+10 0.00012563104974106
+11 0.000120116455946118
+12 0.000113556976430118
+13 9.20578022487462e-05
+14 9.94994334178045e-05
+15 0.000143249533721246
+16 0.000137495619128458
+17 0.000125595179270022
+18 0.000127089268062264
+19 0.000120437434816267
+20 0.000133280162117444
+21 0.000150061227031983
+22 0.000154322784510441
+23 0.000147329454193823
+24 0.000136992894113064
+25 0.000151657543028705
+26 0.000111950408609118
+27 0.00011280900798738
+28 9.58252130658366e-05
+29 0.000167480757227167
+30 8.51251752465032e-05
+31 0.000106102510471828
+32 0.000132160173961893
+33 0.000160550582222641
+34 0.000175717301317491
+35 0.000149321393109858
+36 0.00012942316243425
+37 0.000121840464998968
+38 0.000113877387775574
+39 0.000115782335342374
+40 0.000126469909446314
+41 0.000153991000843234
+42 0.000129319247207604
+43 0.000129975291201845
+44 0.000108601758256555
+45 0.000122751502203755
+46 0.000156253678142093
+47 0.000129821288282983
+48 0.000125920385471545
+49 0.000141174168675207
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007677663257897768, Learning_Process.pdf b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007677663257897768, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..a8a12b990e7de4b8d1996158bac8387af68e8686
Binary files /dev/null and b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007677663257897768, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007677663257897768, Learning_Process.tex b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007677663257897768, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..337551c738e7c1e27727a333c7a60cae5ebfb4eb
--- /dev/null
+++ b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007677663257897768, Learning_Process.tex	
@@ -0,0 +1,256 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.16117744243485e-06, ymax=0.00375449320426355,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000150910607771948
+1 0.000213304607314058
+2 0.00151556287892163
+3 0.000223808237933554
+4 7.81769849709235e-05
+5 5.3449588449439e-05
+6 4.26949154643808e-05
+7 3.56840719177853e-05
+8 3.03232282021781e-05
+9 2.61263558058999e-05
+10 2.26282281801105e-05
+11 2.06026816158555e-05
+12 1.87708901648875e-05
+13 1.7305625078734e-05
+14 1.60878098540707e-05
+15 1.47477576319943e-05
+16 1.39217181640561e-05
+17 1.30350044855732e-05
+18 1.22831861517625e-05
+19 1.15522798296297e-05
+20 1.09343000076478e-05
+21 1.05092494777637e-05
+22 9.72738143900642e-06
+23 9.6678631962277e-06
+24 9.24545929592568e-06
+25 8.59399460750865e-06
+26 8.4310422607814e-06
+27 8.14968825579854e-06
+28 7.96900258137612e-06
+29 7.63817752158502e-06
+30 7.29497378415545e-06
+31 7.19898525858298e-06
+32 6.95843800713192e-06
+33 6.70105509925634e-06
+34 6.7347391450312e-06
+35 6.52452717986307e-06
+36 6.2228505157691e-06
+37 6.20357104708091e-06
+38 6.0970683080086e-06
+39 5.70407337363577e-06
+40 5.77130504098022e-06
+41 5.66080143471481e-06
+42 5.61607566851308e-06
+43 5.49556898477022e-06
+44 5.34672017238336e-06
+45 5.13495706400136e-06
+46 5.33048842044082e-06
+47 4.97958762935014e-06
+48 4.9765453695727e-06
+49 4.9389163905289e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000126050479593687
+1 0.00079381134128198
+2 0.00272139837034047
+3 0.000241422283579595
+4 8.48241834319197e-05
+5 6.45280524622649e-05
+6 4.45236219093204e-05
+7 3.25774090015329e-05
+8 2.78564148175064e-05
+9 2.7012813006877e-05
+10 2.74630783678731e-05
+11 2.27242890105117e-05
+12 1.9873647033819e-05
+13 1.69995764736086e-05
+14 1.48738618008792e-05
+15 1.54840818140656e-05
+16 1.28131523524644e-05
+17 1.23739591799676e-05
+18 1.1267198715359e-05
+19 1.13889800559264e-05
+20 1.11583394755144e-05
+21 9.61339173954912e-06
+22 1.20750373753253e-05
+23 7.8474649853888e-06
+24 8.84551536728395e-06
+25 1.04692835520837e-05
+26 8.57645773066906e-06
+27 8.60471118357964e-06
+28 7.12007749825716e-06
+29 7.67121582612162e-06
+30 9.85799579211744e-06
+31 7.06552964402363e-06
+32 7.42621796234744e-06
+33 7.51824427425163e-06
+34 5.94901666772785e-06
+35 5.79917696086341e-06
+36 6.92161211190978e-06
+37 5.59721775061917e-06
+38 5.17588296133908e-06
+39 7.27728911442682e-06
+40 5.6056737776089e-06
+41 5.54071675651358e-06
+42 4.95372978548403e-06
+43 4.85527698401711e-06
+44 5.28621012563235e-06
+45 6.17215437159757e-06
+46 4.36122081737267e-06
+47 5.76220918446779e-06
+48 5.19013838129467e-06
+49 4.74712851428194e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000149983316077851
+1 0.000147166065289639
+2 0.000148465202073567
+3 0.000152585693285801
+4 0.000144247926073149
+5 0.000148538281791843
+6 0.000143728844705038
+7 0.000149200859596021
+8 0.00015117738803383
+9 0.000149950792547315
+10 0.000145535028423183
+11 0.000144764300785027
+12 0.000152122243889607
+13 0.00015031432849355
+14 0.000148969091242179
+15 0.000150971449329518
+16 0.000149501458508894
+17 0.00014781866047997
+18 0.000151385931530967
+19 0.000146742648212239
+20 0.000147244238178246
+21 0.00014839721552562
+22 0.000151178450323641
+23 0.000149418556247838
+24 0.000147050188388675
+25 0.000150354404468089
+26 0.000148115228512324
+27 0.00014911763719283
+28 0.000148880804772489
+29 0.00014638775610365
+30 0.000148814884596504
+31 0.000147935876157135
+32 0.000147158614709042
+33 0.000150823820149526
+34 0.000148350038216449
+35 0.000150283114635386
+36 0.000147598184412345
+37 0.000150195744936354
+38 0.000147200058563612
+39 0.000149182000313886
+40 0.000148135135532357
+41 0.000148142091347836
+42 0.000145152909681201
+43 0.000147006445331499
+44 0.000151566753629595
+45 0.000149650877574459
+46 0.000148738588904962
+47 0.00014775367162656
+48 0.000146746635437012
+49 0.000148438062751666
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000134340894874185
+1 0.000159787756274454
+2 0.000148450722917914
+3 0.000111287226900458
+4 0.000184152318979613
+5 0.000146854974445887
+6 0.000191195940715261
+7 0.000141678523505107
+8 0.000122923534945585
+9 0.000134971443912946
+10 0.000174167143995874
+11 0.000181786817847751
+12 0.000114604692498688
+13 0.000138908173539676
+14 0.000143857483635657
+15 0.000127067833091132
+16 0.000139104013214819
+17 0.00015363639977295
+18 0.000121628436318133
+19 0.000164121258421801
+20 0.000158913026098162
+21 0.000148091945447959
+22 0.000122211495181546
+23 0.000141690237796865
+24 0.000160766445333138
+25 0.000132319968543015
+26 0.000151427317177877
+27 0.000141168231493793
+28 0.000144988851388916
+29 0.000166153768077493
+30 0.00014484376879409
+31 0.000152838401845656
+32 0.000161431977176107
+33 0.000127809005789459
+34 0.000149783212691545
+35 0.000131360095110722
+36 0.000155893241753802
+37 0.00013833527918905
+38 0.000159687944687903
+39 0.000142236662213691
+40 0.000152726657688618
+41 0.000150551277329214
+42 0.00018190078844782
+43 0.000160512892762199
+44 0.000120959826745093
+45 0.000135706664877944
+46 0.000144881647429429
+47 0.000153258893988095
+48 0.000163255637744442
+49 0.000148591352626681
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007693466600254833, Learning_Process.pdf b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007693466600254833, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..9e65deaec7480015bbf15fc60d6f6dd2fac82751
Binary files /dev/null and b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007693466600254833, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007693466600254833, Learning_Process.tex b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007693466600254833, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..20404a7af8d61effb35d75409f9da5a3af5878b5
--- /dev/null
+++ b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.007693466600254833, Learning_Process.tex	
@@ -0,0 +1,257 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=6.62765057478471e-06, ymax=0.0128325585430174,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000150494568515569
+1 0.00200888724066317
+2 0.00909716915339231
+3 0.000278389838058501
+4 0.000162091557285748
+5 0.000116647133836523
+6 9.49559325817972e-05
+7 8.17559484858066e-05
+8 7.33645865693688e-05
+9 6.11427676631138e-05
+10 5.52192359464243e-05
+11 4.88150872115511e-05
+12 4.50518418801948e-05
+13 4.169380190433e-05
+14 3.89434244425502e-05
+15 3.63828148692846e-05
+16 3.29779977619182e-05
+17 3.11681069433689e-05
+18 2.92351778625743e-05
+19 2.7404146749177e-05
+20 2.64445734501351e-05
+21 2.59208554780344e-05
+22 2.4759681764408e-05
+23 2.33436585403979e-05
+24 2.22037197090685e-05
+25 2.1214907974354e-05
+26 2.015098107222e-05
+27 1.95598131540464e-05
+28 1.90157297765836e-05
+29 1.80640963662881e-05
+30 1.76624780579004e-05
+31 1.70504154084483e-05
+32 1.62602336786222e-05
+33 1.59688297571847e-05
+34 1.4900339920132e-05
+35 1.52606116898824e-05
+36 1.45453959703445e-05
+37 1.45160684041912e-05
+38 1.33573576022172e-05
+39 1.36161643240484e-05
+40 1.3334345567273e-05
+41 1.29564814415062e-05
+42 1.27479215734638e-05
+43 1.21636549010873e-05
+44 1.18618390843039e-05
+45 1.17971148938523e-05
+46 1.15769762487616e-05
+47 1.11645249489811e-05
+48 1.1229099072807e-05
+49 1.10648688860238e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.00014997051039245
+1 0.00201835413463414
+2 0.00671269372105598
+3 0.000290940486593172
+4 0.000178534217411652
+5 0.000146734499139711
+6 0.000107186730019748
+7 7.6344127592165e-05
+8 6.91983659635298e-05
+9 6.45087347947992e-05
+10 5.47375711903442e-05
+11 5.91186180827208e-05
+12 4.63952055724803e-05
+13 4.20982323703356e-05
+14 3.51391900039744e-05
+15 3.23160165862646e-05
+16 3.79771990992595e-05
+17 3.35002223437186e-05
+18 3.20492326864041e-05
+19 3.32326417264994e-05
+20 2.75618895102525e-05
+21 1.98083798750304e-05
+22 1.82187777681975e-05
+23 1.88676331163151e-05
+24 2.01451966859167e-05
+25 1.9408376829233e-05
+26 2.05260585062206e-05
+27 1.80893730430398e-05
+28 1.61520038091112e-05
+29 1.79725939233322e-05
+30 1.53691307787085e-05
+31 1.49394682011916e-05
+32 1.67095477081602e-05
+33 1.48798089867341e-05
+34 2.05966243811417e-05
+35 1.26482382256654e-05
+36 1.4895463209541e-05
+37 1.36068147185142e-05
+38 1.7821266737883e-05
+39 1.26955246742e-05
+40 1.18207717605401e-05
+41 1.21194289022242e-05
+42 1.12290281322203e-05
+43 1.34417787194252e-05
+44 1.40061792990309e-05
+45 1.12690531750559e-05
+46 1.14259009933448e-05
+47 1.29621912492439e-05
+48 1.11628560262034e-05
+49 9.34903073357418e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000146483071148396
+1 0.000153020664583892
+2 0.000151795728015713
+3 0.000150300504174083
+4 0.000147671264130622
+5 0.000148691120557487
+6 0.000152618609718047
+7 0.000150895808474161
+8 0.000149123283335939
+9 0.00015303299005609
+10 0.000148422550410032
+11 0.00015173590509221
+12 0.000148324543260969
+13 0.000149309664266184
+14 0.000150705222040415
+15 0.000155186775373295
+16 0.000147580110933632
+17 0.000151163214468397
+18 0.00014938235108275
+19 0.000148493942106143
+20 0.000153005938045681
+21 0.000150942447362468
+22 0.000150676918565296
+23 0.000148846811498515
+24 0.000150958658196032
+25 0.000151718370034359
+26 0.000152121734572574
+27 0.000151702522998676
+28 0.000150338426465169
+29 0.000151615720824338
+30 0.000151240659761243
+31 0.000154729204950854
+32 0.000148601990076713
+33 0.000148898441693746
+34 0.000152327134856023
+35 0.000148743813042529
+36 0.000152107459143735
+37 0.000151219282997772
+38 0.000151279629790224
+39 0.000149871440953575
+40 0.000153591056005098
+41 0.000149429572047666
+42 0.000154510606080294
+43 0.000147751226904802
+44 0.000150790103361942
+45 0.000149967352626845
+46 0.000150758816744201
+47 0.000149584040627815
+48 0.000147948463563807
+49 0.000150142775964923
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000186048229807056
+1 0.000127454972243868
+2 0.000135705602588132
+3 0.000150610139826313
+4 0.00017000746447593
+5 0.000165969264344312
+6 0.00013402606418822
+7 0.00014482245023828
+8 0.000162487558554858
+9 0.000136365997605026
+10 0.000170221130247228
+11 0.000136694943648763
+12 0.000171980311279185
+13 0.00015731445455458
+14 0.000148779348819517
+15 0.000139718249556608
+16 0.000175875378772616
+17 0.000134003887069412
+18 0.000157137154019438
+19 0.000172178217326291
+20 0.000129280000692233
+21 0.000145013371366076
+22 0.000145925776450895
+23 0.000162908108904958
+24 0.000147378872497939
+25 0.000137630340759642
+26 0.000132570465211757
+27 0.000137992596137337
+28 0.000147152852150612
+29 0.000138403294840828
+30 0.000141567346872762
+31 0.000110531495010946
+32 0.000167397229233757
+33 0.0001592490443727
+34 0.000135252033942379
+35 0.000163017568411306
+36 0.000133766370709054
+37 0.000142644028528593
+38 0.000140033109346405
+39 0.000155742614879273
+40 0.000122705532703549
+41 0.000160412630066276
+42 0.000111678047687747
+43 0.000172808024217375
+44 0.000148552862810902
+45 0.000154168228618801
+46 0.000144943202030845
+47 0.000155587651534006
+48 0.000170846731634811
+49 0.000150774998473935
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0078032497498273, Learning_Process.pdf b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0078032497498273, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..2c717ece3fc9b3e61af6ad36974ee8572f51fd13
Binary files /dev/null and b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0078032497498273, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0078032497498273, Learning_Process.tex b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0078032497498273, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..be7deb2a98e6e6759ae0351e018c9858d4219f1c
--- /dev/null
+++ b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.0078032497498273, Learning_Process.tex	
@@ -0,0 +1,257 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.62668098021162e-06, ymax=0.0177955011743194,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000127005521790124
+1 0.000383794395020232
+2 0.011660547927022
+3 5.97485814068932e-05
+4 0.000257822714047506
+5 2.47906955337385e-05
+6 1.91440958587918e-05
+7 1.53231976582902e-05
+8 1.33974963318906e-05
+9 1.1563730367925e-05
+10 1.02604972198606e-05
+11 9.39565325097647e-06
+12 8.34482762002153e-06
+13 7.89434852777049e-06
+14 7.2423954406986e-06
+15 6.74124794386444e-06
+16 6.51180562272202e-06
+17 6.05728018854279e-06
+18 5.72912131246994e-06
+19 5.4875822570466e-06
+20 5.30387524122489e-06
+21 5.02738521390711e-06
+22 4.80842845718144e-06
+23 4.58909289591247e-06
+24 4.53279926659889e-06
+25 4.32296292274259e-06
+26 4.32033448305447e-06
+27 4.03778403779143e-06
+28 4.027384420624e-06
+29 3.92167112295283e-06
+30 3.70200018551259e-06
+31 3.66402650797681e-06
+32 3.68073847312189e-06
+33 3.58877014150494e-06
+34 3.4619522466528e-06
+35 3.53929885932303e-06
+36 3.44031604981865e-06
+37 3.21815036841144e-06
+38 3.32710601469444e-06
+39 3.24965640174923e-06
+40 3.10586324303586e-06
+41 3.07048367176321e-06
+42 3.03642900689738e-06
+43 3.13199711854395e-06
+44 2.92899221676635e-06
+45 2.98458780889632e-06
+46 2.93394555228588e-06
+47 3.02665171147964e-06
+48 2.82730070466641e-06
+49 2.78330276159977e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000148651757626794
+1 0.000330465380102396
+2 9.59752578637563e-05
+3 4.46939739049412e-05
+4 0.000157009373651817
+5 2.23457282118034e-05
+6 1.92370571312495e-05
+7 1.84384534804849e-05
+8 1.26213562907651e-05
+9 1.77849851752399e-05
+10 8.78885202837409e-06
+11 8.67334074428072e-06
+12 8.64253797772108e-06
+13 8.41958717501257e-06
+14 7.74723321228521e-06
+15 6.72695841785753e-06
+16 5.59149611945031e-06
+17 5.97071039010189e-06
+18 6.24749236521893e-06
+19 5.14056182510103e-06
+20 4.812950919586e-06
+21 4.74668013339397e-06
+22 4.72788497063448e-06
+23 5.25132918482996e-06
+24 3.87766112908139e-06
+25 4.64015556644881e-06
+26 4.10889197155484e-06
+27 4.54116025139228e-06
+28 3.35503978021734e-06
+29 3.33664797835809e-06
+30 4.56557063444052e-06
+31 4.04922229790827e-06
+32 2.86480053546256e-06
+33 3.88382750315941e-06
+34 3.2609138997941e-06
+35 3.16123851007433e-06
+36 2.69384941020689e-06
+37 3.3700500807754e-06
+38 2.88954834104516e-06
+39 2.88495016320667e-06
+40 3.33032448907034e-06
+41 2.81849224847974e-06
+42 3.00302690448007e-06
+43 2.82329824585759e-06
+44 2.89357672045298e-06
+45 2.4825251330185e-06
+46 2.71164094556298e-06
+47 2.57884494203608e-06
+48 2.59361013377202e-06
+49 2.77151684713317e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000128368876175955
+1 0.000130052139866166
+2 0.000124223239254206
+3 0.000128727740957402
+4 0.000130455606267788
+5 0.000128564846818335
+6 0.000129595253383741
+7 0.000127241743030027
+8 0.000129418578580953
+9 0.000124820246128365
+10 0.000129589374409989
+11 0.000128011670312844
+12 0.000126883140183054
+13 0.00013158397632651
+14 0.000129153529996984
+15 0.000126515325973742
+16 0.000130237036501057
+17 0.000130305314087309
+18 0.000130002561490983
+19 0.000127023857203312
+20 0.000127282706671394
+21 0.000129874388221651
+22 0.000128873827634379
+23 0.000127696563140489
+24 0.000128133076941594
+25 0.00013058353215456
+26 0.000123090168926865
+27 0.000124470781884156
+28 0.000130058630020358
+29 0.000127281266031787
+30 0.000131144333863631
+31 0.0001305583427893
+32 0.000128154715639539
+33 0.000131730776047334
+34 0.0001300173898926
+35 0.000130675034597516
+36 0.000126069891848601
+37 0.000128661704366095
+38 0.000130207859911025
+39 0.000132039276650175
+40 0.000128607294755057
+41 0.000130623171571642
+42 0.000129647291032597
+43 0.000132702392875217
+44 0.00012318670633249
+45 0.00013204148854129
+46 0.000129400927107781
+47 0.000126011276734062
+48 0.000131431937916204
+49 0.000129047984955832
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000129220687085763
+1 0.000111264911538456
+2 0.000173073291080073
+3 0.000127014078316279
+4 0.000117842158942949
+5 0.000127111372421496
+6 0.000119308184366673
+7 0.000140570089570247
+8 0.000119212272693403
+9 0.000156603098730557
+10 0.000123450518003665
+11 0.000134419809910469
+12 0.000140693431603722
+13 0.000122567595099099
+14 0.000124989775940776
+15 0.000153344764839858
+16 0.000120994191092905
+17 0.000118652838864364
+18 0.000117664822028019
+19 0.000172963860677555
+20 0.000136651942739263
+21 0.00011970306513831
+22 0.000128579078591429
+23 0.000136221264256164
+24 0.000130505577544682
+25 0.000121343582577538
+26 0.000174116692505777
+27 0.000163434538990259
+28 0.000115162860311102
+29 0.000139347088406794
+30 0.000111714289232623
+31 0.000119890726637095
+32 0.000138012954266742
+33 9.77990712272003e-05
+34 0.000114650749310385
+35 0.000108000844193157
+36 0.000149899846292101
+37 0.000129314474179409
+38 0.00011525640002219
+39 0.000104669379652478
+40 0.000132080327603035
+41 0.000112445050035603
+42 0.000110698121716268
+43 9.2198679340072e-05
+44 0.000183302166988142
+45 0.000103117716207635
+46 0.000116475326649379
+47 0.000151607251609676
+48 0.000115057220682502
+49 0.00012670322030317
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.008675382654665205, Learning_Process.pdf b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.008675382654665205, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..b38e08e47c01c8c0805167df21a36e664e9b7760
Binary files /dev/null and b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.008675382654665205, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.008675382654665205, Learning_Process.tex b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.008675382654665205, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..0733fc034c51e39433849ea5cbdaa480ecfe0752
--- /dev/null
+++ b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.008675382654665205, Learning_Process.tex	
@@ -0,0 +1,257 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=4.97106687691386e-06, ymax=0.0315769210159398,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000131963344756514
+1 0.000470426864922047
+2 0.0212084911763668
+3 0.00287827500142157
+4 0.000249642558628693
+5 0.000126674465718679
+6 9.5037670689635e-05
+7 7.86308301030658e-05
+8 6.48211571387947e-05
+9 5.60725784453098e-05
+10 4.81383212900255e-05
+11 4.40220974269323e-05
+12 3.89767628803384e-05
+13 3.64437910320703e-05
+14 3.30778893840034e-05
+15 3.05906687572133e-05
+16 2.88218361674808e-05
+17 2.64356494881213e-05
+18 2.50946322921664e-05
+19 2.33652481256286e-05
+20 2.26149186346447e-05
+21 2.11157530429773e-05
+22 2.02953233383596e-05
+23 1.91899016499519e-05
+24 1.85348853847245e-05
+25 1.81317209353438e-05
+26 1.65398760145763e-05
+27 1.60993604367832e-05
+28 1.56656951730838e-05
+29 1.48182916746009e-05
+30 1.4551902495441e-05
+31 1.42464978125645e-05
+32 1.35675982164685e-05
+33 1.31792394313379e-05
+34 1.26245549836312e-05
+35 1.26545137391076e-05
+36 1.18633679448976e-05
+37 1.21478942674003e-05
+38 1.12325733425678e-05
+39 1.10849896373111e-05
+40 1.08287440525601e-05
+41 1.06511233752826e-05
+42 1.0247684258502e-05
+43 1.07621553979698e-05
+44 9.88343435892602e-06
+45 9.84031976258848e-06
+46 9.63904130912852e-06
+47 9.44875409913948e-06
+48 9.09328900888795e-06
+49 9.0339626694913e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000126011975225993
+1 0.000393192836781964
+2 0.013684538193047
+3 0.00143370206933469
+4 0.000259915832430124
+5 0.00015800999244675
+6 0.000108167696453165
+7 6.64523468003608e-05
+8 6.60485166008584e-05
+9 5.33743295818567e-05
+10 5.63663597858977e-05
+11 4.57561436633114e-05
+12 4.66381425212603e-05
+13 3.40750557370484e-05
+14 3.62942409992684e-05
+15 3.26898116327357e-05
+16 2.76344708254328e-05
+17 3.07091941067483e-05
+18 2.60354954662034e-05
+19 2.87936072709272e-05
+20 2.16528333112365e-05
+21 2.30256828217534e-05
+22 2.06687691388652e-05
+23 2.0884042896796e-05
+24 1.73248809005599e-05
+25 1.40793972605024e-05
+26 2.03587533178506e-05
+27 1.77198708115611e-05
+28 1.53691053128568e-05
+29 1.73897915374255e-05
+30 1.44175746754627e-05
+31 1.28655074149719e-05
+32 1.36777789521147e-05
+33 1.32478016894311e-05
+34 1.4168711459206e-05
+35 9.89097588899313e-06
+36 1.36975968416664e-05
+37 8.01487931312295e-06
+38 1.25356309581548e-05
+39 1.16560331662185e-05
+40 1.09227730717976e-05
+41 9.77188210526947e-06
+42 1.12598909254302e-05
+43 9.36900505621452e-06
+44 9.75976490735775e-06
+45 8.28552310849773e-06
+46 7.80248501541791e-06
+47 7.40132736609667e-06
+48 8.44649912323803e-06
+49 7.52895584810176e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00013319609570317
+1 0.000129673135234043
+2 0.000132261731778271
+3 0.000128846746520139
+4 0.00013292467338033
+5 0.0001305784098804
+6 0.000130306856590323
+7 0.000132205706904642
+8 0.000132437300635502
+9 0.000133671681396663
+10 0.000130124331917614
+11 0.000130054133478552
+12 0.000130800501210615
+13 0.000130705739138648
+14 0.000132720189867541
+15 0.000132653658511117
+16 0.000132628381834365
+17 0.000132140339701436
+18 0.000132138578919694
+19 0.000135310983750969
+20 0.000133313558762893
+21 0.000129750682390295
+22 0.000132486573420465
+23 0.000126904124044813
+24 0.000131705819512717
+25 0.000126182436360978
+26 0.000128069063066505
+27 0.000130441854707897
+28 0.000134085115860216
+29 0.000133493507746607
+30 0.000133522786200047
+31 0.000131533714011312
+32 0.000132883491460234
+33 0.00013343637692742
+34 0.000131880427943543
+35 0.000132082917843945
+36 0.000135481241159141
+37 0.000132472676341422
+38 0.000135758309625089
+39 0.000130665372125804
+40 0.000127081293612719
+41 0.000127848965348676
+42 0.000132702829432674
+43 0.000133403853396885
+44 0.000128725354443304
+45 0.000134409783640876
+46 0.000132301371195354
+47 0.000125176724395715
+48 0.000131199121824466
+49 0.000132214292534627
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000115400973299984
+1 0.000154602021211758
+2 0.000125711056170985
+3 0.000151132859173231
+4 0.000117054769361857
+5 0.000133982553961687
+6 0.00013852832489647
+7 0.000120922901260201
+8 0.00012094547128072
+9 0.000112472880573478
+10 0.000140423799166456
+11 0.000142211356433108
+12 0.000142842109198682
+13 0.000134746194817126
+14 0.000116763229016215
+15 0.000114849244710058
+16 0.00011709239333868
+17 0.000127969862660393
+18 0.000121428667625878
+19 9.86679442576133e-05
+20 0.00011192134115845
+21 0.000144565448863432
+22 0.00012302010145504
+23 0.000171287843841128
+24 0.000127296254504472
+25 0.000177713183802553
+26 0.000165072298841551
+27 0.000139487936394289
+28 0.00010765183105832
+29 0.000112758672912605
+30 0.00011218534928048
+31 0.000129754931549542
+32 0.000116351016913541
+33 0.000113371665065642
+34 0.000127457693452016
+35 0.000120541037176736
+36 9.48390152188949e-05
+37 0.000119040974823292
+38 9.49527457123622e-05
+39 0.000135755079099908
+40 0.000172251267940737
+41 0.000162660333444364
+42 0.000115100061520934
+43 0.000112568515760358
+44 0.000155264147906564
+45 0.000101688601716887
+46 0.00012353619968053
+47 0.000183526339242235
+48 0.000131489519844763
+49 0.000124314086860977
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.009001651027335284, Learning_Process.pdf b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.009001651027335284, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..df4b03a089e6a60129bb37267dc06f7fb6a5e2c7
Binary files /dev/null and b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.009001651027335284, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.009001651027335284, Learning_Process.tex b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.009001651027335284, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..f8587a840905e9fcafea8fa27ad2cfa5f11335e7
--- /dev/null
+++ b/models_URWF/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.009001651027335284, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.99061734024133e-06, ymax=0.000590062055899163,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000135154870804399
+1 0.000464059092337266
+2 0.000135924899950624
+3 7.75973967392929e-05
+4 5.48176940355916e-05
+5 4.27673003287055e-05
+6 3.56418458977714e-05
+7 3.03055730910273e-05
+8 2.65903181571048e-05
+9 2.36169234995032e-05
+10 2.07793855224736e-05
+11 1.88214362424333e-05
+12 1.7308415408479e-05
+13 1.59540704771644e-05
+14 1.46279080581735e-05
+15 1.37070819619112e-05
+16 1.26754257507855e-05
+17 1.1916928087885e-05
+18 1.13227933979942e-05
+19 1.04934215414687e-05
+20 1.00539673439926e-05
+21 9.45980809774483e-06
+22 9.22205163078615e-06
+23 9.09481695998693e-06
+24 8.68063580128364e-06
+25 8.32986552268267e-06
+26 7.7761606007698e-06
+27 7.60718648962211e-06
+28 7.55272594687995e-06
+29 7.14849966243492e-06
+30 6.93258562023402e-06
+31 6.60179557598894e-06
+32 6.74236935083172e-06
+33 6.43044859316433e-06
+34 6.29373334959382e-06
+35 6.07843367106398e-06
+36 5.92092010265333e-06
+37 5.88032571613439e-06
+38 5.5999016694841e-06
+39 5.53694098925916e-06
+40 5.55382212041877e-06
+41 5.31154864802375e-06
+42 5.33004003955284e-06
+43 5.13835038873367e-06
+44 5.1128977247572e-06
+45 4.91596529172966e-06
+46 5.01446447742637e-06
+47 4.89291687699733e-06
+48 4.82202767670969e-06
+49 4.69370934297331e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000161102550919168
+1 0.000425276870373636
+2 0.000152499254909344
+3 6.13262745901011e-05
+4 4.84259180666413e-05
+5 4.31515618402045e-05
+6 3.58093784598168e-05
+7 3.02104253933067e-05
+8 2.53609505307395e-05
+9 2.01816528715426e-05
+10 2.06935201276792e-05
+11 1.93218511412852e-05
+12 1.61128537001787e-05
+13 1.447220256523e-05
+14 1.47433938764152e-05
+15 1.2324218005233e-05
+16 1.28490983115626e-05
+17 1.24442449305207e-05
+18 1.08288140836521e-05
+19 1.24130747281015e-05
+20 1.09345437522279e-05
+21 1.16974315460538e-05
+22 9.83595327852527e-06
+23 7.04598960510339e-06
+24 7.03817886460456e-06
+25 6.86472185407183e-06
+26 8.91276158654364e-06
+27 7.72815383243142e-06
+28 5.95572419115342e-06
+29 7.12591736373724e-06
+30 6.91662717144936e-06
+31 7.94973311712965e-06
+32 5.0172484407085e-06
+33 5.99957047597854e-06
+34 5.60624539502896e-06
+35 6.16756233284832e-06
+36 6.19747470409493e-06
+37 5.14711564392201e-06
+38 6.46334819975891e-06
+39 6.22589459453593e-06
+40 4.68291136712651e-06
+41 5.61232354812091e-06
+42 4.54353494205861e-06
+43 5.23640255778446e-06
+44 4.60557930637151e-06
+45 5.50659069631365e-06
+46 3.80264032173727e-06
+47 4.15516342400224e-06
+48 4.60543742519803e-06
+49 4.31810394729837e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000137972529046237
+1 0.000140170741360635
+2 0.00013900562771596
+3 0.000137168855872005
+4 0.000136168178869411
+5 0.000135772817884572
+6 0.000138569710543379
+7 0.000136421440402046
+8 0.00013711306382902
+9 0.000138417948619463
+10 0.000137480747071095
+11 0.000137853494379669
+12 0.000137541544972919
+13 0.000134378424263559
+14 0.000137422335683368
+15 0.000137870767503045
+16 0.000136198897962458
+17 0.000136803297209553
+18 0.000138563875225373
+19 0.000135403868625872
+20 0.000137753537273966
+21 0.000138994597364217
+22 0.000137540177092887
+23 0.000137613009428605
+24 0.000139816766022705
+25 0.000139767653308809
+26 0.000139882802614011
+27 0.000137892435304821
+28 0.000136302449391223
+29 0.00013956478505861
+30 0.000141300042741932
+31 0.000136568458401598
+32 0.000138178889756091
+33 0.000137766328407452
+34 0.000141219818033278
+35 0.000138064802740701
+36 0.000137324474053457
+37 0.000136621223646216
+38 0.000135263995616697
+39 0.000137803872348741
+40 0.000132979490444995
+41 0.000135299953399226
+42 0.000134323257952929
+43 0.000140213334816508
+44 0.000137022158014588
+45 0.000137643160996959
+46 0.000136675735120662
+47 0.000138462622999214
+48 0.000137733019073494
+49 0.000137078939587809
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000135491864057258
+1 0.000117143405077513
+2 0.000128624335047789
+3 0.000142817923915572
+4 0.000152980632265098
+5 0.000157012778799981
+6 0.000133583307615481
+7 0.000149298881297
+8 0.000144215562613681
+9 0.000130823769723065
+10 0.000140088988700882
+11 0.000137638111482374
+12 0.0001407729141647
+13 0.000169922233908437
+14 0.000141131808049977
+15 0.000138060466269962
+16 0.000153833258082159
+17 0.0001474548043916
+18 0.000130731437820941
+19 0.000158523820573464
+20 0.000139026538818143
+21 0.000127280422020704
+22 0.000140157921123318
+23 0.000140574571560137
+24 0.000119348522275686
+25 0.000121309771202505
+26 0.000118956777441781
+27 0.000138548144605011
+28 0.000151715168613009
+29 0.000121664976177271
+30 0.000106415907794144
+31 0.000148814215208404
+32 0.000134247806272469
+33 0.000138595161843114
+34 0.000107176558231004
+35 0.000133958950755186
+36 0.000143510100315325
+37 0.000148440041812137
+38 0.000160411887918599
+39 0.000137864102725871
+40 0.000180563118192367
+41 0.000160299110575579
+42 0.00017398688942194
+43 0.000118455580377486
+44 0.000144265868584625
+45 0.000142414166475646
+46 0.000148507679114118
+47 0.000132549277623184
+48 0.000137949362397194
+49 0.000143998928251676
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0002281487286231276, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0002281487286231276, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..ef6645d9a0f3debe96e75f87d2a0e945b9abf3cf
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0002281487286231276, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0002281487286231276, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0002281487286231276, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..1608318dd0b1df56f8448d7f883038dfe7df182e
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0002281487286231276, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.12081875612436e-06, ymax=0.000209161986712531,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000135252645122819
+1 9.67782034422271e-05
+2 7.29003077140078e-05
+3 5.98770275246352e-05
+4 4.90778256789781e-05
+5 4.0133687434718e-05
+6 3.48605753970332e-05
+7 2.92379954771604e-05
+8 2.61456716543762e-05
+9 2.23099250433734e-05
+10 1.98436737264274e-05
+11 1.70857365446864e-05
+12 1.59653318405617e-05
+13 1.46621687235893e-05
+14 1.3247091374069e-05
+15 1.18568641482852e-05
+16 1.10268565549632e-05
+17 1.02735157270217e-05
+18 9.54475399339572e-06
+19 8.61080479808152e-06
+20 8.41767450765474e-06
+21 7.82505867391592e-06
+22 7.41750318411505e-06
+23 7.07204344507772e-06
+24 8.18973876448581e-06
+25 6.15759472566424e-06
+26 3.5409873817116e-05
+27 5.71415739614167e-06
+28 5.41366989637027e-06
+29 5.22096570421127e-06
+30 5.00543910675333e-06
+31 4.76178547614836e-06
+32 4.87092984258197e-06
+33 4.52274707640754e-06
+34 4.35666379416944e-06
+35 4.34611138189211e-06
+36 4.1069747567235e-06
+37 3.99640293835546e-06
+38 3.92520132663776e-06
+39 3.83364249501028e-06
+40 3.6692654248327e-06
+41 3.47061495631351e-06
+42 3.42819203069666e-06
+43 3.34184937855753e-06
+44 3.4356378364464e-06
+45 3.1830375064601e-06
+46 3.19615742228052e-06
+47 3.04945388052147e-06
+48 3.06497804558603e-06
+49 2.94961432700802e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000120428834634367
+1 0.000102339072327595
+2 9.12444884306751e-05
+3 6.40950092929415e-05
+4 5.19295463163871e-05
+5 4.98532572237309e-05
+6 3.63570325134788e-05
+7 3.67591201211326e-05
+8 2.29695233429084e-05
+9 2.46971521846717e-05
+10 2.08198161999462e-05
+11 2.30697369261179e-05
+12 1.48697681652266e-05
+13 1.40325064421631e-05
+14 1.09061620605644e-05
+15 1.14169042717549e-05
+16 1.03133479569806e-05
+17 8.10131950856885e-06
+18 8.69208361109486e-06
+19 9.64178070717026e-06
+20 8.46579041535733e-06
+21 7.02647230355069e-06
+22 6.2739477471041e-06
+23 5.81199446969549e-06
+24 6.30520253253053e-06
+25 7.10880294718663e-06
+26 5.32052808921435e-06
+27 5.88411739954608e-06
+28 5.98440556132118e-06
+29 5.86484748055227e-06
+30 5.59958925805404e-06
+31 5.91797743254574e-06
+32 3.21345737575029e-06
+33 4.49529488832923e-06
+34 4.64508184450096e-06
+35 3.40917040375643e-06
+36 4.23797109760926e-06
+37 4.38077904618694e-06
+38 3.3749472549971e-06
+39 3.2447780995426e-06
+40 3.68915357285005e-06
+41 4.50790594186401e-06
+42 3.88113812732627e-06
+43 3.90899640478892e-06
+44 2.85439887193206e-06
+45 3.46927481587045e-06
+46 2.61299737758236e-06
+47 3.25687074109737e-06
+48 2.86686372419354e-06
+49 2.95109543912986e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000133234803797677
+1 0.000135363967274316
+2 0.000134575471747667
+3 0.000135208261781372
+4 0.000136698159622028
+5 0.000132740286062472
+6 0.000131652617710643
+7 0.00013401651813183
+8 0.000133268782519735
+9 0.000132724147988483
+10 0.000131914057419635
+11 0.000134168323711492
+12 0.00013420358300209
+13 0.000134802161483094
+14 0.000136362286866643
+15 0.000134513917146251
+16 0.000133184672449715
+17 0.000135149224661291
+18 0.000132332745124586
+19 0.000134458066895604
+20 0.000131924054585397
+21 0.000133174384245649
+22 0.000133850466227159
+23 0.000130738524603657
+24 0.000131964741740376
+25 0.000135241498355754
+26 0.000134896006784402
+27 0.000133038309286349
+28 0.00013670306361746
+29 0.000132829911308363
+30 0.000132478817249648
+31 0.000135129565023817
+32 0.000134516187245026
+33 0.000133028457639739
+34 0.000135860143927857
+35 0.000133029388962314
+36 0.000133251887746155
+37 0.000131658700411208
+38 0.000135695619974285
+39 0.000129360167193227
+40 0.000135366077302024
+41 0.000132894871057943
+42 0.000136785020004027
+43 0.000135547612444498
+44 0.000133701498270966
+45 0.00013148138532415
+46 0.000133589128381573
+47 0.00013032800052315
+48 0.000130007611005567
+49 0.000135197726194747
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000136551301693544
+1 0.000116213981527835
+2 0.000127195453387685
+3 0.000120541219075676
+4 0.000106089515611529
+5 0.000141290132887661
+6 0.00015144533244893
+7 0.00013410703104455
+8 0.000136758215376176
+9 0.00014186100452207
+10 0.000152164240716957
+11 0.000128203289932571
+12 0.000128308267449029
+13 0.000124183556181379
+14 0.000108966683910694
+15 0.000124625730677508
+16 0.000140445641591214
+17 0.000121489938464947
+18 0.000146951919305138
+19 0.00012576712470036
+20 0.000147910977830179
+21 0.000136542221298441
+22 0.000134193222038448
+23 0.000160291427164339
+24 0.000148452934809029
+25 0.000119806842121761
+26 0.000125879683764651
+27 0.000137619383167475
+28 0.000108613960037474
+29 0.000141331038321368
+30 0.00014761793136131
+31 0.000123780104331672
+32 0.000124139885883778
+33 0.000140535237733275
+34 0.000111682049464434
+35 0.000140137461130507
+36 0.000138065297505818
+37 0.000152724023791961
+38 0.000115651404485106
+39 0.00016976468032226
+40 0.000118894786282908
+41 0.00014089657634031
+42 0.000107211133581586
+43 0.000118987009045668
+44 0.000133080131490715
+45 0.000153595479787327
+46 0.000133186273160391
+47 0.000165726596605964
+48 0.000165914447279647
+49 0.000122468962217681
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.002451086534562512, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.002451086534562512, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..3a311ec5888791955f8abdec242ce2238adc9d7e
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.002451086534562512, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.002451086534562512, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.002451086534562512, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..8d7c693cb41e27410ccd713a1e1184125bb0a597
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.002451086534562512, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=7.29632953169147e-08, ymax=0.000259118445995552,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000135548209073022
+1 1.70015373441856e-05
+2 8.82947733771289e-06
+3 4.83179474031203e-06
+4 3.5464424854581e-06
+5 2.5963825009967e-06
+6 2.16475950765016e-06
+7 1.76225262293883e-06
+8 1.62117100899195e-06
+9 1.40362283218565e-06
+10 1.18765751722094e-06
+11 1.09919801616343e-06
+12 9.62357830758265e-07
+13 8.88399370069237e-07
+14 8.12515111192624e-07
+15 8.20987224869896e-07
+16 6.55541498417733e-07
+17 5.90255922361393e-07
+18 5.03558339914889e-07
+19 4.83664052808308e-07
+20 4.51016859415176e-07
+21 4.20697119807301e-07
+22 4.00321255256131e-07
+23 3.82287055344932e-07
+24 3.86252679618337e-07
+25 3.35185461608489e-07
+26 3.05230827279956e-07
+27 2.8396661377883e-07
+28 2.85707415059733e-07
+29 2.74281546808197e-07
+30 2.62390670968671e-07
+31 2.28264880774987e-07
+32 2.20293813413264e-07
+33 2.26150106641398e-07
+34 2.21841645497989e-07
+35 2.05878237125035e-07
+36 1.94468626091293e-07
+37 1.8105444610228e-07
+38 1.67483207746955e-07
+39 1.67592006050654e-07
+40 1.68418054613539e-07
+41 1.59417226086589e-07
+42 1.51769967260407e-07
+43 1.40453821018127e-07
+44 1.58673415739941e-07
+45 1.40412922178257e-07
+46 6.11905079495045e-07
+47 1.31627118094002e-07
+48 1.28423508272135e-07
+49 1.13017726732778e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000117297262477223
+1 2.07968423637794e-05
+2 6.82328754919581e-06
+3 4.80234712085803e-06
+4 3.1207885058393e-06
+5 2.66149777417013e-06
+6 1.7956172086997e-06
+7 1.86217528153065e-06
+8 1.3355831924855e-06
+9 1.21029393085337e-06
+10 1.20010463433573e-06
+11 1.05685069229366e-06
+12 9.62760509537475e-07
+13 7.26363168723765e-07
+14 7.00746056736534e-07
+15 7.04998512901511e-07
+16 7.3024295943469e-07
+17 5.83940789056214e-07
+18 1.02970750504028e-06
+19 6.43488874629838e-07
+20 4.03983420937948e-07
+21 3.87768722021065e-07
+22 3.69039554470874e-07
+23 3.77171289756006e-07
+24 3.22490762982852e-07
+25 2.75268121185945e-07
+26 2.90983507511555e-07
+27 3.13603976564991e-07
+28 3.80494583396285e-07
+29 3.23613505770481e-07
+30 1.95417172221823e-07
+31 1.85591829904297e-07
+32 1.57849783022357e-07
+33 1.71149764582879e-07
+34 2.03528415454457e-07
+35 1.87590657674264e-07
+36 1.85876601221935e-07
+37 2.39390686829211e-07
+38 1.5800654296072e-07
+39 1.2740059673888e-07
+40 1.84760878596535e-07
+41 1.06903080165921e-07
+42 1.33953506065154e-07
+43 1.34536307427879e-07
+44 1.61445839808039e-07
+45 1.13318428418552e-07
+46 1.4624609434577e-07
+47 1.25774548109803e-07
+48 1.06368524654954e-07
+49 1.05800076255491e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000132847766508348
+1 0.000134849513415247
+2 0.000134111411171034
+3 0.000132758534164168
+4 0.000133419423946179
+5 0.000129797437693924
+6 0.000135572365252301
+7 0.000132506669615395
+8 0.000131978857098147
+9 0.000135468217195012
+10 0.000132796107209288
+11 0.000132944536744617
+12 0.000130918473587371
+13 0.000133399662445299
+14 0.00013428287638817
+15 0.000130061293020844
+16 0.000135223614051938
+17 0.000131955181132071
+18 0.000132127272081561
+19 0.000129001928144135
+20 0.000135840629809536
+21 0.000135082838824019
+22 0.000132214176119305
+23 0.000135281661641784
+24 0.000133541150717065
+25 0.000133695182739757
+26 0.000131780456285924
+27 0.000133103181724437
+28 0.000133823559735902
+29 0.000134466783492826
+30 0.000152679451275617
+31 0.000134821733809076
+32 0.000132231216412038
+33 0.000133427383843809
+34 0.000134255926241167
+35 0.000135062786284834
+36 0.000135048408992589
+37 0.00013048859545961
+38 0.000134485817397945
+39 0.000133696405100636
+40 0.000135880211018957
+41 0.000134392961626872
+42 0.000134438785607927
+43 0.000134765505208634
+44 0.000136173155624419
+45 0.000130669664940797
+46 0.000133509165607393
+47 0.000128721774672158
+48 0.000136412592837587
+49 0.000133465669932775
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000140773117891513
+1 0.000118296877190005
+2 0.000125733626191504
+3 0.000136772097903304
+4 0.000135966402012855
+5 0.000168076439877041
+6 0.0001143373810919
+7 0.000141109267133288
+8 0.000146136415423825
+9 0.000113810230686795
+10 0.000141111129778437
+11 0.000141666663694195
+12 0.000156664624228142
+13 0.000134710266138427
+14 0.000126966435345821
+15 0.000160632698680274
+16 0.000112950314360205
+17 0.000150686013512313
+18 0.000143488854519092
+19 0.000172860294696875
+20 0.000111888046376407
+21 0.000119300850201398
+22 0.000153030312503688
+23 0.000116361705295276
+24 0.000134812857140787
+25 0.000131267035612836
+26 0.000150480685988441
+27 0.000137459690449759
+28 0.000128903062432073
+29 0.000127953622722998
+30 0.000103301812487189
+31 0.000121811310236808
+32 0.000143461278639734
+33 0.000133379697217606
+34 0.00012865370081272
+35 0.000122255689348094
+36 0.000118858821224421
+37 0.0001617765519768
+38 0.000126784609165043
+39 0.000132946515805088
+40 0.000111205990833696
+41 0.000126701488625258
+42 0.00012553614214994
+43 0.00012343458365649
+44 0.000109594991954509
+45 0.000158751601702534
+46 0.000134101166622713
+47 0.000178696805960499
+48 0.000108090542198624
+49 0.000134664456709288
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0032405136720096944, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0032405136720096944, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..2f2389cc272beea459252e205d690a4d7ad2f5cf
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0032405136720096944, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0032405136720096944, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0032405136720096944, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..566bbbbd54d0e32dbec5ada725bbf473a43432b7
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0032405136720096944, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=7.92732987538452e-08, ymax=0.000237798740443449,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000131651817355305
+1 2.08831970667234e-05
+2 8.81122923601652e-06
+3 5.4090205594548e-06
+4 3.4118854728149e-06
+5 2.50951052294113e-06
+6 1.9882722881448e-06
+7 1.68876044881472e-06
+8 1.42707324357616e-06
+9 1.21551568099676e-06
+10 1.05236142644571e-06
+11 9.58766008807288e-07
+12 8.52297205256036e-07
+13 7.83466589382442e-07
+14 7.21862022601272e-07
+15 6.2016846413826e-07
+16 5.99271402279555e-07
+17 5.51366838408285e-07
+18 4.82791108424863e-07
+19 4.71893287112835e-07
+20 4.32195406574465e-07
+21 4.15565523326222e-07
+22 3.9220739722623e-07
+23 3.52581906781779e-07
+24 3.51028006662091e-07
+25 3.22926211993035e-07
+26 3.08161105522231e-07
+27 2.84375886394628e-07
+28 2.85245221220976e-07
+29 2.58225043126004e-07
+30 2.38826743270693e-07
+31 2.35773740087097e-07
+32 2.20977810272416e-07
+33 2.21246153842003e-07
+34 2.09464005251903e-07
+35 1.97095261000868e-07
+36 1.87625332159769e-07
+37 1.93727899500118e-07
+38 1.69418854056858e-07
+39 1.69676567907118e-07
+40 1.68615557072371e-07
+41 1.57165203518161e-07
+42 1.56902615344734e-07
+43 1.5130252961626e-07
+44 1.56378604287966e-07
+45 1.43451472922607e-07
+46 1.38608839961307e-07
+47 1.35399048417639e-07
+48 1.27826410789567e-07
+49 1.23572519328263e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000138527291710488
+1 1.95645097846864e-05
+2 9.07877438294236e-06
+3 4.56660563941114e-06
+4 3.15033389597374e-06
+5 2.92891604658507e-06
+6 2.49151548814552e-06
+7 1.6058041865108e-06
+8 1.3191719290262e-06
+9 1.23948518648831e-06
+10 1.10175790268841e-06
+11 9.48415106449829e-07
+12 7.00663861152862e-07
+13 7.1134758172775e-07
+14 8.43255463678361e-07
+15 7.66086657222331e-07
+16 5.25349435065436e-07
+17 4.40783338717665e-07
+18 6.22938102878834e-07
+19 4.63722614085782e-07
+20 4.36503995615567e-07
+21 3.43037044103767e-07
+22 3.7879229353166e-07
+23 3.57421072294528e-07
+24 2.44755966605226e-07
+25 3.30217375221764e-07
+26 2.65376655761429e-07
+27 2.8713861865981e-07
+28 2.35903485190647e-07
+29 3.44515768802012e-07
+30 2.77058148867582e-07
+31 1.98969516418401e-07
+32 2.34164190260344e-07
+33 1.8627230247148e-07
+34 2.43868925053903e-07
+35 2.1405772088201e-07
+36 2.21037140590852e-07
+37 1.7793057338622e-07
+38 2.26618723786487e-07
+39 2.16085524584742e-07
+40 1.66041985494303e-07
+41 1.67038635368044e-07
+42 1.26952542700565e-07
+43 1.68638948139233e-07
+44 1.21921033269246e-07
+45 1.68580626791481e-07
+46 1.4087082433889e-07
+47 1.14071234236235e-07
+48 1.27019731621658e-07
+49 1.27383813719462e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00013257548562251
+1 0.000130043932585977
+2 0.000130870859720744
+3 0.000128977611893788
+4 0.000134130139485933
+5 0.00013222529378254
+6 0.000132661123643629
+7 0.00013378556468524
+8 0.000129247186123393
+9 0.00013204527203925
+10 0.000133168665342964
+11 0.000135296853841282
+12 0.000134628324303776
+13 0.000131872089696117
+14 0.00013447561650537
+15 0.000133888897835277
+16 0.000133477646159008
+17 0.000132281216792762
+18 0.00013160151138436
+19 0.000132314788061194
+20 0.000133212801301852
+21 0.000133592897327617
+22 0.000130951564642601
+23 0.000134366549900733
+24 0.000135156500618905
+25 0.000132049710373394
+26 0.000133728346554562
+27 0.000131457651150413
+28 0.000134061730932444
+29 0.000133023306261748
+30 0.000134293921291828
+31 0.000130744592752308
+32 0.000132715533254668
+33 0.000132194370962679
+34 0.000130528293084353
+35 0.000135400623548776
+36 0.00013067529653199
+37 0.000134315268951468
+38 0.000130764383357018
+39 0.000130758795421571
+40 0.000133008492412046
+41 0.00013253815995995
+42 0.000133237044792622
+43 0.000132381872390397
+44 0.000131376582430676
+45 0.000132244473206811
+46 0.000133673544041812
+47 0.000132689106976613
+48 0.000133716472191736
+49 0.000133801324409433
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000132207234855741
+1 0.000153687913552858
+2 0.000147855069371872
+3 0.000165257180924527
+4 0.000117465038783848
+5 0.000134177782456391
+6 0.00012790817709174
+7 0.000122312500025146
+8 0.000159779592650011
+9 0.000145388097735122
+10 0.000124602564028464
+11 0.000107239749922883
+12 0.00011500611435622
+13 0.000137827315484174
+14 0.000115298513264861
+15 0.000117972449515946
+16 0.00012155336298747
+17 0.000134495363454334
+18 0.000139389812829904
+19 0.000133474910398945
+20 0.000125093021779321
+21 0.000122684446978383
+22 0.000146456819493324
+23 0.000116893555969
+24 0.00010776387352962
+25 0.000136558970552869
+26 0.000121880024380516
+27 0.000141471144161187
+28 0.000118581418064423
+29 0.000127326333313249
+30 0.000116141804028302
+31 0.00014803146768827
+32 0.000130445740069263
+33 0.000135039372253232
+34 0.000150455933180638
+35 0.000108281245047692
+36 0.000148488747072406
+37 0.00011374903988326
+38 0.000149899977259338
+39 0.000147836268297397
+40 0.000129681517137215
+41 0.000131795983179472
+42 0.000125240490888245
+43 0.000134052475914359
+44 0.000141773532959633
+45 0.000134612462716177
+46 0.000122914891107939
+47 0.000129034277051687
+48 0.000119560972962063
+49 0.000119344775157515
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0036016303485493107, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0036016303485493107, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..50ec63561cd2a7e2c4d52904a34dc9cdde975210
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0036016303485493107, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0036016303485493107, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0036016303485493107, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..f4cc07e0011099f73e193744953b2b58ee8c1859
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0036016303485493107, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=4.78067361640262e-08, ymax=0.000279475141968183,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000136124494019896
+1 2.32736838370329e-05
+2 7.84384610597044e-06
+3 4.49315530204331e-06
+4 2.85055443782767e-06
+5 2.07320135814371e-06
+6 1.48254332543729e-06
+7 1.29878526422544e-06
+8 1.07643450064643e-06
+9 9.3042234539098e-07
+10 8.01499481895007e-07
+11 7.43329962915595e-07
+12 6.42418797269784e-07
+13 5.34182618139312e-07
+14 5.0768085202435e-07
+15 4.58930713875816e-07
+16 4.29031871362895e-07
+17 3.9397079376613e-07
+18 3.75648937733786e-07
+19 3.23817914704705e-07
+20 3.15139772055772e-07
+21 2.82066963563921e-07
+22 2.57261888236826e-07
+23 2.53277590900325e-07
+24 2.35320428032537e-07
+25 2.14414143329122e-07
+26 2.21988173620957e-07
+27 2.03922638775111e-07
+28 1.77508638898871e-07
+29 1.77847311988444e-07
+30 1.64202432983984e-07
+31 1.57885637008803e-07
+32 1.55308455873637e-07
+33 1.44962726267295e-07
+34 1.51155134631153e-07
+35 1.37786116738425e-07
+36 1.29850448615798e-07
+37 1.19967509704111e-07
+38 1.21410209885653e-07
+39 1.12082766179356e-07
+40 1.12161913534692e-07
+41 1.15068424122455e-07
+42 1.10921632767713e-07
+43 9.7415970401471e-08
+44 9.92004203226315e-08
+45 9.00569148143404e-08
+46 9.39495521379285e-08
+47 8.85096085312398e-08
+48 9.30249299813113e-08
+49 8.56488568956593e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000148719424032606
+1 1.65596557053505e-05
+2 7.09010282662348e-06
+3 4.38714096162585e-06
+4 3.13530335915857e-06
+5 1.9321769286762e-06
+6 2.27482814807445e-06
+7 1.26348413687083e-06
+8 9.51913534663618e-07
+9 8.22077879547578e-07
+10 8.51626680287154e-07
+11 6.20401578999008e-07
+12 5.68612051665696e-07
+13 6.05612910931086e-07
+14 6.19402726442786e-07
+15 4.52996033573072e-07
+16 4.34572939411737e-07
+17 5.08593927861511e-07
+18 2.87719643665696e-07
+19 3.52392333979878e-07
+20 2.91971389287937e-07
+21 2.47824630150717e-07
+22 3.0847851917315e-07
+23 2.15470933540018e-07
+24 2.15378165080438e-07
+25 3.16322115168077e-07
+26 2.11180960718593e-07
+27 1.57778146103738e-07
+28 1.91482129707765e-07
+29 1.39951836786167e-07
+30 1.63956727305958e-07
+31 1.45730297163027e-07
+32 1.63107685580144e-07
+33 1.42786333867662e-07
+34 1.38942354510618e-07
+35 1.26663948663008e-07
+36 1.20866914699036e-07
+37 1.02642410126919e-07
+38 3.1401168598677e-07
+39 1.3409170662726e-07
+40 1.18291112016777e-07
+41 7.63755139132627e-08
+42 8.39394473928223e-08
+43 1.5164478384122e-07
+44 1.03347815638699e-07
+45 1.1707822977769e-07
+46 7.09103673557365e-08
+47 1.04472249518039e-07
+48 8.17601275571178e-08
+49 8.06740771963632e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00013767895870842
+1 0.00013863381172996
+2 0.000136594491777942
+3 0.000133687717607245
+4 0.000136837843456306
+5 0.000138540679472499
+6 0.000137049908516929
+7 0.000137668204843067
+8 0.000136389644467272
+9 0.000136646878672764
+10 0.000133477296913043
+11 0.000139004623633809
+12 0.000136492526507936
+13 0.000138285307912156
+14 0.000136177375679836
+15 0.000138710514875129
+16 0.000136013972223736
+17 0.00013691812637262
+18 0.000138449220685288
+19 0.000139347685035318
+20 0.000140650707180612
+21 0.000134742280351929
+22 0.000137146766064689
+23 0.000131516018882394
+24 0.00013749125355389
+25 0.000138252624310553
+26 0.00013772641250398
+27 0.00013702800788451
+28 0.00014000729424879
+29 0.000139574112836272
+30 0.000136268878122792
+31 0.00013855763245374
+32 0.00013972599117551
+33 0.000137411145260558
+34 0.000137534458190203
+35 0.000135677400976419
+36 0.000139383657369763
+37 0.000140353164169937
+38 0.000140668198582716
+39 0.000137392358737998
+40 0.000138896270073019
+41 0.000139331226819195
+42 0.000138539937324822
+43 0.000136535672936589
+44 0.000138917297590524
+45 0.000138695977511816
+46 0.000135944719659165
+47 0.000139025549287908
+48 0.000138633869937621
+49 0.000138514995342121
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000135161375510506
+1 0.000129595748148859
+2 0.000143329278216697
+3 0.000171538806171156
+4 0.000143998229759745
+5 0.000128351923194714
+6 0.000140634292620234
+7 0.000138324408908375
+8 0.000147954386193305
+9 0.000146499602124095
+10 0.000172675456269644
+11 0.000126037732115947
+12 0.000145259764394723
+13 0.000131307111587375
+14 0.000152529086335562
+15 0.000125916310935281
+16 0.000150092324474826
+17 0.000143929311889224
+18 0.000129961161292158
+19 0.000118930336611811
+20 0.000107714513433166
+21 0.000162680153152905
+22 0.000138318107929081
+23 0.000188418067409657
+24 0.000138464805786498
+25 0.000131469874759205
+26 0.000138499148306437
+27 0.000141945609357208
+28 0.000115074217319489
+29 0.000120744974992704
+30 0.000146896825754084
+31 0.000128705447423272
+32 0.00011447291035438
+33 0.000138785675517283
+34 0.000137152484967373
+35 0.000155264904606156
+36 0.000118843337986618
+37 0.000112918394734152
+38 0.00010886639211094
+39 0.000137916489620693
+40 0.000125899867271073
+41 0.000136597998789512
+42 0.000127254781546071
+43 0.000144186851684935
+44 0.000122348326840438
+45 0.000125892387586646
+46 0.000157743954332545
+47 0.000125193037092686
+48 0.000126819650176913
+49 0.000123448509839363
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.004133852495865525, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.004133852495865525, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..182d2fe067138a28b85c88852070305b51561a7d
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.004133852495865525, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.004133852495865525, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.004133852495865525, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..75ea727b57a90393930cbd4483f7e180bdaaee29
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.004133852495865525, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.63656947805597e-08, ymax=0.000311574334399228,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000132738496176898
+1 1.85004901140928e-05
+2 5.925548975938e-06
+3 3.72251315639005e-06
+4 3.16306022796198e-06
+5 1.68539736478124e-06
+6 1.13102908017026e-06
+7 9.09565301299153e-07
+8 7.55044879952038e-07
+9 6.35080709798785e-07
+10 5.38798587967904e-07
+11 4.68102541617554e-07
+12 4.16925274748792e-07
+13 3.85489698828678e-07
+14 3.51678096421892e-07
+15 3.06311221720534e-07
+16 3.0418678420574e-07
+17 2.64684899775602e-07
+18 2.55278649774482e-07
+19 2.45850287683425e-07
+20 2.05290788812817e-07
+21 2.01441579861239e-07
+22 1.82249650038102e-07
+23 1.71814789950986e-07
+24 1.63724195090253e-07
+25 1.59122649279198e-07
+26 1.48494663676502e-07
+27 1.44208115671063e-07
+28 1.45918136240653e-07
+29 1.27034013530647e-07
+30 1.219682133069e-07
+31 1.16639917280281e-07
+32 1.02743719310183e-07
+33 1.0249225113057e-07
+34 1.03520882532848e-07
+35 9.49194287613864e-08
+36 9.28151919765696e-08
+37 9.04043631066997e-08
+38 8.46199483817145e-08
+39 8.53115338372845e-08
+40 7.9988964785116e-08
+41 7.85856002494256e-08
+42 7.68435199915984e-08
+43 7.48636210801124e-08
+44 7.08888094891336e-08
+45 6.68381687773945e-08
+46 7.12242993472501e-08
+47 6.77237892432458e-08
+48 6.51801457252077e-08
+49 6.32806589351276e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000153402288560756
+1 2.33752271014964e-05
+2 8.30394401418744e-06
+3 2.59018429460411e-06
+4 3.36577431880869e-06
+5 1.08044241642347e-06
+6 1.17529123144777e-06
+7 9.50407866184833e-07
+8 7.62180320634798e-07
+9 6.85641964537353e-07
+10 5.6814627669155e-07
+11 5.80072082811967e-07
+12 5.13191764639487e-07
+13 3.44047862199659e-07
+14 3.33168884480983e-07
+15 4.69928465918201e-07
+16 2.53611460721004e-07
+17 2.62261409034181e-07
+18 2.30409114010399e-07
+19 2.00763935254145e-07
+20 2.1336839495234e-07
+21 1.59997739501705e-07
+22 1.89157717045418e-07
+23 2.07525644668749e-07
+24 1.54768144966511e-07
+25 1.67151867458415e-07
+26 1.71506144397426e-07
+27 1.30908546225328e-07
+28 1.36328154098919e-07
+29 1.31112372514508e-07
+30 1.03853757593697e-07
+31 1.03958633701495e-07
+32 1.3264512688238e-07
+33 1.19376153406847e-07
+34 9.7307541579994e-08
+35 9.81956205237111e-08
+36 8.97109586617262e-08
+37 9.73655360780867e-08
+38 8.26119332941744e-08
+39 8.99843968227287e-08
+40 7.22068236314044e-08
+41 7.09739182980229e-08
+42 6.77815634730905e-08
+43 1.25703763842466e-07
+44 7.84018965305222e-08
+45 6.7686457327909e-08
+46 7.24353412806522e-08
+47 6.28265510727033e-08
+48 6.47106546125542e-08
+49 5.48856355919725e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000133542547700927
+1 0.00013770152872894
+2 0.000131960987346247
+3 0.000131844106363133
+4 0.000133575915242545
+5 0.000135151654831134
+6 0.000133850116981193
+7 0.000135423455503769
+8 0.000135500813485123
+9 0.000135964990477078
+10 0.00013285395107232
+11 0.000137634327984415
+12 0.000136662172735669
+13 0.000135726397274993
+14 0.000134030939079821
+15 0.000134552494273521
+16 0.000132666653371416
+17 0.000133523280965164
+18 0.000132356697577052
+19 0.000133625842863694
+20 0.000206440483452752
+21 0.000132228233269416
+22 0.000137427821755409
+23 0.000134517656988464
+24 0.000134116824483499
+25 0.000133725814521313
+26 0.000135534108267166
+27 0.000134403424453922
+28 0.000136511502205394
+29 0.000134150424855761
+30 0.000130480009829625
+31 0.000131892840727232
+32 0.000133433626615442
+33 0.000135092821437865
+34 0.000138537419843487
+35 0.000130869098939002
+36 0.000134652858832851
+37 0.000133538094814867
+38 0.000136082104290836
+39 0.000133659617858939
+40 0.000133479887153953
+41 0.000137223862111568
+42 0.000132552537252195
+43 0.000135970840346999
+44 0.000135382346343249
+45 0.000134899004478939
+46 0.000135456750285812
+47 0.000135510970721953
+48 0.000132899294840172
+49 0.000132901303004473
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000145868849358521
+1 0.000113753885671031
+2 0.000156638605403714
+3 0.000154006105731241
+4 0.000142080549267121
+5 0.000143008714076132
+6 0.000141186013934202
+7 0.000126656887005083
+8 0.000124543948913924
+9 0.000121575896628201
+10 0.000152165055624209
+11 0.000109089472971391
+12 0.000113955422420986
+13 0.000124037964269519
+14 0.000138279589009471
+15 0.000133949113660492
+16 0.000154502617078833
+17 0.000145328303915448
+18 0.000152477558003739
+19 0.000144642006489448
+20 0.000115658949653152
+21 0.000155217509018257
+22 0.000111109307908919
+23 0.000156487760250457
+24 0.000140307543915696
+25 0.000141273907502182
+26 0.000131834647618234
+27 0.000137336595798843
+28 0.00012007790064672
+29 0.000137628783704713
+30 0.00017037324141711
+31 0.00016252048953902
+32 0.000144891717354767
+33 0.000127991297631525
+34 0.000100879231467843
+35 0.000169978055055253
+36 0.000132803223095834
+37 0.000147888626088388
+38 0.000121354591101408
+39 0.000146774065797217
+40 0.000144446064950898
+41 0.000112450936285313
+42 0.000154997382196598
+43 0.000127882129163481
+44 0.000127077088109218
+45 0.000132969551486894
+46 0.000125569757074118
+47 0.000126763057778589
+48 0.000148603954585269
+49 0.000150978754390962
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.004447011832856281, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.004447011832856281, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..759394bc47b728cee2d8419c1da89498df84cf05
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.004447011832856281, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.004447011832856281, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.004447011832856281, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..fbec599c7ee31cf88a8c7452e164667c1af548e2
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.004447011832856281, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.40016121881352e-08, ymax=0.000307672250036753,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000150532592670061
+1 1.88859958143439e-05
+2 6.63255468680291e-06
+3 3.78604181605624e-06
+4 2.29667671192146e-06
+5 1.55492978137772e-06
+6 1.17810839128651e-06
+7 9.08546894606843e-07
+8 7.59366344027512e-07
+9 6.18821502484934e-07
+10 5.42138593573327e-07
+11 4.67131684445121e-07
+12 4.19276460661422e-07
+13 3.67988832294941e-07
+14 3.23254965906017e-07
+15 3.01627636645208e-07
+16 2.89159345356893e-07
+17 2.57192624530944e-07
+18 2.41790473864967e-07
+19 2.26101676048529e-07
+20 2.07942306928999e-07
+21 1.97875735352682e-07
+22 1.86367216770122e-07
+23 1.70618989159266e-07
+24 1.70334658378124e-07
+25 1.55039842297811e-07
+26 1.46913251342085e-07
+27 1.37388013854434e-07
+28 1.37925056264976e-07
+29 1.25979326526249e-07
+30 1.20015258175954e-07
+31 1.17993891990409e-07
+32 1.14108722470974e-07
+33 1.31951011894671e-07
+34 1.02759607045755e-07
+35 9.52507974716355e-08
+36 9.54289376409179e-08
+37 9.0852012135656e-08
+38 8.62273665802604e-08
+39 8.40052365447264e-08
+40 7.78286803893025e-08
+41 8.00128958644564e-08
+42 7.95552423937806e-08
+43 7.54189173335362e-08
+44 7.27308062664633e-08
+45 6.94678519153058e-08
+46 6.50332481200167e-08
+47 6.73598066214254e-08
+48 6.39510631117446e-08
+49 6.37461283758967e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000181355149834417
+1 1.63048061949667e-05
+2 8.6388590716524e-06
+3 3.33260550178238e-06
+4 2.55296367868141e-06
+5 1.69787801951315e-06
+6 1.09325640096358e-06
+7 9.53912945078628e-07
+8 6.06342666742421e-07
+9 6.34477999028604e-07
+10 5.62736033771216e-07
+11 4.69371883582426e-07
+12 3.84111189077885e-07
+13 3.54082885678508e-07
+14 4.01842328301427e-07
+15 3.43498840038592e-07
+16 2.64055472598557e-07
+17 3.04444881749077e-07
+18 2.42931236016375e-07
+19 1.98716051613701e-07
+20 2.02390722847667e-07
+21 1.75654449208196e-07
+22 1.9075089596754e-07
+23 1.79947718947915e-07
+24 1.4190993624652e-07
+25 1.63691225907314e-07
+26 1.5137112541197e-07
+27 1.28864130033435e-07
+28 1.02398807655391e-07
+29 1.2449332587039e-07
+30 1.40874860221629e-07
+31 1.18134472870679e-07
+32 1.16872229227738e-07
+33 1.08497651751804e-07
+34 9.69542526263467e-08
+35 1.07008524707908e-07
+36 6.63961259306234e-08
+37 9.60990433895859e-08
+38 8.97678305022964e-08
+39 8.80412613923909e-08
+40 9.43617592952251e-08
+41 7.33344975856198e-08
+42 6.96581707870791e-08
+43 6.04530114856061e-08
+44 6.89186023805632e-08
+45 6.379473660445e-08
+46 8.43616234647016e-08
+47 6.95478092893609e-08
+48 6.58540386666573e-08
+49 5.14451521382853e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000154307097545825
+1 0.000154620574903674
+2 0.000148630337207578
+3 0.000151659056427889
+4 0.000154369554365985
+5 0.000152874446939677
+6 0.000151209707837552
+7 0.000156839058035985
+8 0.000157427173689939
+9 0.000151823915075511
+10 0.000153629734995775
+11 0.000155087647726759
+12 0.000154334120452404
+13 0.000155937959789298
+14 0.000155114947119728
+15 0.000152304433868267
+16 0.000152810811414383
+17 0.000157233356731012
+18 0.000150635081809014
+19 0.000150957144796848
+20 0.000153112880070694
+21 0.000152984517626464
+22 0.000150051826494746
+23 0.000154742650920525
+24 0.000153828674228862
+25 0.000150925465277396
+26 0.00015230814460665
+27 0.000154930341523141
+28 0.000151484768139198
+29 0.000155330955749378
+30 0.000153658475028351
+31 0.000152957771206275
+32 0.000154188135638833
+33 0.000153448083437979
+34 0.000154066510731354
+35 0.000151862914208323
+36 0.000154201072291471
+37 0.000157811271492392
+38 0.000154254405060783
+39 0.000156705791596323
+40 0.000155508081661537
+41 0.000151322106830776
+42 0.000152232227264903
+43 0.000153618471813388
+44 0.000157327667693608
+45 0.000151660438859835
+46 0.000154655674123205
+47 0.000155875342898071
+48 0.000155027257278562
+49 0.000151420434121974
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000149738989421166
+1 0.000147999729961157
+2 0.000203349627554417
+3 0.00016925971431192
+4 0.000144694946357049
+5 0.000159653412993066
+6 0.000174713146407157
+7 0.000125471138744615
+8 0.000123138408525847
+9 0.000176458488567732
+10 0.000152321721543558
+11 0.000140200296300463
+12 0.000146003672853112
+13 0.00013291348295752
+14 0.000137619281304069
+15 0.000163930395501666
+16 0.000162397700478323
+17 0.00011998503759969
+18 0.000179434777237475
+19 0.000177849229658023
+20 0.000157951246364973
+21 0.000157118731294759
+22 0.000184982200153172
+23 0.000141057462315075
+24 0.000150822001160122
+25 0.000179753027623519
+26 0.000167797959875315
+27 0.000139450261485763
+28 0.000173007443663664
+29 0.000136606002342887
+30 0.000150570587720722
+31 0.000156055699335411
+32 0.000150963460328057
+33 0.000154721084982157
+34 0.000151524232933298
+35 0.000168216589372605
+36 0.00014850587467663
+37 0.000114606671559159
+38 0.000147307146107778
+39 0.000129318548715673
+40 0.00013716152170673
+41 0.000172135987668298
+42 0.00016898445028346
+43 0.000154338762513362
+44 0.000117240117106121
+45 0.000174145359778777
+46 0.000142885401146486
+47 0.000132053086417727
+48 0.000141309341415763
+49 0.000173223539604805
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.004870098024019784, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.004870098024019784, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..84a38ba40c50f0c95e571c3edb60e03e33c291ec
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.004870098024019784, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.004870098024019784, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.004870098024019784, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..4e8cae6085c48b81baf76fbebca087b8c0157b89
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.004870098024019784, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.80939962615457e-08, ymax=0.000274051172883769,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000145468206028454
+1 1.34828533191467e-05
+2 3.30966008732503e-06
+3 1.94038307199662e-06
+4 1.42769818012312e-06
+5 8.96903259217652e-07
+6 6.25447853508376e-07
+7 1.03879847301869e-06
+8 3.9100584103835e-07
+9 3.22810677744201e-07
+10 2.76928801667964e-07
+11 2.44111845404404e-07
+12 2.12248295383688e-07
+13 1.87139548302184e-07
+14 1.65780633665236e-07
+15 1.59135041144509e-07
+16 1.45595308254087e-07
+17 1.31274987325014e-07
+18 1.18368937762625e-07
+19 1.13807011814515e-07
+20 1.069287094424e-07
+21 9.33457897644985e-08
+22 8.43262881744522e-08
+23 8.18943775016123e-08
+24 8.30688051678408e-08
+25 7.10144902882348e-08
+26 6.94095874109735e-08
+27 6.62575772025775e-08
+28 6.41147153146449e-08
+29 6.00361644842451e-08
+30 5.68993172578303e-08
+31 5.26618855190009e-08
+32 5.13783575684101e-08
+33 5.10044344537164e-08
+34 4.72009809016072e-08
+35 4.63736391509428e-08
+36 4.25809858484172e-08
+37 4.08359497328092e-08
+38 4.0213883778506e-08
+39 4.02134574528645e-08
+40 3.79006053208286e-08
+41 3.66813708296831e-08
+42 3.44730075596544e-08
+43 3.31692859845134e-08
+44 3.28066249721815e-08
+45 3.08750358612997e-08
+46 3.06827452334346e-08
+47 2.99755562593873e-08
+48 2.89546466802904e-08
+49 2.89905770500809e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000154721346916631
+1 1.10609835246578e-05
+2 4.58344447906711e-06
+3 1.72427940015041e-06
+4 1.33039327465667e-06
+5 7.3237112019342e-07
+6 4.94197649913986e-07
+7 4.72396180839496e-07
+8 4.39354238324086e-07
+9 3.15706131459592e-07
+10 2.63328729488421e-07
+11 2.38872246427491e-07
+12 2.20310766962939e-07
+13 2.16514152384661e-07
+14 2.03626839834214e-07
+15 1.62574437467811e-07
+16 1.54162080434617e-07
+17 1.22378409628254e-07
+18 1.5507256989622e-07
+19 9.69045501619803e-08
+20 8.68724256974929e-08
+21 7.85917535495173e-08
+22 9.12520476958889e-08
+23 8.52498516223932e-08
+24 7.35965528519955e-08
+25 6.79851765994499e-08
+26 7.29979063862629e-08
+27 6.83363197140352e-08
+28 6.39602859564548e-08
+29 5.69536915406843e-08
+30 4.82692605885404e-08
+31 4.86817164357944e-08
+32 4.7804469716084e-08
+33 3.90527645777183e-08
+34 5.42180025320249e-08
+35 3.21730517782726e-08
+36 3.89387402321972e-08
+37 4.83359592351462e-08
+38 3.86060428070323e-08
+39 3.15527159955309e-08
+40 3.42476482728671e-08
+41 3.11501793248681e-08
+42 2.81656280520792e-08
+43 4.05059203956171e-08
+44 3.97396604512323e-08
+45 3.86650462758098e-08
+46 2.97201321330931e-08
+47 3.33385301587441e-08
+48 2.80251537532195e-08
+49 2.88815851234858e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000145327387144789
+1 0.000144919496960938
+2 0.000144610676215962
+3 0.000143672325066291
+4 0.000143399753142148
+5 0.000146140970173292
+6 0.000146856400533579
+7 0.000145960555528291
+8 0.00014435984485317
+9 0.000143957528052852
+10 0.000145209705806337
+11 0.000143554323585704
+12 0.000148391918628477
+13 0.000147664177347906
+14 0.000146403835969977
+15 0.000146162361488678
+16 0.000146066740853712
+17 0.000142793447594158
+18 0.000147393147926778
+19 0.000145042416988872
+20 0.00014270305109676
+21 0.000145100784720853
+22 0.000144214354804717
+23 0.000146779653732665
+24 0.000144451347296126
+25 0.000146821490488946
+26 0.000146786493132822
+27 0.000147773476783186
+28 0.000145632555359043
+29 0.000143280893098563
+30 0.000145244019222446
+31 0.000144893056130968
+32 0.000143000463140197
+33 0.000143773781019263
+34 0.000147020764416084
+35 0.000145131867611781
+36 0.000145687212352641
+37 0.000145377664011903
+38 0.000144089775858447
+39 0.000147604980156757
+40 0.000143206227221526
+41 0.000141973680001684
+42 0.000144666701089591
+43 0.000145778496516868
+44 0.000145799655001611
+45 0.000144294303026982
+46 0.000144968624226749
+47 0.000142609875183553
+48 0.000146936261444353
+49 0.000148576189531013
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000146562975714915
+1 0.000150704989209771
+2 0.00015757828077767
+3 0.000162055643158965
+4 0.000167919482919388
+5 0.00013925286475569
+6 0.000145930753205903
+7 0.00014088703028392
+8 0.000156829119077884
+9 0.00016173321637325
+10 0.000146262376802042
+11 0.000165099540026858
+12 0.000118841300718486
+13 0.000125612015835941
+14 0.000138460993184708
+15 0.000140930147608742
+16 0.000141886106575839
+17 0.000174853834323585
+18 0.000129985273815691
+19 0.000151219457620755
+20 0.000171108127688058
+21 0.000147761398693547
+22 0.000156722686369903
+23 0.000134919842821546
+24 0.000155883783008903
+25 0.000133834051666781
+26 0.000132985398522578
+27 0.000122852143249474
+28 0.000144038232974708
+29 0.000164893062901683
+30 0.000147956001455896
+31 0.000151376050780527
+32 0.000165253251907416
+33 0.000161242540343665
+34 0.000131685214000754
+35 0.00015191244892776
+36 0.000142850127303973
+37 0.000147853890666738
+38 0.00015917350538075
+39 0.000128164741909131
+40 0.000166220284882002
+41 0.000176936795469373
+42 0.0001545680424897
+43 0.000143706842209212
+44 0.00014415271289181
+45 0.000153030792716891
+46 0.000150827472680248
+47 0.00017060645041056
+48 0.000131991095258854
+49 0.000118149117042776
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00491947752662099, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00491947752662099, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..1c9e93404943a880db25d213989025231f1384f8
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00491947752662099, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00491947752662099, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00491947752662099, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..14c8b4364a17485b2e838bbc1b0611a4bc30ca35
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00491947752662099, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.51239736095622e-08, ymax=0.000313425767589065,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000147097729495727
+1 1.17673007480334e-05
+2 4.42443251813529e-06
+3 1.72051375102455e-06
+4 1.0557160976532e-06
+5 7.66498146731465e-07
+6 5.83826590627723e-07
+7 4.45527064130147e-07
+8 3.71998226000869e-07
+9 3.27228548258063e-07
+10 2.87708417090471e-07
+11 2.74150409040885e-07
+12 2.17616374698082e-07
+13 1.94035848721796e-07
+14 1.67993732702598e-07
+15 1.49479802757924e-07
+16 1.38058936727248e-07
+17 1.24774061305288e-07
+18 1.18472257781832e-07
+19 1.11620238385512e-07
+20 9.59898116548175e-08
+21 9.49334122424261e-08
+22 8.72234409143857e-08
+23 7.869266482885e-08
+24 7.54614362108441e-08
+25 7.1348722485709e-08
+26 7.07548863942975e-08
+27 6.6163842404876e-08
+28 6.20415008256714e-08
+29 6.06002927838745e-08
+30 5.77792604872229e-08
+31 5.23650669492781e-08
+32 5.22755847498502e-08
+33 4.6746517767815e-08
+34 4.86640097108193e-08
+35 4.66663969689307e-08
+36 4.2121733656586e-08
+37 4.24763832995723e-08
+38 4.1744716128278e-08
+39 4.06994260515603e-08
+40 4.06555855647639e-08
+41 4.03816962091241e-08
+42 3.77621667269068e-08
+43 3.5840045597979e-08
+44 3.37144143713886e-08
+45 3.33547944819657e-08
+46 3.37425412055836e-08
+47 3.129166969984e-08
+48 2.90489676757488e-08
+49 2.93448874089108e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000164895813213661
+1 1.16721130325459e-05
+2 4.3038853618782e-06
+3 2.09605536838353e-06
+4 1.25011308682588e-06
+5 6.23805135546718e-07
+6 4.92941865104513e-07
+7 5.36642630777351e-07
+8 3.92546013472383e-07
+9 2.93683996233085e-07
+10 3.02644110661276e-07
+11 2.29807810114835e-07
+12 1.8598188944452e-07
+13 1.56439909915207e-07
+14 1.77507658349896e-07
+15 1.41360743555197e-07
+16 1.07465986332045e-07
+17 1.20275785775448e-07
+18 9.29634822455228e-08
+19 7.681587277375e-08
+20 1.184787166153e-07
+21 1.06233692065416e-07
+22 8.61021405285101e-08
+23 1.04681269874618e-07
+24 1.10920964857542e-07
+25 7.5897652607182e-08
+26 4.76281485362051e-08
+27 4.64458054239003e-08
+28 6.7282506677202e-08
+29 6.51579412647152e-08
+30 5.84541979264941e-08
+31 5.60774431335176e-08
+32 6.72883899710541e-08
+33 5.88472524043482e-08
+34 3.80514215692074e-08
+35 4.1457479227347e-08
+36 3.94068528919433e-08
+37 4.09267180145889e-08
+38 4.15888834481848e-08
+39 4.16549106319053e-08
+40 4.3258548743097e-08
+41 3.90693131180342e-08
+42 3.25405125067846e-08
+43 4.11124965182808e-08
+44 3.56276537161193e-08
+45 3.64041135014759e-08
+46 2.37612365339146e-08
+47 2.59357886278622e-08
+48 2.89085733129468e-08
+49 2.61315733496303e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000147054539411329
+1 0.000147865852341056
+2 0.00014999249833636
+3 0.000152173117385246
+4 0.000150925407069735
+5 0.00015301453822758
+6 0.000146399775985628
+7 0.000149782616063021
+8 0.000151619198732078
+9 0.000153424640302546
+10 0.000150808991747908
+11 0.000147913946420886
+12 0.000147672035382129
+13 0.000148027058457956
+14 0.00014867250865791
+15 0.000149524508742616
+16 0.000150811320054345
+17 0.000149620507727377
+18 0.000150977139128372
+19 0.000151009793626145
+20 0.000146246602525935
+21 0.000143566925544292
+22 0.000146675854921341
+23 0.000146120582940057
+24 0.00015082088066265
+25 0.000148982755490579
+26 0.000146379432408139
+27 0.000149145998875611
+28 0.000148264763993211
+29 0.000147633036249317
+30 0.000148612176417373
+31 0.000149051906191744
+32 0.000151299114804715
+33 0.000147151295095682
+34 0.00014931193436496
+35 0.000152324719238095
+36 0.000147667713463306
+37 0.000149647516082041
+38 0.00015040161088109
+39 0.000149788422277197
+40 0.000149108425830491
+41 0.00014866421406623
+42 0.000149489060277119
+43 0.000150810432387516
+44 0.000149145998875611
+45 0.000149304250953719
+46 0.000151656029629521
+47 0.00015102478209883
+48 0.000148015285958536
+49 0.00014995236415416
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000169926730450243
+1 0.000163267861353233
+2 0.000147808677866124
+3 0.000122962897876278
+4 0.000133538225782104
+5 0.000108621432445943
+6 0.000172985921381041
+7 0.000140345175168477
+8 0.000125308317365125
+9 0.000112168563646264
+10 0.00013293068332132
+11 0.000158075461513363
+12 0.000159845192683861
+13 0.000154605833813548
+14 0.000150882100570016
+15 0.00014230991655495
+16 0.000130331405671313
+17 0.000141539610922337
+18 0.000130022817756981
+19 0.000129235893837176
+20 0.00017268763622269
+21 0.000199494796106592
+22 0.000171860243426636
+23 0.000171622421476059
+24 0.00013396616850514
+25 0.000143020879477262
+26 0.000172537038451992
+27 0.000146108519402333
+28 0.000154202207340859
+29 0.000164637851412408
+30 0.00015206917305477
+31 0.000147180646308698
+32 0.000127817431348376
+33 0.00016370129014831
+34 0.000144530655234121
+35 0.000119088290375657
+36 0.000159893766976893
+37 0.000143673300044611
+38 0.000136858710902743
+39 0.000141986209200695
+40 0.000148259874549694
+41 0.000150001709698699
+42 0.000143724333611317
+43 0.000132572764414363
+44 0.000146266145748086
+45 0.000146031074109487
+46 0.000121772289276123
+47 0.000129572072182782
+48 0.000157213828060776
+49 0.000138964576763101
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005030082481909637, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005030082481909637, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..3028ba25a9ce4161c804cdcab456cbf726d9801f
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005030082481909637, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005030082481909637, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005030082481909637, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..5c88e7005d695da200721592a64a6e9796fa8ff1
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005030082481909637, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.262531993513e-08, ymax=0.00034046094003353,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000154453722643666
+1 2.20846904994687e-05
+2 4.19675689045107e-06
+3 2.27148166231927e-06
+4 1.37074528083758e-06
+5 9.73035980678105e-07
+6 7.27163580904744e-07
+7 5.89323121857888e-07
+8 4.93279969759897e-07
+9 4.06340888048362e-07
+10 3.76928255718667e-07
+11 3.19891626077151e-07
+12 2.91009570219103e-07
+13 2.54995200066332e-07
+14 2.32104767405872e-07
+15 2.0827756941344e-07
+16 1.9286356689463e-07
+17 1.82432501105723e-07
+18 1.69016800555255e-07
+19 1.55761597397941e-07
+20 1.46141516665921e-07
+21 1.33784752165411e-07
+22 1.24409069712783e-07
+23 1.21385468787594e-07
+24 1.15424988678114e-07
+25 1.04996878746988e-07
+26 1.00224781363067e-07
+27 9.61205159910605e-08
+28 9.28117316334465e-08
+29 8.51915018529326e-08
+30 8.26154575861437e-08
+31 7.74631416788907e-08
+32 7.46775299376168e-08
+33 6.82795331385933e-08
+34 6.99668092352113e-08
+35 6.62262777950673e-08
+36 6.34762358231455e-08
+37 6.17753102005736e-08
+38 6.09996604339358e-08
+39 5.94215308069579e-08
+40 5.48805125788476e-08
+41 7.03935896240182e-08
+42 5.38741709021906e-08
+43 4.70137564434481e-08
+44 4.71082657327315e-08
+45 4.74153551976997e-08
+46 4.41019238905938e-08
+47 4.33442686187391e-08
+48 4.24710933089045e-08
+49 4.24051052050345e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000145387894008309
+1 1.95060947589809e-05
+2 3.74666092284315e-06
+3 2.7744683848141e-06
+4 1.40629060751962e-06
+5 7.79905917625001e-07
+6 9.16885653623467e-07
+7 6.06377284384507e-07
+8 4.78587196539593e-07
+9 4.35943178445086e-07
+10 3.47151001278689e-07
+11 3.0173382015164e-07
+12 2.33177487984904e-07
+13 2.38472978253412e-07
+14 2.03198581516517e-07
+15 2.31672700579111e-07
+16 2.10801644584535e-07
+17 1.569325007722e-07
+18 1.72781398077859e-07
+19 1.64043370887157e-07
+20 1.05752555157324e-07
+21 1.29105941937269e-07
+22 1.31131855596323e-07
+23 1.15024725744206e-07
+24 1.02643717525552e-07
+25 8.90739144665531e-08
+26 9.31135488713153e-08
+27 1.00723219986776e-07
+28 8.51506598564811e-08
+29 8.30537203455606e-08
+30 7.23076496456088e-08
+31 7.61418448291806e-08
+32 6.72748257102285e-08
+33 8.55107700203916e-08
+34 8.78394530445803e-08
+35 7.16091790309292e-08
+36 5.5553368127903e-08
+37 5.41045004354146e-08
+38 5.72618681360382e-08
+39 5.2526058169633e-08
+40 6.29919583161609e-08
+41 6.27631422389641e-08
+42 5.20855856223079e-08
+43 5.48207381712018e-08
+44 5.85995074686707e-08
+45 4.6878351867008e-08
+46 4.67799843306693e-08
+47 4.29669704260505e-08
+48 4.58657289925668e-08
+49 3.50332030052414e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000150660343933851
+1 0.000154253531945869
+2 0.000158635361003689
+3 0.00015240503125824
+4 0.000152125125168823
+5 0.000156776324729435
+6 0.000155492831254378
+7 0.000155052010086365
+8 0.000150613574078307
+9 0.00014620169531554
+10 0.000155095200170763
+11 0.000158181617734954
+12 0.000154228269821033
+13 0.000150590640259907
+14 0.000157568414579146
+15 0.000154812703840435
+16 0.000153813467477448
+17 0.000152057895320468
+18 0.000151543717947789
+19 0.000153519256855361
+20 0.000153866873006336
+21 0.000154418623424135
+22 0.000150612555444241
+23 0.000154670764459297
+24 0.000149780549691059
+25 0.000154627807205543
+26 0.000156643334776163
+27 0.000151153959450312
+28 0.000158100490807556
+29 0.000153171044075862
+30 0.000153308996232226
+31 0.000151937259943224
+32 0.000154828157974407
+33 0.000153216693433933
+34 0.000152768159750849
+35 0.000152825188706629
+36 0.000155582980369218
+37 0.000153736065840349
+38 0.000151182714034803
+39 0.00015033820818644
+40 0.000152609354699962
+41 0.000151482759974897
+42 0.000154073524754494
+43 0.000155017711222172
+44 0.000150453095557168
+45 0.00015565512876492
+46 0.000152355394675396
+47 0.000157053291331977
+48 0.000151673870277591
+49 0.000151893080328591
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000176298664882779
+1 0.000148719205753878
+2 0.000107688851130661
+3 0.000164469500305131
+4 0.000175260545802303
+5 0.000126194907352328
+6 0.000135791429784149
+7 0.000141658369102515
+8 0.000181587165570818
+9 0.000219878202187829
+10 0.000140429925522767
+11 0.000116413626528811
+12 0.000146297999890521
+13 0.000182409246917814
+14 0.000118320320325438
+15 0.000144086123327725
+16 0.000151604748680256
+17 0.000167470338055864
+18 0.000170010986039415
+19 0.000154555818880908
+20 0.000150567488162778
+21 0.000145139943924733
+22 0.000182575371582061
+23 0.000143865356221795
+24 0.000187807338079438
+25 0.0001453815784771
+26 0.000126626691780984
+27 0.000177463720319793
+28 0.000113313777546864
+29 0.000155290283146314
+30 0.000157215908984654
+31 0.000169142280356027
+32 0.000143655808642507
+33 0.000157222602865659
+34 0.000162979122251272
+35 0.000161702366312966
+36 0.000136755363200791
+37 0.000153118497109972
+38 0.000178026602952741
+39 0.000181795243406668
+40 0.000167362435604446
+41 0.000176092478795908
+42 0.000149398416397162
+43 0.000140866890433244
+44 0.000181648574653082
+45 0.000133060835651122
+46 0.000166578873177059
+47 0.000123368328786455
+48 0.000172330299392343
+49 0.00016940625209827
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0050817706169887355, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0050817706169887355, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..0b6102d33157e03e059f23c7a409105426407f82
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0050817706169887355, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0050817706169887355, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0050817706169887355, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..30a03919ce220ef730e711c363e9b96de129b6c2
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0050817706169887355, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.92946036247796e-08, ymax=0.000293763893992526,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000140940115670674
+1 1.65010987984715e-05
+2 3.44206637237221e-06
+3 1.70789871845045e-06
+4 1.10284452148335e-06
+5 7.8435141404043e-07
+6 6.34332423032902e-07
+7 5.14459145506407e-07
+8 3.93178765989433e-07
+9 3.2810191896715e-07
+10 2.77080886235126e-07
+11 2.47948918286056e-07
+12 2.17197950291848e-07
+13 1.94772724171344e-07
+14 1.73086661447996e-07
+15 1.59858458914641e-07
+16 1.46739026263276e-07
+17 1.36135312800434e-07
+18 1.22390247270232e-07
+19 1.11427809201814e-07
+20 1.01518587314331e-07
+21 9.93839250895689e-08
+22 9.0442796363277e-08
+23 8.63670948092476e-08
+24 8.22440355818799e-08
+25 7.77544642005523e-08
+26 6.99660134273472e-08
+27 6.46607816179312e-08
+28 6.38226111959739e-08
+29 6.29775058769155e-08
+30 5.79198626837751e-08
+31 5.48262022448398e-08
+32 5.15748546092709e-08
+33 4.95152185919778e-08
+34 4.95302607816939e-08
+35 4.74602401823176e-08
+36 4.54650006531665e-08
+37 4.50319035394386e-08
+38 4.16604173381074e-08
+39 4.11364204921938e-08
+40 3.96078725373172e-08
+41 3.66297214782207e-08
+42 3.58401486266757e-08
+43 3.55093305870469e-08
+44 3.55854119504784e-08
+45 3.1835195812846e-08
+46 3.2465582222585e-08
+47 3.80792464227397e-08
+48 3.02521172557135e-08
+49 2.9891818797978e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.00014962736167945
+1 1.41900809467188e-05
+2 3.28305191032996e-06
+3 2.19419985114655e-06
+4 1.26320924209722e-06
+5 8.59516433138197e-07
+6 6.53159702324047e-07
+7 4.0933036871138e-07
+8 4.39755524439533e-07
+9 3.19945684168488e-07
+10 3.23423790860033e-07
+11 2.78986135526793e-07
+12 2.8264381057852e-07
+13 1.98077401591945e-07
+14 2.05579951284562e-07
+15 1.54832761722901e-07
+16 1.18495869116941e-07
+17 9.98391200823789e-08
+18 1.25427348507401e-07
+19 1.20808408610174e-07
+20 1.17875138982981e-07
+21 7.56212443775439e-08
+22 8.73877326057482e-08
+23 7.92454244447072e-08
+24 7.18126713650236e-08
+25 6.30734504625252e-08
+26 7.31027967049158e-08
+27 6.74132962785734e-08
+28 6.5262511839137e-08
+29 6.57813572502164e-08
+30 6.61241230659471e-08
+31 5.36667492667675e-08
+32 6.56705694268567e-08
+33 5.87418078623614e-08
+34 4.87297562301592e-08
+35 5.32774286909898e-08
+36 4.483916526965e-08
+37 4.34474749511082e-08
+38 4.33026166035688e-08
+39 3.49011628486551e-08
+40 4.07302103155871e-08
+41 3.75784381390076e-08
+42 3.14849764038172e-08
+43 3.30953433547165e-08
+44 3.02179437028371e-08
+45 3.88876735257782e-08
+46 3.17310089315015e-08
+47 3.40499575202102e-08
+48 3.92684107453078e-08
+49 3.21298720962204e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000142739794682711
+1 0.000144803168950602
+2 0.000142909368150868
+3 0.000142734439577907
+4 0.00014204545004759
+5 0.000141677184728906
+6 0.000143240482429974
+7 0.000142765740747564
+8 0.000143851095344871
+9 0.000137160473968834
+10 0.000136476708576083
+11 0.000137668394017965
+12 0.000145284051541239
+13 0.000142739503644407
+14 0.000142358840093948
+15 0.000140997624839656
+16 0.000142460179631598
+17 0.000140654388815165
+18 0.000144752411870286
+19 0.000144792706123553
+20 0.000143463723361492
+21 0.000140812815516256
+22 0.000140766627737321
+23 0.000141635784530081
+24 0.000142082586535253
+25 0.000142463046358898
+26 0.000141917465953156
+27 0.000143979195854627
+28 0.000142796881846152
+29 0.000141777098178864
+30 0.000141871598316357
+31 0.000144247795105912
+32 0.000141876647830941
+33 0.00014444938278757
+34 0.000144798468681984
+35 0.000142126329592429
+36 0.000144301768159494
+37 0.000142941105877981
+38 0.000142725461046211
+39 0.000141758748213761
+40 0.000141990502015688
+41 0.000142132252221927
+42 0.000142858494655229
+43 0.000142205157317221
+44 0.000142142409458756
+45 0.000140204138006084
+46 0.000144872596138157
+47 0.000142015021992847
+48 0.000142933218739927
+49 0.000140208343509585
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000132047964143567
+1 0.00011328417895129
+2 0.000131899505504407
+3 0.000132263754494488
+4 0.000140869000460953
+5 0.000141402328154072
+6 0.000130817090393975
+7 0.000133572917548008
+8 0.000125853286590427
+9 0.000184466727660038
+10 0.000189619036973454
+11 0.000180742310476489
+12 0.000114304806629661
+13 0.000128269341075793
+14 0.000139024152304046
+15 0.000153544868226163
+16 0.000135205380502157
+17 0.000152556458488107
+18 0.000111752960947342
+19 0.00012752455950249
+20 0.000127072329632938
+21 0.000151516200276092
+22 0.000154910929268226
+23 0.000143109806231223
+24 0.000138264542329125
+25 0.000134169720695354
+26 0.000141330383485183
+27 0.000124957397929393
+28 0.00013191495963838
+29 0.000141844429890625
+30 0.000139641662826762
+31 0.000122540353913791
+32 0.000140499716508202
+33 0.00011803721281467
+34 0.000115559225378092
+35 0.000138721108669415
+36 0.000118403637316078
+37 0.000130381609778851
+38 0.00013875744480174
+39 0.00014158217527438
+40 0.00013939433847554
+41 0.000142036384204403
+42 0.000130027110571973
+43 0.00013652490451932
+44 0.000134659116156399
+45 0.000154701876454055
+46 0.000115642724267673
+47 0.000140757867484353
+48 0.000132845598272979
+49 0.000155199348228052
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005168756815837512, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005168756815837512, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..db6fd4c642101b802be34d71b28b76d44c3db11b
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005168756815837512, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005168756815837512, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005168756815837512, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..e8d33bd24b0589c2c021b706a027f30c9a1613aa
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005168756815837512, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.07475673855009e-08, ymax=0.000256621013676812,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000113666843390092
+1 1.77937872649636e-05
+2 5.57546945856302e-06
+3 2.59837429439358e-06
+4 1.59792591603036e-06
+5 1.17535057597706e-06
+6 9.30299449919403e-07
+7 7.60644809361111e-07
+8 6.35782328117784e-07
+9 5.29446765540342e-07
+10 4.74073232226147e-07
+11 4.14655374925132e-07
+12 3.66971988796649e-07
+13 3.28961078821521e-07
+14 3.05557392721312e-07
+15 2.70373419652969e-07
+16 2.38646322259228e-07
+17 2.24248395852555e-07
+18 2.16769052485688e-07
+19 2.03601274506582e-07
+20 1.84368317945882e-07
+21 1.71496139955707e-07
+22 1.59823684953153e-07
+23 1.57772845454929e-07
+24 1.49407171079474e-07
+25 1.38695384066523e-07
+26 1.32868819946452e-07
+27 1.1834762858598e-07
+28 1.1443862035776e-07
+29 1.1144782519068e-07
+30 1.04306877801719e-07
+31 9.8938109260871e-08
+32 9.87923201023477e-08
+33 8.871617751538e-08
+34 8.76334311783467e-08
+35 8.85872992739678e-08
+36 8.27170509865027e-08
+37 7.90076484236124e-08
+38 7.41930392678114e-08
+39 7.2648617788218e-08
+40 7.16732557748401e-08
+41 6.98656137387843e-08
+42 6.5112196523387e-08
+43 6.53506830872175e-08
+44 6.22631972646559e-08
+45 6.03264425080852e-08
+46 5.75235610256186e-08
+47 5.68066447215188e-08
+48 5.5552195732389e-08
+49 5.28061008253644e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000124750658869743
+1 1.91149938473245e-05
+2 5.64969832339557e-06
+3 2.18249510908208e-06
+4 1.26180509596452e-06
+5 1.06908748875867e-06
+6 9.5877737749106e-07
+7 7.45599493257032e-07
+8 5.99577106186189e-07
+9 5.70254314880003e-07
+10 4.5818751459592e-07
+11 4.10763021818639e-07
+12 3.81626904299992e-07
+13 3.03470841345188e-07
+14 2.48637263666751e-07
+15 3.09405919551864e-07
+16 3.18416567779423e-07
+17 2.20321936694745e-07
+18 1.82753879585107e-07
+19 1.66710591997798e-07
+20 1.83421789756721e-07
+21 1.78387253413348e-07
+22 1.67392485650453e-07
+23 1.43135665098271e-07
+24 1.30053763314208e-07
+25 1.42116988399721e-07
+26 1.07257640991065e-07
+27 1.47014247886545e-07
+28 1.19787117114356e-07
+29 1.12738625546172e-07
+30 1.28568885315872e-07
+31 9.83798145171022e-08
+32 8.14060570064612e-08
+33 1.15959302604551e-07
+34 8.75330883332026e-08
+35 6.27278282649968e-08
+36 8.32218347568414e-08
+37 8.92364582227856e-08
+38 7.43094616950657e-08
+39 7.89996050798436e-08
+40 5.99474674345402e-08
+41 7.1162403969538e-08
+42 7.94969210460295e-08
+43 4.63510865245098e-08
+44 6.70983268946657e-08
+45 5.69996885246837e-08
+46 5.70573845948275e-08
+47 5.92897109186197e-08
+48 4.80646242806415e-08
+49 5.39457687409595e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000111640030809212
+1 0.000114040369226132
+2 0.000112742272904143
+3 0.000116109476948623
+4 0.000115222370368429
+5 0.0001151487158495
+6 0.000114358444989193
+7 0.000114384609332774
+8 0.000112068417365663
+9 0.00011716424342012
+10 0.000112934772914741
+11 0.00011679877206916
+12 0.000112443587568123
+13 0.000115304836072028
+14 0.0001122590911109
+15 0.00011713908315869
+16 0.000115546834422275
+17 0.000115463575639296
+18 0.000114103037049063
+19 0.000116280425572768
+20 0.000117006755317561
+21 0.000113333102490287
+22 0.000113859568955377
+23 0.000113454712845851
+24 0.000116545692435466
+25 0.000113783615233842
+26 0.000113675559987314
+27 0.00011278192687314
+28 0.000114571426820476
+29 0.000114459980977699
+30 0.000115557289973367
+31 0.000116230541607365
+32 0.000115308263048064
+33 0.000113011068606284
+34 0.000114735055831261
+35 0.000117599658551626
+36 0.000114721784484573
+37 0.000112732253910508
+38 0.000114522234071046
+39 0.000111957728222478
+40 0.000116998642624822
+41 0.000115562877908815
+42 0.000113341528049204
+43 0.000114344955363777
+44 0.000116102222818881
+45 0.000113417147076689
+46 0.000118621916044503
+47 0.00011576395627344
+48 0.000108599873783533
+49 0.00011511904449435
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000141584358061664
+1 0.000122477649711072
+2 0.000133833469590172
+3 0.000104263912362512
+4 0.000108125728729647
+5 0.000111801098682918
+6 0.000117188159492798
+7 0.000118701304018032
+8 0.000140559437568299
+9 9.44710991461761e-05
+10 0.000134427056764252
+11 9.62616104516201e-05
+12 0.000137129463837482
+13 0.000110109707748052
+14 0.000137726805405691
+15 9.41396792768501e-05
+16 0.00010661765554687
+17 0.000109259584860411
+18 0.000120422570034862
+19 0.000101272999017965
+20 9.58307064138353e-05
+21 0.000127724721096456
+22 0.000123786216136068
+23 0.00012624952069018
+24 9.80304321274161e-05
+25 0.000122626137454063
+26 0.000124553640489466
+27 0.000134324727696367
+28 0.000114761809527408
+29 0.000117916846647859
+30 0.000108445543446578
+31 0.000101019562862348
+32 0.000110897140984889
+33 0.000129612162709236
+34 0.000115686409117188
+35 9.14388001547195e-05
+36 0.000114648188173305
+37 0.000133058551000431
+38 0.000116624149086419
+39 0.000139685129397549
+40 9.54020870267414e-05
+41 0.000106410312582739
+42 0.000128100553411059
+43 0.000117623123514932
+44 0.00010171838948736
+45 0.000126494851429015
+46 8.11039644759148e-05
+47 0.000107188243418932
+48 0.000170232728123665
+49 0.000112731184344739
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00527683500493991, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00527683500493991, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..60c8852cf4ad7b6024c6f4df3d4a009e7b2cbee1
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00527683500493991, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00527683500493991, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00527683500493991, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..8e751c019c284a71a06e666d6a3889c291bb7425
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00527683500493991, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.41668218697646e-08, ymax=0.000279803517338583,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000137197130243294
+1 1.42482813316747e-05
+2 3.59841578756459e-06
+3 1.74905846961337e-06
+4 9.93665935311583e-07
+5 7.41363805900619e-07
+6 5.69351357171399e-07
+7 4.30582986155059e-07
+8 3.54028628635206e-07
+9 3.06007763128946e-07
+10 2.59241602407201e-07
+11 2.31477869760965e-07
+12 2.00288724272468e-07
+13 1.67079718949026e-07
+14 1.51060604025588e-07
+15 1.48996107895982e-07
+16 1.32613280356964e-07
+17 1.20359416655447e-07
+18 1.13898508402599e-07
+19 1.08041724899977e-07
+20 1.01168431854148e-07
+21 8.4903817310078e-08
+22 7.98861705675336e-08
+23 8.50116208539475e-08
+24 7.30844220697691e-08
+25 6.92415085268294e-08
+26 7.25185600458644e-08
+27 6.28272829317211e-08
+28 5.79661119104458e-08
+29 5.58976971376524e-08
+30 5.18062428511712e-08
+31 4.99006702625593e-08
+32 4.77280650557077e-08
+33 4.91670064661776e-08
+34 4.1933379435477e-08
+35 4.08090237158376e-08
+36 4.06012325981919e-08
+37 3.9056960332573e-08
+38 3.51780116147893e-08
+39 3.65397596624462e-08
+40 3.60213618932903e-08
+41 3.36536203349169e-08
+42 3.25989581995145e-08
+43 3.17837418606359e-08
+44 3.44605162183598e-08
+45 3.07654914877276e-08
+46 2.75915077452282e-08
+47 2.87781158903044e-08
+48 2.6149484355642e-08
+49 2.92445854199741e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000141534939757548
+1 1.13593587229843e-05
+2 3.62630498784711e-06
+3 1.71891622358089e-06
+4 1.26910401831992e-06
+5 7.17405498562584e-07
+6 5.90950719470129e-07
+7 4.89309229578794e-07
+8 4.13560570677873e-07
+9 3.10063484221246e-07
+10 2.18758032133337e-07
+11 2.11928963267383e-07
+12 1.98745738089201e-07
+13 2.19250367194945e-07
+14 2.06104942890306e-07
+15 1.03710704024707e-07
+16 1.18658590508858e-07
+17 1.16436233099648e-07
+18 1.28110883679255e-07
+19 9.93629996060008e-08
+20 7.1622785924319e-08
+21 1.31031342220922e-07
+22 9.45440561395117e-08
+23 8.02032857905033e-08
+24 6.03891052719518e-08
+25 6.10418524615852e-08
+26 6.32707255476816e-08
+27 6.33637782243568e-08
+28 5.0653557792657e-08
+29 4.83314117616374e-08
+30 5.88911355237087e-08
+31 5.24075360885945e-08
+32 3.74726525365077e-08
+33 3.7691364696002e-08
+34 4.97443934932562e-08
+35 3.5966227329709e-08
+36 4.00676363199182e-08
+37 4.19940135998331e-08
+38 4.36648122104089e-08
+39 3.51813689292158e-08
+40 4.01541591088517e-08
+41 3.1870822425617e-08
+42 3.53682558795754e-08
+43 2.84734547051357e-08
+44 2.8742272561999e-08
+45 2.22088516466101e-08
+46 3.47573596570783e-08
+47 3.22859214918481e-08
+48 2.99436884176885e-08
+49 2.55715857377936e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000137668786919676
+1 0.000136463626404293
+2 0.000140365606057458
+3 0.000140685195219703
+4 0.00013533781748265
+5 0.000139780633617193
+6 0.000133772089611739
+7 0.000137290029670112
+8 0.000137206458020955
+9 0.000140657473821193
+10 0.000134547561174259
+11 0.000136868038680404
+12 0.000136714676045813
+13 0.000137487120809965
+14 0.000139331488753669
+15 0.000135143855004571
+16 0.000139495372422971
+17 0.00013911840505898
+18 0.000139939496875741
+19 0.000138282513944432
+20 0.000138176706968807
+21 0.000137967290356755
+22 0.00013612701150123
+23 0.000132759334519506
+24 0.000137813622131944
+25 0.000138792631332763
+26 0.000138329793117009
+27 0.000137179493322037
+28 0.000133902256493457
+29 0.000138021612656303
+30 0.000138665389386006
+31 0.000135555979795754
+32 0.000136148868477903
+33 0.000137088296469301
+34 0.000139870244311169
+35 0.000137595256092027
+36 0.000136922841193154
+37 0.00013629300519824
+38 0.000139856012538075
+39 0.000138484610943124
+40 0.000134802350657992
+41 0.000137759794597514
+42 0.000139727999339812
+43 0.000134742847876623
+44 0.000139712981763296
+45 0.000136522226966918
+46 0.00013836873404216
+47 0.000139349460368976
+48 0.000138836563564837
+49 0.000136285263579339
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000134231624542736
+1 0.000145873083965853
+2 0.000112518340756651
+3 0.000108339241705835
+4 0.000155427187564783
+5 0.000115892784378957
+6 0.000171623905771412
+7 0.000138773611979559
+8 0.00013908559049014
+9 0.000108308355265763
+10 0.000163954740855843
+11 0.000141512777190655
+12 0.000144594479934312
+13 0.000138085291837342
+14 0.000119841191917658
+15 0.000160282506840304
+16 0.000119974196422845
+17 0.000121816250612028
+18 0.000114905196824111
+19 0.000131929060444236
+20 0.000130799468024634
+21 0.000133194931549951
+22 0.000147945596836507
+23 0.00017848408606369
+24 0.000133750261738896
+25 0.000123215766507201
+26 0.000130116633954458
+27 0.000139450799906626
+28 0.00016688673349563
+29 0.000131963533931412
+30 0.000125632184790447
+31 0.000154136418132111
+32 0.000148777762660757
+33 0.000139721159939654
+34 0.00011639145668596
+35 0.000136336529976688
+36 0.000142661388963461
+37 0.000148019506013952
+38 0.000115176218969282
+39 0.00012704472464975
+40 0.000160402953042649
+41 0.000134482485009357
+42 0.000117600859084632
+43 0.000160140378284268
+44 0.000117896175652277
+45 0.000144117148010992
+46 0.000125853737699799
+47 0.000120061558845919
+48 0.000125396982184611
+49 0.000148370556416921
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005286063603235422, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005286063603235422, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..6e5cdcda4d728e7492ea050a0fd3bfc936e00010
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005286063603235422, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005286063603235422, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005286063603235422, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..0a68558cc87191c081566070298b9ebdd33ef39d
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005286063603235422, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.52276102660578e-08, ymax=0.000242913403316835,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000131516077090055
+1 1.31928327391506e-05
+2 3.56786972588452e-06
+3 1.7907857454702e-06
+4 1.01208479463821e-06
+5 6.90607180331426e-07
+6 5.42222664989822e-07
+7 4.29699298365449e-07
+8 3.46233633763404e-07
+9 3.02025824794327e-07
+10 2.41189695771027e-07
+11 2.15489876609354e-07
+12 1.82322665409629e-07
+13 1.653293537629e-07
+14 1.53716243289637e-07
+15 1.36176723231074e-07
+16 1.19938519560492e-07
+17 1.14413083451836e-07
+18 1.03737392009862e-07
+19 9.90782851317817e-08
+20 8.91928308988099e-08
+21 8.40619875930315e-08
+22 7.60639977670508e-08
+23 7.14571299909039e-08
+24 6.50225899789802e-08
+25 6.32611616424583e-08
+26 5.94050924007661e-08
+27 5.57521389055182e-08
+28 5.53529702074229e-08
+29 5.12617646108993e-08
+30 4.82125983580772e-08
+31 4.68021745803071e-08
+32 4.40045937466493e-08
+33 4.20476098383915e-08
+34 4.4476394123194e-08
+35 3.82645595209397e-08
+36 3.64569068267429e-08
+37 3.66419143915664e-08
+38 3.43656587631358e-08
+39 3.37233174718676e-08
+40 3.31526344155009e-08
+41 3.16616777240597e-08
+42 3.76332742746399e-08
+43 3.16939754441137e-08
+44 3.05362313213209e-08
+45 2.97802884574594e-08
+46 2.7780329148186e-08
+47 2.77189791120236e-08
+48 3.34603953433543e-08
+49 2.58631693839106e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000116490431537386
+1 1.37364695547149e-05
+2 3.1038878205436e-06
+3 1.67560301633785e-06
+4 8.46280556743295e-07
+5 7.58167232106643e-07
+6 6.47365254735632e-07
+7 3.93501977669075e-07
+8 3.63508434020332e-07
+9 2.55505341328899e-07
+10 2.69062297775235e-07
+11 1.94766883510056e-07
+12 1.84770229338937e-07
+13 1.87082932256999e-07
+14 1.38651984116223e-07
+15 1.44807515312095e-07
+16 1.31694818605865e-07
+17 1.08060817183286e-07
+18 9.94188908975957e-08
+19 1.00580699324837e-07
+20 9.08486299522338e-08
+21 7.51892272887744e-08
+22 6.87388066467065e-08
+23 8.14518230640715e-08
+24 7.69043069226427e-08
+25 5.99531517764262e-08
+26 7.38628074259395e-08
+27 5.92609801230992e-08
+28 4.96155401208398e-08
+29 4.62539126999673e-08
+30 4.80304400696241e-08
+31 4.75853418890892e-08
+32 4.6484554871995e-08
+33 4.07307716443484e-08
+34 3.57797951267003e-08
+35 4.99381158647338e-08
+36 4.62357903074917e-08
+37 3.89924146304566e-08
+38 4.62517135702001e-08
+39 3.69838168978731e-08
+40 3.46732633715874e-08
+41 3.35256409300655e-08
+42 3.03523499667335e-08
+43 3.62266803222155e-08
+44 2.36411725751395e-08
+45 2.55537084825619e-08
+46 2.85504633268374e-08
+47 2.84317334120487e-08
+48 2.68678501669228e-08
+49 2.66762221201589e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000129331223433837
+1 0.000128721512737684
+2 0.000130546672153287
+3 0.000128711209981702
+4 0.000131131600937806
+5 0.000130635657114908
+6 0.000129324165754952
+7 0.000129282270791009
+8 0.000132284185383469
+9 0.000130274580442347
+10 0.000132342538563535
+11 0.000134603003971279
+12 0.000131147869979031
+13 0.000131897249957547
+14 0.000130224652821198
+15 0.00012814620276913
+16 0.00013286447210703
+17 0.000128207102534361
+18 0.000130114043713547
+19 0.000130918153445236
+20 0.000131911452626809
+21 0.00012961907486897
+22 0.000127189967315644
+23 0.000132002111058682
+24 0.000131500128190964
+25 0.000131618289742619
+26 0.000129079926409759
+27 0.000133030902361497
+28 0.000132092012790963
+29 0.000130300933960825
+30 0.000127341525512747
+31 0.00013164064148441
+32 0.000130841581267305
+33 0.00013332100934349
+34 0.000131836044602096
+35 0.000130337764858268
+36 0.000132512825075537
+37 0.000129150212160312
+38 0.000129723324789666
+39 0.000128786370623857
+40 0.000130557149532251
+41 0.0001320943410974
+42 0.000128173749544658
+43 0.000131685708765872
+44 0.000128616025904194
+45 0.000132271728944033
+46 0.000128280851640739
+47 0.000130916581838392
+48 0.000131944441818632
+49 0.000128766536363401
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000137738665216602
+1 0.000146985010360368
+2 0.000128277271869592
+3 0.000141878525028005
+4 0.000121007142297458
+5 0.000125300852232613
+6 0.000137846029247157
+7 0.000140262607601471
+8 0.000108559986983892
+9 0.000129435356939211
+10 0.000109033382614143
+11 8.93789911060594e-05
+12 0.000121174161904491
+13 0.000114521943032742
+14 0.000129848864162341
+15 0.000146330843563192
+16 0.000103692407719791
+17 0.000147366430610418
+18 0.000131864202558063
+19 0.000120059172331821
+20 0.000112287329102401
+21 0.000133603345602751
+22 0.000156463924213313
+23 0.000113732086902019
+24 0.000116485884063877
+25 0.000116828967293259
+26 0.000138044168124907
+27 0.000101070945675019
+28 0.000111825647763908
+29 0.000128573476104066
+30 0.000155425514094532
+31 0.000115921095130034
+32 0.000124970465549268
+33 0.000116675604658667
+34 0.000116987226647325
+35 0.000129285588627681
+36 0.000108245971205179
+37 0.000141990414704196
+38 0.000134502872242592
+39 0.000144982201163657
+40 0.000129489548271522
+41 0.00011425519187469
+42 0.000147175262100063
+43 0.000116612754936796
+44 0.000143426499562338
+45 0.000113014379166998
+46 0.000145131154567935
+47 0.000121997742098756
+48 0.000114086338726338
+49 0.000141102224006318
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00533921792464297, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00533921792464297, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..8ee14970875253e7d05a2f3e66707aac71000bde
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00533921792464297, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00533921792464297, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00533921792464297, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..fc7117ccf6150fc4372b0fb6521f0299acacec10
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00533921792464297, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.92016456628016e-08, ymax=0.000353795488473035,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000168409140314907
+1 2.03852268896298e-05
+2 6.0222482716199e-06
+3 2.65682820099755e-06
+4 1.5468212950509e-06
+5 9.99870167106565e-07
+6 7.73583224145113e-07
+7 6.20469450041128e-07
+8 5.05365335357055e-07
+9 4.36296062389374e-07
+10 3.6042433748662e-07
+11 3.28892241441281e-07
+12 2.999434798312e-07
+13 2.65114977082703e-07
+14 2.30673734336051e-07
+15 2.18293109810475e-07
+16 2.01185002879356e-07
+17 1.84489792331988e-07
+18 1.71989086084068e-07
+19 1.62213311227788e-07
+20 1.59802851840141e-07
+21 1.42186053153637e-07
+22 1.55667933654513e-07
+23 1.4311197560346e-07
+24 1.16317082188289e-07
+25 1.13075394381212e-07
+26 1.08128595854851e-07
+27 1.22434414606687e-06
+28 9.38842674713669e-08
+29 9.76810738961831e-08
+30 8.91278872927614e-08
+31 8.73463150696807e-08
+32 8.81829933518929e-08
+33 7.74022979044275e-08
+34 7.69044063986257e-08
+35 7.39266283744655e-08
+36 7.52170805640162e-08
+37 6.8153156007611e-08
+38 6.4836008561997e-08
+39 6.27047214152299e-08
+40 6.22664799720951e-08
+41 6.49563318688706e-08
+42 5.8477780839894e-08
+43 5.87525974538039e-08
+44 5.31302610795592e-08
+45 5.33562847238045e-08
+46 4.94884879742585e-08
+47 4.98253704961371e-08
+48 5.08146413835675e-08
+49 4.70449244005522e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000134196248836815
+1 2.24055784201482e-05
+2 8.29156488180161e-06
+3 1.66176175753208e-06
+4 1.12268776319979e-06
+5 9.97644178823975e-07
+6 6.80821074183768e-07
+7 6.65555035084253e-07
+8 5.26172868831054e-07
+9 4.0054334249362e-07
+10 4.22074265316041e-07
+11 3.28423851669868e-07
+12 2.91445161337833e-07
+13 2.60244235050777e-07
+14 2.61699227621648e-07
+15 2.39909212496059e-07
+16 1.96517063955071e-07
+17 2.26591154728339e-07
+18 2.12748773265048e-07
+19 1.55541968638317e-07
+20 1.47284580975793e-07
+21 1.59288859435947e-07
+22 1.13054476003072e-07
+23 1.08604332638151e-07
+24 1.29801364323612e-07
+25 1.24145273616705e-07
+26 1.14993667921226e-07
+27 1.0560254537495e-07
+28 1.26596617633368e-07
+29 9.33645551981499e-08
+30 9.67949844721261e-08
+31 1.1249831288751e-07
+32 7.14620327357807e-08
+33 7.81471314326154e-08
+34 8.12313558640199e-08
+35 9.01490295746044e-08
+36 6.68560957706177e-08
+37 7.08442868813108e-08
+38 7.60298846103069e-08
+39 5.54662626939262e-08
+40 5.07568529428681e-08
+41 6.28325125262563e-08
+42 7.03467435414495e-08
+43 5.00023418226192e-08
+44 5.21666372321761e-08
+45 4.47727650509933e-08
+46 5.49795622362126e-08
+47 5.44863567597531e-08
+48 4.84014428536739e-08
+49 4.74858943277923e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000160055016749538
+1 0.000167426449479535
+2 0.000165624354849569
+3 0.0001660140696913
+4 0.000164747092640027
+5 0.000165595251019113
+6 0.000162885160534643
+7 0.000164674827829003
+8 0.00016676913946867
+9 0.000165967270731926
+10 0.000164217883138917
+11 0.000164082506671548
+12 0.000161765710799955
+13 0.00016449048416689
+14 0.000164979777764529
+15 0.000162255833856761
+16 0.000165564939379692
+17 0.000166440775501542
+18 0.000162829790497199
+19 0.000164605138706975
+20 0.000166065525263548
+21 0.00016411101387348
+22 0.000165306890266947
+23 0.000161879375809804
+24 0.000167031830642372
+25 0.000166264740983024
+26 0.000162527139764279
+27 0.000164273631526157
+28 0.000162037322297692
+29 0.000163380289450288
+30 0.000166728830663487
+31 0.000165316989296116
+32 0.000165764591656625
+33 0.000160391398821957
+34 0.00016309211787302
+35 0.000162947326316498
+36 0.000165682242368348
+37 0.000162888274644502
+38 0.000164998302352615
+39 0.000165333767654374
+40 0.000162640106282197
+41 0.000161978096002713
+42 0.000164447395945899
+43 0.000159451839863323
+44 0.00016264028090518
+45 0.000165230623679236
+46 0.000164406665135175
+47 0.000165386663866229
+48 0.000157581860548817
+49 0.000162621669005603
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000199722664547153
+1 0.000135501846671104
+2 0.000156872250954621
+3 0.000149405022966675
+4 0.000157875736476853
+5 0.000149812403833494
+6 0.000175978188053705
+7 0.000165086195920594
+8 0.000139989570016041
+9 0.00014969972835388
+10 0.000163983000675216
+11 0.000165828794706613
+12 0.000184139862540178
+13 0.00015921842714306
+14 0.0001532333844807
+15 0.000184977106982842
+16 0.00015354881179519
+17 0.00014873722102493
+18 0.00017739858594723
+19 0.000161980424309149
+20 0.000157672795467079
+21 0.000159625604283065
+22 0.000155220608576201
+23 0.000175564069650136
+24 0.000136562463012524
+25 0.000147656377521344
+26 0.000186889272299595
+27 0.000164371405844577
+28 0.000184407675988041
+29 0.000168929240317084
+30 0.000139994823257439
+31 0.000151662112330087
+32 0.000150517502333969
+33 0.000201398608624004
+34 0.000172263273270801
+35 0.00017966287850868
+36 0.000148294377140701
+37 0.000175887063960545
+38 0.000153902641613968
+39 0.000153268440044485
+40 0.000177130859810859
+41 0.000182577394298278
+42 0.000162237891345285
+43 0.000206308701308444
+44 0.000182171424967237
+45 0.000156783760758117
+46 0.000163169097504579
+47 0.000154952052980661
+48 0.000230752120842226
+49 0.000182783740456216
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005457989287931654, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005457989287931654, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..68151c53eba866e7178dddbbc9c249a13f12187b
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005457989287931654, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005457989287931654, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005457989287931654, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..676e9474291ed50c613dc5b9b7f0a555db7b5ddd
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005457989287931654, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.23271899681391e-08, ymax=0.000336902884869794,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000166305675520562
+1 2.191985186073e-05
+2 4.35494803241454e-06
+3 2.04590173780161e-06
+4 1.38861150844605e-06
+5 1.02000024071458e-06
+6 7.31184684354957e-07
+7 5.63213006898877e-07
+8 4.77975447665813e-07
+9 3.92125940607002e-07
+10 3.52426127392391e-07
+11 2.93204379886447e-07
+12 2.86238901026081e-07
+13 2.23944397248488e-07
+14 2.13024932804728e-07
+15 1.84968669714181e-07
+16 1.62067109954478e-07
+17 1.55161856696395e-07
+18 1.78244206949785e-07
+19 1.36168353037647e-07
+20 1.34100957893679e-07
+21 1.1044762260326e-07
+22 1.0733214139691e-07
+23 1.0251137183559e-07
+24 9.7984184321831e-08
+25 8.49620676035556e-08
+26 8.80815349546538e-08
+27 7.79104638581885e-08
+28 7.76836941440706e-08
+29 7.84599833991706e-08
+30 7.62760805628204e-08
+31 6.73559981123617e-08
+32 6.70929765078654e-08
+33 6.9260316593045e-08
+34 5.81768908602953e-08
+35 5.59233193087039e-08
+36 5.45758993553136e-08
+37 5.14598887946249e-08
+38 4.93613896423994e-08
+39 4.86990145986965e-08
+40 4.66421319345045e-08
+41 4.50775559102112e-08
+42 4.34520082137624e-08
+43 4.94560659092258e-08
+44 4.2165058999899e-08
+45 4.07450606587645e-08
+46 3.86365712756742e-08
+47 3.75173776490101e-08
+48 3.52108564527498e-08
+49 3.45759119113609e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.00016382681496907
+1 2.94444562314311e-05
+2 6.30576550975093e-06
+3 2.52168115366658e-06
+4 1.64315622441791e-06
+5 8.91645356659865e-07
+6 8.58546911786107e-07
+7 6.76863862736354e-07
+8 4.36734438835629e-07
+9 4.36808790027499e-07
+10 2.08002845170085e-07
+11 2.75131071703072e-07
+12 2.02795717996196e-07
+13 2.50171041216163e-07
+14 2.31802943062576e-07
+15 2.6118715368284e-07
+16 2.20197577505132e-07
+17 1.29237633927914e-07
+18 1.27276919670294e-07
+19 1.03713482246803e-07
+20 1.09582458662771e-07
+21 1.22116986744913e-07
+22 1.07956616091087e-07
+23 1.14731143696645e-07
+24 7.64757359661417e-08
+25 8.79961064015333e-08
+26 6.98855089353856e-08
+27 8.82055744000354e-08
+28 6.56064926829458e-08
+29 6.70200179797575e-08
+30 5.16168761066638e-08
+31 5.90171751468915e-08
+32 5.48801892819029e-08
+33 5.32890460647195e-08
+34 5.15068236950356e-08
+35 6.48993250251806e-08
+36 4.64333780314519e-08
+37 7.32381693069328e-08
+38 5.36014006513597e-08
+39 5.55178587546834e-08
+40 5.13721829520364e-08
+41 5.03104331528448e-08
+42 3.97722352829533e-08
+43 4.42220873253518e-08
+44 4.54545912020876e-08
+45 4.06073219494374e-08
+46 3.67579069404655e-08
+47 4.38264002866617e-08
+48 4.81671698082664e-08
+49 4.69146819170874e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000168580605532043
+1 0.000163170450832695
+2 0.000164938683155924
+3 0.000166593657922931
+4 0.000161105999723077
+5 0.000164129873155616
+6 0.000167942736879922
+7 0.000168003782164305
+8 0.000165953475516289
+9 0.000163811142556369
+10 0.000170241604791954
+11 0.000169126753462479
+12 0.000169109800481237
+13 0.000170193074154668
+14 0.000167533115018159
+15 0.000162496682605706
+16 0.000166439698659815
+17 0.000165101228049025
+18 0.0001624313154025
+19 0.000166474375873804
+20 0.000169550025020726
+21 0.00017150778148789
+22 0.00016171220340766
+23 0.000165725476108491
+24 0.00016594487533439
+25 0.000168772035976872
+26 0.000167582533322275
+27 0.000167005331604742
+28 0.000167082995176315
+29 0.000167054196936078
+30 0.000168004320585169
+31 0.000167739664902911
+32 0.000168657978065312
+33 0.000167518344824202
+34 0.000160894211148843
+35 0.000167280682944693
+36 0.000164011449669488
+37 0.000169933249708265
+38 0.000162080061272718
+39 0.000168596554431133
+40 0.000165018122061156
+41 0.000167972117196769
+42 0.000167643287568353
+43 0.000164254568517208
+44 0.000160861789481714
+45 0.000162409080076031
+46 0.000165357298101299
+47 0.000165150238899514
+48 0.000166110999998637
+49 0.000168663405929692
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000149327563121915
+1 0.000194002685020678
+2 0.000182119212695397
+3 0.00016533795860596
+4 0.000217276727198623
+5 0.000185992234037258
+6 0.000164696786669083
+7 0.000152103035361506
+8 0.000172017142176628
+9 0.000186728764674626
+10 0.000131610766402446
+11 0.00014403484237846
+12 0.00016331508231815
+13 0.000149459796375595
+14 0.000153590764966793
+15 0.000202060284209438
+16 0.000166035650181584
+17 0.00017763304640539
+18 0.000201402377570048
+19 0.000164625045727007
+20 0.000138789560878649
+21 0.000125694859889336
+22 0.000207247008802369
+23 0.000172601619851775
+24 0.000161646777996793
+25 0.000145659476402216
+26 0.000156209411215968
+27 0.000162016367539763
+28 0.00016622748808004
+29 0.000158336479216814
+30 0.000149474057252519
+31 0.000152603402966633
+32 0.00014303378702607
+33 0.000154410299728625
+34 0.000217553038964979
+35 0.000154596767970361
+36 0.000187529949471354
+37 0.000134861023980193
+38 0.000201619972358458
+39 0.000148933992022648
+40 0.000176779431058094
+41 0.00015267297567334
+42 0.000156699257786386
+43 0.000187527999514714
+44 0.000214927466004156
+45 0.000204042284167372
+46 0.000176319794263691
+47 0.000175312932697125
+48 0.000165829420438968
+49 0.000147085709613748
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005502886336031025, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005502886336031025, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..23e05fe2689e0882ab694c4e537cae67b10cf386
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005502886336031025, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005502886336031025, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005502886336031025, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..04fd1d9f9c0a567d98564460e4f58ecacaae859f
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005502886336031025, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.30338742650823e-08, ymax=0.00027121776385902,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000132530854898505
+1 1.34758010972291e-05
+2 2.57836859418603e-06
+3 1.26508598441433e-06
+4 7.61836190577014e-07
+5 5.6145597682189e-07
+6 4.19417062857974e-07
+7 3.52163823436058e-07
+8 3.07143892541717e-07
+9 2.57903167266704e-07
+10 2.194185526605e-07
+11 1.86706799354397e-07
+12 1.66123854228317e-07
+13 1.52209480575038e-07
+14 1.40717091312581e-07
+15 1.2315102537741e-07
+16 1.14411690788074e-07
+17 1.06850947645398e-07
+18 9.66630011589587e-08
+19 8.7098683820841e-08
+20 8.67947989036111e-08
+21 7.75180453160829e-08
+22 7.41634167411576e-08
+23 6.74747369089346e-08
+24 6.50503153565296e-08
+25 6.19318640815436e-08
+26 5.69862308452684e-08
+27 5.27775476655279e-08
+28 5.18938598759178e-08
+29 4.96934475791022e-08
+30 4.66452156899777e-08
+31 4.47237660239352e-08
+32 4.1227835367863e-08
+33 3.99518143012756e-08
+34 3.91903363095025e-08
+35 3.75380082573429e-08
+36 3.72686272953615e-08
+37 3.57342919699022e-08
+38 3.25656195343527e-08
+39 3.35941798823569e-08
+40 3.57298937103678e-08
+41 3.00914173578803e-08
+42 2.85564567548136e-08
+43 2.83650436472271e-08
+44 2.81494578757702e-08
+45 2.62124011385367e-08
+46 2.73299125552739e-08
+47 2.68597233343826e-08
+48 2.46899514166898e-08
+49 2.39078925545755e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000142766322824173
+1 1.05255967355333e-05
+2 2.3853638140281e-06
+3 9.91344450085307e-07
+4 8.45252941417129e-07
+5 5.80240282488376e-07
+6 5.04907461618131e-07
+7 3.27764468011082e-07
+8 2.62678696572038e-07
+9 1.96047949430067e-07
+10 1.8226124609555e-07
+11 2.1654591364495e-07
+12 2.18230411519471e-07
+13 1.37903867880595e-07
+14 1.06324399951063e-07
+15 1.29181174202131e-07
+16 1.05932421945454e-07
+17 8.36575182461274e-08
+18 8.89702889139699e-08
+19 9.6134613158938e-08
+20 1.39811845656368e-07
+21 6.02221490453303e-08
+22 6.08269843382914e-08
+23 6.40045527688926e-08
+24 7.27389775079246e-08
+25 6.5690585415723e-08
+26 5.61739632587432e-08
+27 5.7877855397237e-08
+28 4.16240304446092e-08
+29 4.92867364698668e-08
+30 5.33912327682629e-08
+31 3.69918566889282e-08
+32 4.23371453450727e-08
+33 4.34399929361007e-08
+34 3.8247101485922e-08
+35 3.62052219315956e-08
+36 3.10713481610492e-08
+37 4.38224887489014e-08
+38 3.28621609924085e-08
+39 2.62255621663599e-08
+40 2.52026506331049e-08
+41 2.87549628552597e-08
+42 3.50188962272568e-08
+43 2.92955384395555e-08
+44 2.77164229345317e-08
+45 2.65867896587224e-08
+46 2.07695247667061e-08
+47 2.53607197464589e-08
+48 2.0481293105945e-08
+49 2.59846562045141e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000136870774440467
+1 0.000134398622321896
+2 0.000129129155538976
+3 0.000130890897708014
+4 0.000135151945869438
+5 0.000136197748361155
+6 0.000129950378322974
+7 0.000134512825752608
+8 0.000131992768729106
+9 0.000136384056531824
+10 0.000133947134600021
+11 0.000132392582600005
+12 0.000133021821966395
+13 0.000133670662762597
+14 0.000133123467094265
+15 0.000134034504299052
+16 0.000133088527945802
+17 0.000135453694383614
+18 0.000132894463604316
+19 0.000131942724692635
+20 0.000134329617139883
+21 0.000134863439598121
+22 0.00013422999472823
+23 0.000135045978822745
+24 0.000131903958390467
+25 0.000135564827360213
+26 0.000134120971779339
+27 0.000133868015836924
+28 0.000134066314785741
+29 0.000135830312501639
+30 0.000132593399030156
+31 0.000137216600705869
+32 0.00013376257265918
+33 0.000132047629449517
+34 0.000132015848066658
+35 0.000132727975142188
+36 0.000132983637740836
+37 0.000131724256789312
+38 0.000134210960823111
+39 0.000133898589410819
+40 0.000134171510580927
+41 0.000132912624394521
+42 0.000133270761580206
+43 0.000133633890072815
+44 0.000134589878143743
+45 0.000134734582388774
+46 0.000130916552734561
+47 0.000132123008370399
+48 0.000136910399305634
+49 0.000136766902869567
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000106585030152928
+1 0.000127221021102741
+2 0.000172597414348274
+3 0.000156438429257832
+4 0.000119322234240826
+5 0.000110774199129082
+6 0.000165492747328244
+7 0.000125472608488053
+8 0.000147020327858627
+9 0.000114520451461431
+10 0.000128265572129749
+11 0.000143782031955197
+12 0.000139537311042659
+13 0.000134664252982475
+14 0.000138462200993672
+15 0.000131924098241143
+16 0.000137852839543484
+17 0.000116908704512753
+18 0.000141200187499635
+19 0.000148500592331402
+20 0.000126984115922824
+21 0.000123487930977717
+22 0.000127955761854537
+23 0.000120091252028942
+24 0.000148385166539811
+25 0.000118867377750576
+26 0.000130168220493942
+27 0.000129512918647379
+28 0.000129701147670858
+29 0.000112196197733283
+30 0.000140819160151295
+31 9.98430914478377e-05
+32 0.000129869193187915
+33 0.00014863557589706
+34 0.00014785208622925
+35 0.000140624426421709
+36 0.000139590163598768
+37 0.000150296589708887
+38 0.000130873508169316
+39 0.000130403248476796
+40 0.00012901057198178
+41 0.000141503507620655
+42 0.000137776107294485
+43 0.000132601722725667
+44 0.000124087164294906
+45 0.000123077974421903
+46 0.000157876827870496
+47 0.000146493621286936
+48 0.000103733815194573
+49 0.000107419378764462
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005518654923118039, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005518654923118039, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..15df37ae9c7b4059e466152b00a9fc599e77b7c0
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005518654923118039, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005518654923118039, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005518654923118039, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..beee973b1f8f9f77c6870d1709e1d480b9424df3
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005518654923118039, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.97390426602011e-08, ymax=0.000274646917743399,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000138060771860182
+1 1.63653694471577e-05
+2 4.96010443384876e-06
+3 2.47562888944231e-06
+4 1.71450017205643e-06
+5 1.18132845727814e-06
+6 8.46659304443165e-07
+7 7.04373690041393e-07
+8 6.09400331086363e-07
+9 4.92192839374184e-07
+10 4.30321676958556e-07
+11 3.76973389393243e-07
+12 3.39184055064834e-07
+13 2.7615854492069e-07
+14 2.55971457363557e-07
+15 2.3460226827865e-07
+16 2.19173386994953e-07
+17 2.17416427972239e-07
+18 1.93247444713052e-07
+19 1.64069120955901e-07
+20 1.70139074384679e-07
+21 1.51431635231347e-07
+22 1.43567618238194e-07
+23 1.27540928929193e-07
+24 1.25723360611119e-07
+25 1.19390335839853e-07
+26 1.18785415281764e-07
+27 1.05217644374989e-07
+28 1.01404729946353e-07
+29 1.48005739220025e-07
+30 9.59284136570204e-08
+31 9.06456634197639e-08
+32 8.46022629730214e-08
+33 7.91522509757669e-08
+34 9.77193082007943e-08
+35 7.84849802926146e-08
+36 7.07796985466302e-08
+37 6.73629898528816e-08
+38 6.7888194621446e-08
+39 6.25681337851347e-08
+40 6.46496687295439e-08
+41 6.07975252364668e-08
+42 5.81827634960064e-08
+43 6.10024883940241e-08
+44 5.8613650821826e-08
+45 5.41408731180582e-08
+46 5.4425910889222e-08
+47 5.15146645341247e-08
+48 4.9594312656609e-08
+49 4.8540353958515e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000138906354550272
+1 2.18910190596944e-05
+2 3.55984957423061e-06
+3 2.28447515837615e-06
+4 1.93511800716806e-06
+5 1.23412826269487e-06
+6 1.00082775134069e-06
+7 6.664608349638e-07
+8 8.09761502296169e-07
+9 4.44014830236483e-07
+10 4.4448603375713e-07
+11 3.37735826860808e-07
+12 2.83179105053932e-07
+13 3.33439714950146e-07
+14 3.33420473452861e-07
+15 3.04881496049347e-07
+16 1.8458847250713e-07
+17 2.51244784976734e-07
+18 1.96290628196039e-07
+19 2.21063515937203e-07
+20 1.34207425617205e-07
+21 1.36088601720985e-07
+22 1.04163177638839e-07
+23 1.51444751850249e-07
+24 1.12252408257518e-07
+25 1.17495595475248e-07
+26 9.46741849361388e-08
+27 1.08886119676299e-07
+28 1.08456639225096e-07
+29 7.87440370686454e-08
+30 1.01852911882361e-07
+31 7.94567185380401e-08
+32 8.87811992811294e-08
+33 8.77753549843874e-08
+34 6.9912260869387e-08
+35 7.17006756190131e-08
+36 6.83621053099159e-08
+37 7.8365808064973e-08
+38 5.9744913016857e-08
+39 5.91050657305914e-08
+40 4.50375345906195e-08
+41 5.34167270416219e-08
+42 5.82338941512717e-08
+43 6.04409038373888e-08
+44 5.54316734735494e-08
+45 5.29025037110387e-08
+46 4.76048676034679e-08
+47 4.805422193499e-08
+48 4.95451111248713e-08
+49 5.05786168503164e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000139431867864914
+1 0.0001348761288682
+2 0.000140897376695648
+3 0.000138713614433073
+4 0.000139002135256305
+5 0.000140596370329149
+6 0.000137319322675467
+7 0.000134461515699513
+8 0.000135435562697239
+9 0.00013951031723991
+10 0.000137117327540182
+11 0.000135260532260872
+12 0.000140346717671491
+13 0.000139636627864093
+14 0.000135271475301124
+15 0.000138916468131356
+16 0.000138373899972066
+17 0.000137914321385324
+18 0.000138917384902015
+19 0.000136802933411673
+20 0.000140520729473792
+21 0.000138665505801328
+22 0.000138995485031046
+23 0.000135081674670801
+24 0.00013660172407981
+25 0.000140396397910081
+26 0.000137002469273284
+27 0.000138113420689479
+28 0.000140932737849653
+29 0.000139298179419711
+30 0.000138071598485112
+31 0.000137333379825577
+32 0.000149831670569256
+33 0.000133171532070264
+34 0.000138426621560939
+35 0.000140684904181398
+36 0.000134132511448115
+37 0.000139978932566009
+38 0.000135628608404659
+39 0.000139461320941336
+40 0.000138791234348901
+41 0.000139253752422519
+42 0.000140175019623712
+43 0.00013807303912472
+44 0.000138930568937212
+45 0.000137739509227686
+46 0.000135598893393762
+47 0.000138876363052987
+48 0.000137362731038593
+49 0.000137661918415688
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000126533239381388
+1 0.000167931997566484
+2 0.000111755180114415
+3 0.000129457053844817
+4 0.000129227104480378
+5 0.000114799338916782
+6 0.000145595942740329
+7 0.000169532562722452
+8 0.000158587426994927
+9 0.000124219106510282
+10 0.000144794044899754
+11 0.000164138953550719
+12 0.000115517854283098
+13 0.000121223041787744
+14 0.000166790268849581
+15 0.000133678302518092
+16 0.000132505156216212
+17 0.000139273732202128
+18 0.000130387008539401
+19 0.000148273524246179
+20 0.000117695330118295
+21 0.000131576307467185
+22 0.000131400709506124
+23 0.000164873708854429
+24 0.000152465683640912
+25 0.000116295217594597
+26 0.00014407021808438
+27 0.000133594730868936
+28 0.000112547211756464
+29 0.000128033454529941
+30 0.000142188611789607
+31 0.000146674021380022
+32 0.000110913882963359
+33 0.000181353985681199
+34 0.000132990171550773
+35 0.000115121809358243
+36 0.000172404790646397
+37 0.000122798708616756
+38 0.000164775236044079
+39 0.000123348974739201
+40 0.000130081200040877
+41 0.000130749351228587
+42 0.000116969880764373
+43 0.000134312227601185
+44 0.000130279819131829
+45 0.000136197224492207
+46 0.000163495002198033
+47 0.000128893399960361
+48 0.000144939083838835
+49 0.000142224162118509
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005542237283638666, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005542237283638666, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..bc0e5f8aa78800558b9c489a06c8ade17ea90a50
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005542237283638666, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005542237283638666, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005542237283638666, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..86edb9b0a7dd568f7784c9eaa36ba647d776cea5
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005542237283638666, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.62462370058565e-08, ymax=0.000247999454303044,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000126988044939935
+1 1.03498905446031e-05
+2 2.99978751172603e-06
+3 1.48249341691553e-06
+4 1.1364351166776e-06
+5 6.7151000848753e-07
+6 4.75336719318875e-07
+7 3.86089510584497e-07
+8 2.95983994647031e-07
+9 2.57426165717334e-07
+10 2.16945622355524e-07
+11 1.9110315463422e-07
+12 1.75204618813041e-07
+13 1.58090429636104e-07
+14 1.43982930467246e-07
+15 1.30229622641309e-07
+16 1.21254743135069e-07
+17 1.07626817680284e-07
+18 9.73362048739546e-08
+19 9.81150805046127e-08
+20 8.40340561580888e-08
+21 8.18594827478591e-08
+22 7.89987097959965e-08
+23 7.0638598970163e-08
+24 6.6621460348415e-08
+25 6.16335640302168e-08
+26 5.95376477008358e-08
+27 5.76211292013795e-08
+28 5.54457599832858e-08
+29 5.37504618591811e-08
+30 5.14768245807318e-08
+31 4.71387835432324e-08
+32 4.48610535386251e-08
+33 4.415313270556e-08
+34 4.24321235925618e-08
+35 3.94847567974921e-08
+36 3.93002927978614e-08
+37 3.75541588937267e-08
+38 3.66629286929765e-08
+39 3.46966260167392e-08
+40 3.21549542547928e-08
+41 3.19998179065806e-08
+42 3.1450369419872e-08
+43 3.05527336763589e-08
+44 2.95423383533944e-08
+45 2.82696479558808e-08
+46 2.77643987800502e-08
+47 2.78760410310497e-08
+48 2.58149643883598e-08
+49 2.5740357401105e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000126265425933525
+1 8.11445988802006e-06
+2 3.20579124490905e-06
+3 1.35193283767876e-06
+4 9.75245029621874e-07
+5 6.58836313505162e-07
+6 5.25078974078497e-07
+7 2.30915617294158e-07
+8 3.24195042367137e-07
+9 2.6696338295551e-07
+10 2.4339254878214e-07
+11 2.32558392099236e-07
+12 1.80512458314297e-07
+13 1.46528350342123e-07
+14 1.1667716393049e-07
+15 1.09723487184965e-07
+16 1.00831584859407e-07
+17 1.13045949490242e-07
+18 9.41801374665374e-08
+19 7.87324552220525e-08
+20 1.00939146818746e-07
+21 7.32644096501645e-08
+22 6.61742873830917e-08
+23 7.45774357824303e-08
+24 8.56458086673229e-08
+25 7.2450021093573e-08
+26 6.58000303133122e-08
+27 6.2506444464816e-08
+28 5.30200807702386e-08
+29 4.59243771899764e-08
+30 4.24486295003135e-08
+31 5.49427561225002e-08
+32 4.41851391030923e-08
+33 3.18147606037655e-08
+34 3.97692936360272e-08
+35 4.38827285620391e-08
+36 3.35185035282848e-08
+37 3.327417985588e-08
+38 2.98109661400758e-08
+39 3.47374680131907e-08
+40 4.13615417471647e-08
+41 3.28695470841467e-08
+42 3.34881029573353e-08
+43 3.35509788840227e-08
+44 2.91100867855221e-08
+45 3.02246121464123e-08
+46 3.24299698206687e-08
+47 2.65243329522491e-08
+48 3.03275271562597e-08
+49 2.51721825605955e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000127024730318226
+1 0.000128766550915316
+2 0.000125075239338912
+3 0.000125826627481729
+4 0.00012871841317974
+5 0.000125728052807972
+6 0.000124728103401139
+7 0.000125982536701486
+8 0.000126620230730623
+9 0.000125605467474088
+10 0.000126988568808883
+11 0.000126792045193724
+12 0.000127930587041192
+13 0.000127381979837082
+14 0.000127230770885944
+15 0.000129659616504796
+16 0.000127510749734938
+17 0.000126668965094723
+18 0.000125772377941757
+19 0.000125751277664676
+20 0.000127382867503911
+21 0.000126880928291939
+22 0.000126734521472827
+23 0.000128580344608054
+24 0.000126056736917235
+25 0.000128135434351861
+26 0.000128143117763102
+27 0.000127237377455458
+28 0.000129426713101566
+29 0.000128791318275034
+30 0.000128820494865067
+31 0.000127689854707569
+32 0.000127307372167706
+33 0.000127148232422769
+34 0.000126832368550822
+35 0.000125433303765021
+36 0.000127759587485343
+37 0.000127477615023963
+38 0.000126800834550522
+39 0.000128125757328235
+40 0.00012428111222107
+41 0.000124037003843114
+42 0.000126179846120067
+43 0.000126229875604622
+44 0.000123215140774846
+45 0.000126651881146245
+46 0.000124671962112188
+47 0.000127550301840529
+48 0.000125194070278667
+49 0.000124991260236129
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.00012754334602505
+1 0.000110690016299486
+2 0.00014286172518041
+3 0.000135693320771679
+4 0.000110307315480895
+5 0.000137545939651318
+6 0.000147558210301213
+7 0.000135689406306483
+8 0.000131300563225523
+9 0.00013764007599093
+10 0.000125666658277623
+11 0.000127817780594341
+12 0.000118134332296904
+13 0.000122575424029492
+14 0.000125067119370215
+15 0.00010205217404291
+16 0.000123309000628069
+17 0.00013143774413038
+18 0.000137587587232701
+19 0.000137837880174629
+20 0.000143576209666207
+21 0.000126930521219037
+22 0.000130047890706919
+23 0.000112522444396745
+24 0.000133463530801237
+25 0.000115936178190168
+26 0.00011884537525475
+27 0.000124303580378182
+28 0.000104359212855343
+29 0.000110612556454726
+30 0.000110689048597123
+31 0.000120418939332012
+32 0.000123758392874151
+33 0.00012789192260243
+34 0.000128084633615799
+35 0.00014108105096966
+36 0.000120171091111843
+37 0.000123044810607098
+38 0.000128241765196435
+39 0.000116831906780135
+40 0.000148341336171143
+41 0.000155064815771766
+42 0.000133485926198773
+43 0.00013288612535689
+44 0.000160059935296886
+45 0.000129181062220596
+46 0.00014806461695116
+47 0.000121441436931491
+48 0.000145184312714264
+49 0.00014538767572958
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005544986726611334, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005544986726611334, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..609f9aaf4480b8d548420293fd030da943bebe0a
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005544986726611334, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005544986726611334, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005544986726611334, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..89127512fb33d8855ee5f846e4fd334d89f4bda3
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005544986726611334, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.5,0.5)},
+  anchor=center,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=5.7569006106651e-08, ymax=0.000296579512693499,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000162101598107256
+1 1.99745354620973e-05
+2 7.12341670805472e-06
+3 3.98264592149644e-06
+4 3.10086079480243e-06
+5 2.01231773644395e-06
+6 1.62924072810711e-06
+7 1.29398790704727e-06
+8 1.11712620309845e-06
+9 9.41365101425617e-07
+10 8.05676847903669e-07
+11 7.02847330558143e-07
+12 6.43329997274122e-07
+13 5.71024031614797e-07
+14 5.33174045358464e-07
+15 4.79614811865758e-07
+16 4.24127222231618e-07
+17 4.0509306131753e-07
+18 3.5841395629177e-07
+19 3.37253823090577e-07
+20 3.18327693094034e-07
+21 2.86562425344528e-07
+22 2.67121720298746e-07
+23 2.62115349869418e-07
+24 2.44919959868639e-07
+25 2.3710860830306e-07
+26 2.24738371912281e-07
+27 2.07393014761692e-07
+28 1.95488411236511e-07
+29 1.89372812542388e-07
+30 1.91845302310867e-07
+31 1.7094862414524e-07
+32 1.71393224945859e-07
+33 1.60161945927939e-07
+34 1.5412649645441e-07
+35 1.46711442994274e-07
+36 1.4469101472514e-07
+37 1.37042476922034e-07
+38 1.33827754211779e-07
+39 1.3101099227697e-07
+40 1.203669626193e-07
+41 1.1931660992559e-07
+42 1.12995465428867e-07
+43 1.11533957181109e-07
+44 1.05822863361027e-07
+45 1.09457708674654e-07
+46 1.0221894086726e-07
+47 1.04300248437994e-07
+48 9.94078064309178e-08
+49 5.707991476811e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000142206597956829
+1 1.55185443873052e-05
+2 5.72333692616667e-06
+3 3.75472018276923e-06
+4 2.63459401139698e-06
+5 2.76816308542038e-06
+6 1.75567640781082e-06
+7 1.54913675487478e-06
+8 1.1783057516368e-06
+9 1.0220921922155e-06
+10 8.84118435351411e-07
+11 7.314949357351e-07
+12 6.47224737804208e-07
+13 5.6894862154877e-07
+14 4.34122114256752e-07
+15 3.34137212121277e-07
+16 4.78328217923263e-07
+17 3.71310449054363e-07
+18 3.883622525791e-07
+19 3.71210177263492e-07
+20 2.94229039354832e-07
+21 2.82975037180222e-07
+22 2.94182370907947e-07
+23 2.57083200949637e-07
+24 2.52384324994637e-07
+25 2.04835302497486e-07
+26 2.16715690726232e-07
+27 1.88410240298253e-07
+28 1.93357024613761e-07
+29 1.99402890643796e-07
+30 1.42167991157294e-07
+31 1.86316569283917e-07
+32 1.49031080809436e-07
+33 1.59709472313807e-07
+34 1.49142167060745e-07
+35 1.4891936928052e-07
+36 1.33658915046908e-07
+37 1.2583355157858e-07
+38 1.08884954386212e-07
+39 1.15038055525929e-07
+40 1.19786363939056e-07
+41 1.1316421932861e-07
+42 1.26067206451808e-07
+43 1.19901571338232e-07
+44 1.08269979648412e-07
+45 8.49012025128104e-08
+46 1.00332876229459e-07
+47 1.0944642525601e-07
+48 9.16915041671018e-08
+49 1.03249774952019e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000163943201187067
+1 0.000159033195814118
+2 0.000159630042617209
+3 0.000161787029355764
+4 0.000155879024532624
+5 0.000159240822540596
+6 0.000161673116963357
+7 0.000155727757373825
+8 0.000159582748892717
+9 0.00015967758372426
+10 0.000159119212185033
+11 0.000163729724590667
+12 0.000159387040184811
+13 0.000158897557412274
+14 0.000158818002091721
+15 0.000159437986440025
+16 0.000159071147209033
+17 0.000162688840646297
+18 0.000160667303134687
+19 0.000158839844516478
+20 0.000161876392667182
+21 0.00015663068916183
+22 0.000160808864166029
+23 0.00015718127542641
+24 0.000158581155119464
+25 0.000159922288730741
+26 0.000157799207954668
+27 0.000160709634656087
+28 0.000159414339577779
+29 0.00015953416004777
+30 0.000160990166477859
+31 0.000160937284817919
+32 0.000159852497745305
+33 0.000160076364409178
+34 0.000158412876771763
+35 0.000160462746862322
+36 0.000160630326718092
+37 0.000165109770023264
+38 0.000160765295731835
+39 0.000159372080815956
+40 0.000158065638970584
+41 0.000163201460964046
+42 0.000161775358719751
+43 0.000158571128849871
+44 0.000158577488036826
+45 0.000162860655109398
+46 0.000161206553457305
+47 0.000162193697178736
+48 0.000155720525071956
+49 0.000161811607540585
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000126205646665767
+1 0.000169602964888327
+2 0.000165220655617304
+3 0.00015221418289002
+4 0.000199292597244494
+5 0.000174729662830941
+6 0.000144458739669062
+7 0.000200644135475159
+8 0.000169054677826352
+9 0.00016670412151143
+10 0.000170825151144527
+11 0.000131386259454302
+12 0.000169453822309151
+13 0.000174367174622603
+14 0.000173273452674039
+15 0.00016965412942227
+16 0.000170730520039797
+17 0.000139827810926363
+18 0.00015668137348257
+19 0.000172385334735736
+20 0.000145447833347134
+21 0.000194555017515086
+22 0.000156755180796608
+23 0.000193369502085261
+24 0.000170678671565838
+25 0.000163170814630575
+26 0.000182364994543605
+27 0.000158208960783668
+28 0.000168775048223324
+29 0.000166258119861595
+30 0.000152451408212073
+31 0.00015787678421475
+32 0.000167288599186577
+33 0.000164340439368971
+34 0.000175417269929312
+35 0.000160825715283863
+36 0.000161764895892702
+37 0.000179387585376389
+38 0.000158000097144395
+39 0.000170806524693035
+40 0.00018066207121592
+41 0.00013486978423316
+42 0.000143979545100592
+43 0.000179089634912089
+44 0.000177212219568901
+45 0.000138801638968289
+46 0.000151277796248905
+47 0.000142507531563751
+48 0.000201101836864837
+49 0.000152487889863551
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005610861065463724, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005610861065463724, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..523132e3b21d6cab79f69c0e19c524056d0ec5a9
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005610861065463724, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005610861065463724, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005610861065463724, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..6dd29832929770d70671bbda262a06e5aa85c891
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005610861065463724, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.23780307280786e-08, ymax=0.000291112211823724,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000148478779010475
+1 2.17972847167403e-05
+2 4.29064675699919e-06
+3 2.30001978707151e-06
+4 1.48364495089481e-06
+5 9.74875206338766e-07
+6 7.28330178390024e-07
+7 6.09215646818484e-07
+8 4.87177089780744e-07
+9 4.04761863137537e-07
+10 3.44940303875774e-07
+11 3.06089589230396e-07
+12 2.68033232941889e-07
+13 2.43615687622878e-07
+14 2.21242174802683e-07
+15 1.94949265619471e-07
+16 1.8397747680865e-07
+17 1.67186954058707e-07
+18 1.51057960806611e-07
+19 1.40364647904789e-07
+20 1.26178889559014e-07
+21 1.21121217944165e-07
+22 1.14321927924266e-07
+23 1.07760328660333e-07
+24 1.01085227299791e-07
+25 9.56283372488542e-08
+26 8.88837874413184e-08
+27 8.66703402380153e-08
+28 8.61875406599211e-08
+29 7.69206707218473e-08
+30 7.55560449761106e-08
+31 7.00285767152309e-08
+32 6.70786732825945e-08
+33 6.59758967458401e-08
+34 5.97951341774206e-08
+35 5.92767683826878e-08
+36 5.66733788787133e-08
+37 5.47434204634101e-08
+38 5.42006510784176e-08
+39 5.41603455417317e-08
+40 5.16882536771845e-08
+41 4.80458943741269e-08
+42 4.82888786734748e-08
+43 4.46685888277898e-08
+44 4.38225065124698e-08
+45 4.48180799139664e-08
+46 4.43450218767794e-08
+47 4.01857107590331e-08
+48 3.88066965228973e-08
+49 3.96620407627779e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000136227768962272
+1 2.13150578929344e-05
+2 3.1805902835913e-06
+3 2.50797211265308e-06
+4 1.23348968372738e-06
+5 1.4022709819983e-06
+6 9.10956828192866e-07
+7 5.17763623975043e-07
+8 4.48114491291562e-07
+9 4.0035024539975e-07
+10 3.64684495934853e-07
+11 2.5193409669555e-07
+12 2.60960547393552e-07
+13 2.65774161789523e-07
+14 1.78901288450106e-07
+15 2.51627767511309e-07
+16 1.63099954875179e-07
+17 1.63102072292531e-07
+18 1.43267740781994e-07
+19 1.40110543611627e-07
+20 1.47373825143404e-07
+21 1.3556216060806e-07
+22 1.19678475130058e-07
+23 1.14477579415961e-07
+24 9.59846531145558e-08
+25 8.20120149569448e-08
+26 1.01579473721358e-07
+27 1.31834539729425e-07
+28 5.79685277557473e-08
+29 6.77136995363981e-08
+30 6.10009394108602e-08
+31 8.49755679155351e-08
+32 6.44628670443126e-08
+33 5.43223350746302e-08
+34 7.31398515085857e-08
+35 5.31596882069607e-08
+36 5.86939812308174e-08
+37 7.20025212785913e-08
+38 5.88568376258536e-08
+39 5.18254879011693e-08
+40 5.05532469219361e-08
+41 5.69331426447661e-08
+42 4.46847536750283e-08
+43 4.92697544984821e-08
+44 5.14912379401267e-08
+45 4.36738432085804e-08
+46 3.44217312431283e-08
+47 4.73878927209626e-08
+48 4.17530330310001e-08
+49 3.74086788212935e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000148359147715382
+1 0.000148713472299278
+2 0.000143199999001808
+3 0.000149052983033471
+4 0.000150736668729223
+5 0.000144839606946334
+6 0.000145187630550936
+7 0.000151768559589982
+8 0.000145146550494246
+9 0.000150278079672717
+10 0.000148630293551832
+11 0.000149281608173624
+12 0.000148427890962921
+13 0.000147283601108938
+14 0.000145553814945742
+15 0.000149630941450596
+16 0.000147761093103327
+17 0.000147691083839163
+18 0.000146146761835553
+19 0.000147444239701144
+20 0.00014647030911874
+21 0.000149571977090091
+22 0.000150085630593821
+23 0.000147704078699462
+24 0.000145129131851718
+25 0.000146001213579439
+26 0.000147740298416466
+27 0.000144783858559094
+28 0.000150144289364107
+29 0.000147951563121751
+30 0.00014985931920819
+31 0.000145564335980453
+32 0.000148601073306054
+33 0.000149673302075826
+34 0.000148477789480239
+35 0.000146108155604452
+36 0.00015197649190668
+37 0.000150505336932838
+38 0.000148503968375735
+39 0.000149707746459171
+40 0.00014651901437901
+41 0.000146781298099086
+42 0.000148802835610695
+43 0.000150782492710277
+44 0.000149109109770507
+45 0.000149500076076947
+46 0.000151809756061994
+47 0.000147874205140397
+48 0.000143613840918988
+49 0.000148771141539328
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000138053335831501
+1 0.000131347667775117
+2 0.000189255966688506
+3 0.000128693049191497
+4 0.000115499300591182
+5 0.000169603998074308
+6 0.000167438454809599
+7 0.000106638392026071
+8 0.000169916806044057
+9 0.000119493030069862
+10 0.000135055961436592
+11 0.000129630352603272
+12 0.000136294402182102
+13 0.000144155492307618
+14 0.000161604242748581
+15 0.00012729168520309
+16 0.000141376774990931
+17 0.000142934761242941
+18 0.000157770235091448
+19 0.000144454344990663
+20 0.000152027569129132
+21 0.00012600100308191
+22 0.000121650940855034
+23 0.000143868921441026
+24 0.000164938261150382
+25 0.000156130743562244
+26 0.000142776916618459
+27 0.000171912426594645
+28 0.000126781713333912
+29 0.000140382922836579
+30 0.000124983067507856
+31 0.0001630646729609
+32 0.000134345129481517
+33 0.00012362860434223
+34 0.000138036397402175
+35 0.000156400463311002
+36 0.00010436159936944
+37 0.000117643961857539
+38 0.00013563537504524
+39 0.000125416860100813
+40 0.000153421220602468
+41 0.000151448140968569
+42 0.00013671132910531
+43 0.00011410286242608
+44 0.000130688174976967
+45 0.000126745740999468
+46 0.000109635810076725
+47 0.000144316334626637
+48 0.000178181944647804
+49 0.000133693174575455
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005637474192998805, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005637474192998805, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..c33dcc6eb0b3d0d024876443c1a322dd1391f83c
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005637474192998805, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005637474192998805, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005637474192998805, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..9227397b94cd621349d020c91fdabf21ed2d3138
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005637474192998805, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.63976312129805e-08, ymax=0.000270278079943473,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000136577917146496
+1 2.27410018851515e-05
+2 4.98773943036213e-06
+3 2.68275425696629e-06
+4 1.68754525020631e-06
+5 1.28789338305069e-06
+6 9.82583514996804e-07
+7 8.11057986993546e-07
+8 6.60094030990876e-07
+9 5.59936836452835e-07
+10 4.84575707559998e-07
+11 4.09751862662233e-07
+12 3.70674086980216e-07
+13 3.25303005865862e-07
+14 3.03930562495225e-07
+15 2.7754873599406e-07
+16 2.58002927466805e-07
+17 2.38135342556234e-07
+18 2.11617205536641e-07
+19 2.05308140266425e-07
+20 1.87159415077076e-07
+21 1.73460122709912e-07
+22 1.70004469168816e-07
+23 1.55877870611221e-07
+24 1.43973551303134e-07
+25 1.41383154073083e-07
+26 1.35536922130086e-07
+27 1.25345252399711e-07
+28 1.18155604411641e-07
+29 1.14783041738065e-07
+30 1.03207497659241e-07
+31 1.01107914929344e-07
+32 9.45378246797191e-08
+33 9.05687969066094e-08
+34 9.10397517372985e-08
+35 8.737928425262e-08
+36 8.51559320835804e-08
+37 8.22436447833752e-08
+38 7.50881596900399e-08
+39 7.57123714834051e-08
+40 7.35204110924315e-08
+41 6.87963463974484e-08
+42 6.55780993952249e-08
+43 6.67524489017524e-08
+44 6.31620267199651e-08
+45 6.09304535714728e-08
+46 6.02989658204933e-08
+47 5.92267461740903e-08
+48 5.82031134399585e-08
+49 5.50402354804191e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000162585987709463
+1 2.92040404019644e-05
+2 5.72142880628235e-06
+3 2.40050394495483e-06
+4 1.89551303719782e-06
+5 1.14938848128077e-06
+6 1.07043922525918e-06
+7 7.83471477916464e-07
+8 5.91350556078396e-07
+9 5.26149790402997e-07
+10 3.86627647230853e-07
+11 4.29552386549403e-07
+12 3.22126197715988e-07
+13 3.30168603568382e-07
+14 2.89020960053676e-07
+15 2.66765425749327e-07
+16 2.15808199754974e-07
+17 2.00485246182325e-07
+18 2.36607121451016e-07
+19 1.42484736898041e-07
+20 1.65239768534775e-07
+21 1.93156168393216e-07
+22 1.65871014701224e-07
+23 1.34734762013977e-07
+24 1.90660671250953e-07
+25 1.202504762432e-07
+26 1.0243589088077e-07
+27 1.14135893625189e-07
+28 1.23149945352452e-07
+29 9.46531741874423e-08
+30 1.19070641346752e-07
+31 1.02092052145508e-07
+32 9.68215800867256e-08
+33 1.0043898157619e-07
+34 9.20685536698329e-08
+35 7.49215374185042e-08
+36 6.00204472789301e-08
+37 8.40335729890285e-08
+38 1.01371007588114e-07
+39 6.54207994443823e-08
+40 6.68566073613874e-08
+41 6.57620375932311e-08
+42 8.58593054431367e-08
+43 6.77945166671634e-08
+44 6.21019751179119e-08
+45 5.83419712540945e-08
+46 5.82052841480163e-08
+47 6.63741204220969e-08
+48 5.4577764529995e-08
+49 6.53533120953398e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000142177057568915
+1 0.000141434982651845
+2 0.000139051204314455
+3 0.000138620482175611
+4 0.00013904988009017
+5 0.000134558562422171
+6 0.000140363306854852
+7 0.000138713512569666
+8 0.000138329007313587
+9 0.000140341784572229
+10 0.000138188945129514
+11 0.000139617506647483
+12 0.000140306423418224
+13 0.000137827635626309
+14 0.000140906951855868
+15 0.000142129269079305
+16 0.000139455936732702
+17 0.000138757619424723
+18 0.00013776910782326
+19 0.000138288247399032
+20 0.000135431560920551
+21 0.000140029325848445
+22 0.000138411545776762
+23 0.000138638934004121
+24 0.000139192183269188
+25 0.000136188260512426
+26 0.000140448217280209
+27 0.000136792688863352
+28 0.000139280455186963
+29 0.000135668044094928
+30 0.00013908815162722
+31 0.000139851268613711
+32 0.000140625052154064
+33 0.000140152507810853
+34 0.000138527568196878
+35 0.000137366107082926
+36 0.000138200426590629
+37 0.000140645628562197
+38 0.000138341871206649
+39 0.000138698727823794
+40 0.000140678632305935
+41 0.000141814743983559
+42 0.000135198468342423
+43 0.000138148083351552
+44 0.00014189888315741
+45 0.000140271265991032
+46 0.000140728589030914
+47 0.000140993462991901
+48 0.000140340431244113
+49 0.000138887931825593
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000111815264972392
+1 0.000119134623673744
+2 0.000140829986776225
+3 0.000145269339554943
+4 0.000138497227453627
+5 0.000180247065145522
+6 0.000127487219288014
+7 0.000140586038469337
+8 0.000144838166306727
+9 0.000130350585095584
+10 0.000148853097925894
+11 0.000136304341140203
+12 0.000130125306895934
+13 0.000151136540807784
+14 0.000122872923384421
+15 0.000112104440631811
+16 0.000136473958264105
+17 0.000146345104440115
+18 0.000152879263623618
+19 0.000147084196214564
+20 0.00017397094052285
+21 0.000131835273350589
+22 0.000147357044625096
+23 0.000145257610711269
+24 0.000140012969495729
+25 0.000164988610777073
+26 0.000128950385260396
+27 0.000162369149620645
+28 0.000141744414577261
+29 0.000170290644746274
+30 0.000143091645441018
+31 0.000133715948322788
+32 0.000125699050840922
+33 0.000130700718727894
+34 0.000143275567097589
+35 0.000156286914716475
+36 0.000147864266182296
+37 0.00012571454863064
+38 0.000145768906804733
+39 0.000146036152727902
+40 0.000125357270007953
+41 0.000113949812657665
+42 0.000176774497958831
+43 0.000149659827002324
+44 0.000116300936497282
+45 0.000130040498333983
+46 0.00012024773604935
+47 0.000124873869935982
+48 0.000129706444568001
+49 0.000141463868203573
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0056552642654340134, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0056552642654340134, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..a5a2a0516f56f59de26eca7a84353275cedba647
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0056552642654340134, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0056552642654340134, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0056552642654340134, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..25ea02c6f1e77ed209588bee6be2a957e85ded3e
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0056552642654340134, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.53832724723781e-08, ymax=0.00022771076059332,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000118245996418409
+1 1.53408473124728e-05
+2 2.92194931716949e-06
+3 1.26299630665017e-06
+4 8.23443656372547e-07
+5 5.70576730751782e-07
+6 4.53855562909666e-07
+7 3.54803034952056e-07
+8 2.9006113777541e-07
+9 2.59844171068835e-07
+10 2.38653854012227e-07
+11 1.91196320997733e-07
+12 1.78810509510186e-07
+13 1.56175985921436e-07
+14 1.41458912139569e-07
+15 1.32273214603629e-07
+16 1.18564479123506e-07
+17 1.09063414299726e-07
+18 1.00580635375991e-07
+19 9.34245747430396e-08
+20 9.01876191505835e-08
+21 8.44462846316674e-08
+22 7.55203615199207e-08
+23 7.27935614008857e-08
+24 6.78798386388735e-08
+25 6.20120985672656e-08
+26 6.25480254257127e-08
+27 5.95194258323772e-08
+28 5.43060316715582e-08
+29 5.29457793163601e-08
+30 4.91297313942596e-08
+31 4.81696282861321e-08
+32 4.8052285706035e-08
+33 4.40220446762396e-08
+34 4.27902620003806e-08
+35 3.90172694153534e-08
+36 4.22719708126351e-08
+37 3.71844954827338e-08
+38 3.6577279871608e-08
+39 3.47778481568639e-08
+40 3.37942189787555e-08
+41 3.64237990879701e-08
+42 3.23036921656694e-08
+43 3.08419565442364e-08
+44 3.08094705303574e-08
+45 3.07433118962308e-08
+46 2.78816063570275e-08
+47 2.89403470077332e-08
+48 2.72716640381532e-08
+49 2.62900847758374e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000111357461719308
+1 1.37736851684167e-05
+2 2.36540290643461e-06
+3 1.11810174985294e-06
+4 7.952855298754e-07
+5 5.50017091427435e-07
+6 3.96554554527029e-07
+7 3.46700460340799e-07
+8 3.46734481126987e-07
+9 2.83909344034328e-07
+10 1.83340517878605e-07
+11 2.43012067357995e-07
+12 2.13403723137162e-07
+13 1.68670268863025e-07
+14 1.27623962953294e-07
+15 1.18386616065891e-07
+16 1.18312925678765e-07
+17 1.10889281756954e-07
+18 8.56923563219425e-08
+19 8.68588401203851e-08
+20 8.50967794008284e-08
+21 7.46161603615292e-08
+22 8.02121462584182e-08
+23 6.75276297101846e-08
+24 7.02441766975426e-08
+25 6.38779056316707e-08
+26 5.5142859167745e-08
+27 6.82759804249145e-08
+28 5.25376151472301e-08
+29 5.2748401202507e-08
+30 4.51371242604637e-08
+31 4.19910186622019e-08
+32 3.3924774101024e-08
+33 5.09027522355154e-08
+34 4.72789842831389e-08
+35 5.10312361257093e-08
+36 3.93125887399037e-08
+37 3.84432610189833e-08
+38 3.48817934536783e-08
+39 3.99075297252693e-08
+40 4.33843183600402e-08
+41 3.15367927328225e-08
+42 3.28083160638926e-08
+43 3.30197629239137e-08
+44 3.86026748344648e-08
+45 2.38017783260602e-08
+46 2.49947458286215e-08
+47 2.79998317864738e-08
+48 2.94124316013722e-08
+49 3.40185088987255e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000117718183901161
+1 0.000118946307338774
+2 0.000119067983177956
+3 0.000117878866149113
+4 0.000117639938252978
+5 0.000119796408398543
+6 0.000120175485790242
+7 0.000116906434413977
+8 0.000115856491902377
+9 0.000115104994620197
+10 0.000117070347187109
+11 0.000118419156933669
+12 0.000119503180030733
+13 0.000117166695417836
+14 0.000117403724289034
+15 0.000119466189062223
+16 0.000120060358312912
+17 0.000117028008389752
+18 0.000115044480480719
+19 0.000119611264381092
+20 0.000115845832624473
+21 0.000117928844701964
+22 0.000119956770504359
+23 0.000120090975542553
+24 0.000119012962386478
+25 0.000117141426017042
+26 0.000117639807285741
+27 0.000115370690764394
+28 0.000114339636638761
+29 0.000118399279017467
+30 0.00011716183507815
+31 0.000118374882731587
+32 0.00011854443437187
+33 0.000116129725938663
+34 0.000116610055556521
+35 0.000118228927021846
+36 0.000118516472866759
+37 0.000115367889520712
+38 0.000118961012049112
+39 0.000118701485916972
+40 0.000117156836495269
+41 0.000118163487059064
+42 0.00011960953270318
+43 0.000118999545520637
+44 0.000115434333565645
+45 0.000118439369543921
+46 0.000117143783427309
+47 0.0001193844655063
+48 0.000119323005492333
+49 0.000118401818326674
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000116396768135019
+1 0.000105081177025568
+2 0.00010640466643963
+3 0.000113886802864727
+4 0.000118954572826624
+5 9.82577475951985e-05
+6 0.000109365209937096
+7 0.000126206898130476
+8 0.000132218512590043
+9 0.000139486466650851
+10 0.000123717094538733
+11 0.000111321991425939
+12 0.000100959929113742
+13 0.000125321064842865
+14 0.000119933763926383
+15 0.000101764337159693
+16 0.000103419115475845
+17 0.000124574638903141
+18 0.000140389805892482
+19 0.000100494558864739
+20 0.000134259695187211
+21 0.000112476700451225
+22 9.73386850091629e-05
+23 9.50860703596845e-05
+24 0.00010797540016938
+25 0.000128337749629281
+26 0.000117756171675865
+27 0.000138766888994724
+28 0.00014717121666763
+29 0.000110061446321197
+30 0.000121076496725436
+31 0.000114760361611843
+32 0.000108634638309013
+33 0.000130859363707714
+34 0.000128449566545896
+35 0.000110704466351308
+36 0.000110735607449897
+37 0.000137710943818092
+38 0.000107732441392727
+39 0.000108369953522924
+40 0.000123771169455722
+41 0.000113077905552927
+42 9.9515171314124e-05
+43 0.000105036924651358
+44 0.000138566174427979
+45 0.000110525339550804
+46 0.000119425145385321
+47 0.000102285157481674
+48 9.94023866951466e-05
+49 0.00011047695443267
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005666081295206259, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005666081295206259, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..516f99edb1a070de2d1e3aa5e250d464a97fbaa2
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005666081295206259, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005666081295206259, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005666081295206259, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..e40d0e743864176ce8745ece245afcffb2ff7287
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005666081295206259, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.3150683385324e-08, ymax=0.000375097898769964,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000173741835169494
+1 1.99201131181326e-05
+2 3.68632936442737e-06
+3 1.80933795945748e-06
+4 1.17470915483864e-06
+5 8.84685789515061e-07
+6 6.6340408011456e-07
+7 5.3728035709355e-07
+8 4.55320531500547e-07
+9 3.85066272201584e-07
+10 3.34182061578758e-07
+11 2.90197988306318e-07
+12 2.56367655993017e-07
+13 2.38456067336301e-07
+14 2.0602566053185e-07
+15 1.88755166163901e-07
+16 1.73403051917376e-07
+17 1.60959572781394e-07
+18 1.4799825009959e-07
+19 1.38651799375111e-07
+20 1.25115931837172e-07
+21 1.23933858731107e-07
+22 1.20714346962814e-07
+23 1.02238757904161e-07
+24 9.78095613390906e-08
+25 9.42267277537212e-08
+26 8.96947724982056e-08
+27 8.4856090154517e-08
+28 8.23015895434764e-08
+29 7.73703803247372e-08
+30 7.45520694067636e-08
+31 7.07945488898076e-08
+32 6.46882654109504e-08
+33 6.39022061932337e-08
+34 6.11398007777098e-08
+35 5.75080179032739e-08
+36 5.44264189272781e-08
+37 5.3910490294129e-08
+38 5.43403864128322e-08
+39 4.948579501729e-08
+40 4.68752681115348e-08
+41 4.68013539034473e-08
+42 4.50196395718194e-08
+43 4.48325891966306e-08
+44 4.59521913853678e-08
+45 4.11143048495433e-08
+46 3.83509615176081e-08
+47 3.90730683363927e-08
+48 3.89636305442309e-08
+49 3.59673464345178e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000166231562616304
+1 2.40795179706765e-05
+2 3.12630550070025e-06
+3 2.24621044253581e-06
+4 1.34733465984027e-06
+5 7.65546076308965e-07
+6 6.90708247930161e-07
+7 6.02142449679377e-07
+8 5.59208160666458e-07
+9 3.83489322075548e-07
+10 2.99397328262785e-07
+11 2.73447511744962e-07
+12 2.3852101094235e-07
+13 2.28294524617922e-07
+14 2.01483004502734e-07
+15 1.84388269985902e-07
+16 1.9092753689165e-07
+17 1.44343388797097e-07
+18 1.54498479787435e-07
+19 1.34409717134076e-07
+20 1.56952893348716e-07
+21 1.30404529841144e-07
+22 9.54021999177712e-08
+23 9.71030189589328e-08
+24 9.0005642050528e-08
+25 8.69393872449109e-08
+26 6.93802846285507e-08
+27 8.40640410615379e-08
+28 8.12711036246583e-08
+29 7.75933486352187e-08
+30 6.31708232390338e-08
+31 6.81449350281582e-08
+32 6.45032613988406e-08
+33 1.15255105015422e-07
+34 6.21920008825327e-08
+35 7.02926783446856e-08
+36 7.11782277562634e-08
+37 6.31368735071192e-08
+38 4.91648748379703e-08
+39 5.90997437655005e-08
+40 6.09575678822694e-08
+41 4.33607958427729e-08
+42 4.49515589195926e-08
+43 3.91352585893401e-08
+44 4.07820799352976e-08
+45 4.47958647953328e-08
+46 4.17457322043902e-08
+47 4.19223731285001e-08
+48 3.81167488683332e-08
+49 5.32398019004177e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000171037347172387
+1 0.000170632381923497
+2 0.000174442597199231
+3 0.000172730273334309
+4 0.000173540145624429
+5 0.000173688429640606
+6 0.000172826141351834
+7 0.000171491468790919
+8 0.000167683407198638
+9 0.000173824926605448
+10 0.000171361767570488
+11 0.00016954708553385
+12 0.000172781830769964
+13 0.000173595428350382
+14 0.000175872162799351
+15 0.00017417520575691
+16 0.000167953461641446
+17 0.000173122723936103
+18 0.000171793872141279
+19 0.000174557877471671
+20 0.000174874978256412
+21 0.000174359025550075
+22 0.00017525689327158
+23 0.000170188635820523
+24 0.000165486766491085
+25 0.000172805783222429
+26 0.000172678090166301
+27 0.000176633853698149
+28 0.000172185682458803
+29 0.00017033435869962
+30 0.000176521978573874
+31 0.000167884645634331
+32 0.000173753083799966
+33 0.000173577253008261
+34 0.000169419581652619
+35 0.000175613691681065
+36 0.000175781882717274
+37 0.000176652218215168
+38 0.000177062800503336
+39 0.000172324158484116
+40 0.000172533953445964
+41 0.000173013831954449
+42 0.00017630698857829
+43 0.000172848522197455
+44 0.000169881910551339
+45 0.000175206660060212
+46 0.000170606290339492
+47 0.000174284155946225
+48 0.000165929552167654
+49 0.000176180154085159
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000190781007404439
+1 0.000195893095224164
+2 0.000159608942340128
+3 0.000173379143234342
+4 0.000166270634508692
+5 0.000167582518770359
+6 0.000173894019098952
+7 0.000183414245839231
+8 0.000219312874833122
+9 0.000165943594765849
+10 0.000186007921001874
+11 0.000207222576136701
+12 0.000174934670212679
+13 0.000165653982548974
+14 0.000145940415677615
+15 0.000162235854077153
+16 0.000218928980757482
+17 0.000171918378327973
+18 0.000184342614375055
+19 0.000158749433467165
+20 0.000154702604049817
+21 0.00015890494978521
+22 0.000150705353007652
+23 0.000196230757865123
+24 0.000241434900090098
+25 0.000182750562089495
+26 0.000173436434124596
+27 0.000138792383950204
+28 0.00017931820184458
+29 0.00019544261158444
+30 0.000142508928547613
+31 0.000217903128941543
+32 0.000164588127518073
+33 0.000168734550243244
+34 0.000203792194952257
+35 0.000148913386510685
+36 0.000144444216857664
+37 0.000139619849505834
+38 0.00013740845315624
+39 0.000178175585460849
+40 0.000175575580215082
+41 0.00017344910884276
+42 0.000144979916512966
+43 0.000173625478055328
+44 0.000200874332222156
+45 0.000151285596075468
+46 0.000194967797142453
+47 0.000161336414748803
+48 0.000234113234910183
+49 0.000143894780194387
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005709661761291398, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005709661761291398, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..18b03d8914dce04a00dee443dcfe7fd8bea69c28
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005709661761291398, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005709661761291398, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005709661761291398, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..f247eda01ac3a0a423e9df126cdf6001c15da53d
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005709661761291398, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=7.18158595635527e-08, ymax=0.000328334864015695,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000145153215271421
+1 1.46812271850649e-05
+2 5.14910288984538e-06
+3 1.14679414764396e-05
+4 5.19054356118431e-06
+5 3.33601042257214e-06
+6 2.26270526582084e-06
+7 1.65748258496023e-06
+8 1.30702608203137e-06
+9 1.10742109882267e-06
+10 9.77125523604627e-07
+11 8.41336202483944e-07
+12 7.23605751318246e-07
+13 6.45789896225324e-07
+14 7.19147237759898e-07
+15 5.43089299753774e-07
+16 5.0043865940097e-07
+17 4.56590129260803e-07
+18 4.30075544954889e-07
+19 4.08596520173887e-07
+20 3.75406187913541e-07
+21 3.4501681511756e-07
+22 3.24049494793144e-07
+23 3.05525077237689e-07
+24 2.97364437074066e-07
+25 2.70040544592121e-07
+26 2.58697980370926e-07
+27 2.43312115344452e-07
+28 2.43034122604513e-07
+29 2.23319602810079e-07
+30 2.21581572645846e-07
+31 2.09799296158053e-07
+32 2.02189042397549e-07
+33 1.91850915598479e-07
+34 1.84379274514868e-07
+35 1.76984357835863e-07
+36 1.75287539150304e-07
+37 1.69371162428433e-07
+38 1.58091935986704e-07
+39 1.56349386770671e-07
+40 1.51422526073475e-07
+41 1.42193371743815e-07
+42 1.42251366241908e-07
+43 1.41376972351281e-07
+44 1.34782382588128e-07
+45 1.53423897586435e-07
+46 1.27962564988593e-07
+47 1.23055869494237e-07
+48 1.215473304228e-07
+49 1.18979279761788e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000137253155116923
+1 1.27408011394436e-05
+2 5.19781815455644e-06
+3 9.3929538707016e-06
+4 4.84859083371703e-06
+5 3.21791640089941e-06
+6 1.89955869700498e-06
+7 1.87121588623995e-06
+8 1.51017468397185e-06
+9 1.23635948057199e-06
+10 8.1661892181728e-07
+11 7.32451439944271e-07
+12 7.89816510859964e-07
+13 7.51324648717855e-07
+14 6.80566643040947e-07
+15 5.08901337070711e-07
+16 4.79232426187082e-07
+17 4.74349434398391e-07
+18 3.96409319591839e-07
+19 3.38938576760484e-07
+20 3.84218822091498e-07
+21 3.79322273147409e-07
+22 3.6111842405262e-07
+23 3.19634040124583e-07
+24 2.74227062391219e-07
+25 3.28453836573317e-07
+26 2.81871933793809e-07
+27 2.96030776780754e-07
+28 2.06566241445216e-07
+29 3.37265703365119e-07
+30 1.84682079407139e-07
+31 1.9619747604338e-07
+32 1.69988695120082e-07
+33 1.88999123906797e-07
+34 1.83598771741345e-07
+35 1.71643051771753e-07
+36 1.30926792962782e-07
+37 1.42059846552911e-07
+38 1.71817561067655e-07
+39 1.40572055329358e-07
+40 1.34914103000483e-07
+41 1.63727705171368e-07
+42 1.36290623231616e-07
+43 1.15837202940838e-07
+44 1.22041498684666e-07
+45 1.29265075088369e-07
+46 1.14344210544459e-07
+47 1.26354677831841e-07
+48 1.26568849623254e-07
+49 1.0533880612229e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00014275977446232
+1 0.000148341103340499
+2 0.000147875209222548
+3 0.000141468830406666
+4 0.000143707191455178
+5 0.000143589320941828
+6 0.000145256519317627
+7 0.000144126461236738
+8 0.000144240111694671
+9 0.000144076038850471
+10 0.000143459270475432
+11 0.000146518184919842
+12 0.000146055943332613
+13 0.00014151849609334
+14 0.000145305428304709
+15 0.00014343427028507
+16 0.000137501527206041
+17 0.00014542140706908
+18 0.000141979267937131
+19 0.000139299532747827
+20 0.000146173537359573
+21 0.000142642456921749
+22 0.00014534244837705
+23 0.000145148893352598
+24 0.000145444151712582
+25 0.000145584155688994
+26 0.000145666504977271
+27 0.000145011959830299
+28 0.00014398772327695
+29 0.000143253448186442
+30 0.000139082476380281
+31 0.000145656042150222
+32 0.000142882330692373
+33 0.000147874990943819
+34 0.000146829333971255
+35 0.000144928766530938
+36 0.000142182616400532
+37 0.000143359196954407
+38 0.000144644160172902
+39 0.000145987462019548
+40 0.000144427773193456
+41 0.000143962621223181
+42 0.000144770965562202
+43 0.000139452225994319
+44 0.000143542405567132
+45 0.000148473016452044
+46 0.000135349386255257
+47 0.000146889869938605
+48 0.000146591919474304
+49 0.000146146034239791
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000155821573571302
+1 0.000110240980575327
+2 0.000110435335955117
+3 0.000168988437508233
+4 0.000146912294439971
+5 0.00014577223919332
+6 0.00013450147525873
+7 0.00014718240709044
+8 0.000143202763865702
+9 0.000146384700201452
+10 0.000149754574522376
+11 0.000122085402836092
+12 0.000128316445625387
+13 0.000170170518686064
+14 0.000130972708575428
+15 0.000150496911373921
+16 0.000203280476853251
+17 0.000131130203953944
+18 0.000161700794706121
+19 0.00018580979667604
+20 0.000120982833323069
+21 0.000154206514707766
+22 0.000133530746097676
+23 0.000133854540763423
+24 0.000132602945086546
+25 0.000129839740111493
+26 0.000130323503981344
+27 0.000136335132992826
+28 0.000146175749250688
+29 0.00015260829241015
+30 0.000183076350367628
+31 0.000130780535982922
+32 0.000154335968545638
+33 0.000109200824226718
+34 0.000120579745271243
+35 0.00013875107106287
+36 0.000162740965606645
+37 0.000149732528370805
+38 0.000139982279506512
+39 0.000126862621982582
+40 0.000144288103911094
+41 0.000144828809425235
+42 0.000136910632136278
+43 0.000183501091669314
+44 0.000150513704284094
+45 0.000104368198662996
+46 0.000223845810978673
+47 0.000118556505185552
+48 0.00012182341015432
+49 0.000128592117107473
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005764998237901432, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005764998237901432, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..31a8e4b71be23a3b40dd92c95bf10bd05d43020b
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005764998237901432, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005764998237901432, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005764998237901432, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..257f5bccb7bc37861068ab13bb4ee64a2c5e1381
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005764998237901432, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.29321127763804e-08, ymax=0.000232633728898655,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000122302823001519
+1 1.39901339935022e-05
+2 4.03445210395148e-06
+3 2.01204943550692e-06
+4 1.19613434890198e-06
+5 8.7215141775232e-07
+6 6.55379608360818e-07
+7 5.46599721928942e-07
+8 4.6807829789941e-07
+9 3.79643665837648e-07
+10 3.48585444953642e-07
+11 3.08889099187581e-07
+12 2.62863068201113e-07
+13 2.38443334410476e-07
+14 2.17474422470332e-07
+15 2.02540832106024e-07
+16 1.8219111552753e-07
+17 1.71942488691457e-07
+18 1.50363675288645e-07
+19 1.42385275125889e-07
+20 1.32969503852109e-07
+21 1.44823161463137e-07
+22 1.15345898166197e-07
+23 1.10687601306836e-07
+24 1.03125543660099e-07
+25 9.89948603091761e-08
+26 9.01382648521576e-08
+27 9.07005315298193e-08
+28 8.22344432549471e-08
+29 8.23401720140282e-08
+30 7.54879323494606e-08
+31 7.38609813311086e-08
+32 6.72207747243192e-08
+33 6.90046206841544e-08
+34 6.41020392322389e-08
+35 6.12884960560223e-08
+36 6.01213940853995e-08
+37 5.89952797724891e-08
+38 5.67433460219036e-08
+39 5.32161621435989e-08
+40 5.10381461538145e-08
+41 4.90271325759295e-08
+42 4.91468306051956e-08
+43 4.98436207863051e-08
+44 4.46805898945968e-08
+45 4.43091536794782e-08
+46 4.34808065108427e-08
+47 4.27792379298353e-08
+48 3.85768537114473e-08
+49 3.87749921060276e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000149715880979784
+1 1.34105675897445e-05
+2 4.53809661848936e-06
+3 1.47205605571799e-06
+4 1.1295843478365e-06
+5 8.81938490238099e-07
+6 7.04434569342993e-07
+7 5.55665906176728e-07
+8 4.28486004011575e-07
+9 5.13295447035489e-07
+10 3.49512504271843e-07
+11 3.01732143270783e-07
+12 2.89346559156911e-07
+13 2.43199764327073e-07
+14 2.29809103302614e-07
+15 1.92109794738826e-07
+16 1.69163243413095e-07
+17 1.70065547422382e-07
+18 1.72955438415556e-07
+19 1.47000136507813e-07
+20 1.18013701921882e-07
+21 1.07982764063763e-07
+22 1.22643200484163e-07
+23 1.0571744724075e-07
+24 1.18214209976486e-07
+25 9.73449019170403e-08
+26 1.01635329485816e-07
+27 7.20763395634094e-08
+28 8.31729138894843e-08
+29 8.09934732615147e-08
+30 7.92428025420122e-08
+31 6.61532126855491e-08
+32 8.23592003484919e-08
+33 6.89855355062718e-08
+34 7.07640523955888e-08
+35 6.36684163168866e-08
+36 6.20692688357849e-08
+37 5.52844383605589e-08
+38 5.9190835344225e-08
+39 5.00590324747918e-08
+40 4.68095144867675e-08
+41 5.10756557048353e-08
+42 4.38902851840339e-08
+43 4.45422436712306e-08
+44 5.08951885080933e-08
+45 5.1574012616129e-08
+46 3.81920486347553e-08
+47 3.86183209855062e-08
+48 4.57843114531897e-08
+49 3.48775017755543e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000125965641927905
+1 0.000122895842650905
+2 0.000124975544167683
+3 0.000128084080643021
+4 0.00012190020061098
+5 0.000124590573250316
+6 0.00012672581942752
+7 0.000122884230222553
+8 0.00012670828436967
+9 0.000124858255730942
+10 0.000125816208310425
+11 0.0001248176995432
+12 0.0001244595478056
+13 0.000123083897051401
+14 0.000125964157632552
+15 0.000124071622849442
+16 0.000122732308227569
+17 0.000125291349831969
+18 0.000123865145724267
+19 0.000124678073916584
+20 0.00012417888501659
+21 0.000126795974210836
+22 0.000125391728943214
+23 0.000124613114167005
+24 0.000123664111015387
+25 0.000125976002891548
+26 0.000124871119624004
+27 0.000123731573694386
+28 0.000124858896015212
+29 0.000123935591545887
+30 0.000126038052258082
+31 0.000125380771351047
+32 0.000123392281238921
+33 0.00012499101285357
+34 0.000124552680063061
+35 0.000127837338368408
+36 0.00012458830315154
+37 0.000124580968986265
+38 0.000125872174976394
+39 0.000125546182971448
+40 0.000126183425891213
+41 0.000125967781059444
+42 0.000125536171253771
+43 0.000124209866044112
+44 0.000124606987810694
+45 0.000124523270642385
+46 0.000126716171507724
+47 0.000121879042126238
+48 0.000125463149743155
+49 0.000126248138258234
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000114904869406018
+1 0.000142880817293189
+2 0.000125895327073522
+3 9.69445027294569e-05
+4 0.000148034407175146
+5 0.000127940511447378
+6 0.00011078268289566
+7 0.000152957712998614
+8 0.000109123451693449
+9 0.000130166430608369
+10 0.00011714432912413
+11 0.00012449172209017
+12 0.000129662672406994
+13 0.000142603676067665
+14 0.000117390125524253
+15 0.000133086607092991
+16 0.000146491496707313
+17 0.00012130996765336
+18 0.000136789938551374
+19 0.000130607382743619
+20 0.000131737455376424
+21 0.000109477776277345
+22 0.000120226482977159
+23 0.000127856896142475
+24 0.000138809671625495
+25 0.000118140014819801
+26 0.000124729733215645
+27 0.000137609415105544
+28 0.000125179183669388
+29 0.000135638169012964
+30 0.000116018250992056
+31 0.000122399636893533
+32 0.000139402342028916
+33 0.000124538128147833
+34 0.000133211782667786
+35 0.000100502278655767
+36 0.000128460975247435
+37 0.000127690145745873
+38 0.000117399591545109
+39 0.000119858770631254
+40 0.000115659488074016
+41 0.000116356372018345
+42 0.000119610449473839
+43 0.000132291854242794
+44 0.000127888270071708
+45 0.000129354099044576
+46 0.000112294008431491
+47 0.000151333093526773
+48 0.000120995195175055
+49 0.000113775160571095
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005781856219279877, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005781856219279877, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..2082b3a284d39bda118ea62bb7fb81caa2de27a6
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005781856219279877, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005781856219279877, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005781856219279877, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..adc772b341450a3cf0575bff405be3bf8e3d8c8b
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005781856219279877, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.4180925949014e-08, ymax=0.000287189787524481,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000145489873830229
+1 1.76654357346706e-05
+2 3.68040355169796e-06
+3 1.81142854671634e-06
+4 1.20340894227411e-06
+5 8.53543497214559e-07
+6 6.66828043449641e-07
+7 5.47809747786232e-07
+8 4.53247452014693e-07
+9 4.07848318673132e-07
+10 3.41858935826167e-07
+11 3.02397495488549e-07
+12 2.72846108373415e-07
+13 2.41959384084112e-07
+14 2.28725653528272e-07
+15 2.02730575438181e-07
+16 1.88657949706794e-07
+17 1.76635111870382e-07
+18 1.62356101895966e-07
+19 1.41724541435906e-07
+20 1.34030159415488e-07
+21 1.32203439306977e-07
+22 1.17628296436578e-07
+23 1.10737978786801e-07
+24 1.07959024830961e-07
+25 1.02799077694726e-07
+26 9.51652410208226e-08
+27 9.04729091644185e-08
+28 8.96145024853467e-08
+29 8.1029661203047e-08
+30 8.28982322786942e-08
+31 7.84235041351167e-08
+32 7.51882609506538e-08
+33 6.8833713839922e-08
+34 6.97934723348226e-08
+35 6.76261890930618e-08
+36 6.1682506213856e-08
+37 6.00038845277595e-08
+38 6.23907183694428e-08
+39 5.77136347601481e-08
+40 5.58985071563711e-08
+41 5.34864135204316e-08
+42 4.94608585199785e-08
+43 4.92459371059795e-08
+44 4.80631783261742e-08
+45 4.73281112078894e-08
+46 4.5862275754871e-08
+47 4.61661429085325e-08
+48 4.2412487744059e-08
+49 4.35393125997052e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000128594896523282
+1 1.54148674482713e-05
+2 3.66502172255423e-06
+3 1.66022709890967e-06
+4 1.32751472392556e-06
+5 9.93810544969165e-07
+6 6.39722770756634e-07
+7 5.41712097401614e-07
+8 4.65220381329345e-07
+9 3.09051131353044e-07
+10 2.85162968793884e-07
+11 3.13182169975335e-07
+12 2.95907938152595e-07
+13 2.35376703017209e-07
+14 1.66694277936585e-07
+15 2.02975797947147e-07
+16 1.60694980877452e-07
+17 1.758732679491e-07
+18 1.40833321893297e-07
+19 1.82252662739302e-07
+20 1.6772767708062e-07
+21 1.05491587021334e-07
+22 1.22556770065785e-07
+23 1.03823346364607e-07
+24 1.06340316108344e-07
+25 9.48770022546341e-08
+26 1.01343765379625e-07
+27 8.87882194433587e-08
+28 1.01438480726301e-07
+29 9.54901935301677e-08
+30 6.50330491680506e-08
+31 6.38438208966363e-08
+32 6.07429271326509e-08
+33 8.7957353400725e-08
+34 5.88299364778777e-08
+35 6.25435561119048e-08
+36 6.39928003920431e-08
+37 5.08660100706493e-08
+38 5.83548676047485e-08
+39 6.81339713537454e-08
+40 6.04890146860271e-08
+41 5.12582580824983e-08
+42 6.26956762062036e-08
+43 5.10584996504804e-08
+44 4.4673154064867e-08
+45 4.7254815171982e-08
+46 3.96335160246508e-08
+47 3.70413140160508e-08
+48 5.15553004731828e-08
+49 4.27970192617977e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000143804005347192
+1 0.000141484619234689
+2 0.000145620084367692
+3 0.000143888712045737
+4 0.000139606854645535
+5 0.000141778524266556
+6 0.000143267068779096
+7 0.000139887022669427
+8 0.000138284085551277
+9 0.000145220386912115
+10 0.000140240706969053
+11 0.000139987096190453
+12 0.000143014491186477
+13 0.000139147567097098
+14 0.000143207056680694
+15 0.000144493751577102
+16 0.000142886987305246
+17 0.000143179451697506
+18 0.000143711396958679
+19 0.000143332770676352
+20 0.000145305632031523
+21 0.000143269571708515
+22 0.000147068334626965
+23 0.000146948732435703
+24 0.000140566975460388
+25 0.000141970696859062
+26 0.000143039564136416
+27 0.000140695075970143
+28 0.000144759178510867
+29 0.00013768466305919
+30 0.000145233512739651
+31 0.000147716229548678
+32 0.000143494602525607
+33 0.000141857584821992
+34 0.000141839787829667
+35 0.000139800948090851
+36 0.000142032833537087
+37 0.00014194285904523
+38 0.000142084754770622
+39 0.000140494259539992
+40 0.000144217017805204
+41 0.000145197976962663
+42 0.000140145551995374
+43 0.000142249875352718
+44 0.000144438163260929
+45 0.000141053053084761
+46 0.000141989818075672
+47 0.000141717027872801
+48 0.000143778510391712
+49 0.000142428383696824
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000132229601149447
+1 0.000153446322656237
+2 0.00011736957821995
+3 0.000131171851535328
+4 0.000172795058460906
+5 0.000154112305608578
+6 0.000138462622999214
+7 0.00016872223932296
+8 0.000182992327609099
+9 0.000120621545647737
+10 0.000166116980835795
+11 0.000169127073604614
+12 0.000140628457302228
+13 0.000176545669091865
+14 0.000138503950438462
+15 0.000127054256154224
+16 0.000140628544613719
+17 0.000139140101964585
+18 0.00013493571896106
+19 0.000137968148919754
+20 0.000121533885248937
+21 0.000138244839035906
+22 0.00010411914990982
+23 0.000107751191535499
+24 0.000163360600708984
+25 0.000148923121741973
+26 0.00013938921620138
+27 0.00015961832832545
+28 0.000124148020404391
+29 0.00018748025468085
+30 0.000119730611913837
+31 0.00010057860345114
+32 0.00013779524306301
+33 0.000151392858242616
+34 0.000149406376294792
+35 0.000168606668012217
+36 0.000148644583532587
+37 0.00014986858877819
+38 0.000148167368024588
+39 0.000162789670866914
+40 0.000127768056700006
+41 0.000122002384159714
+42 0.000166945086675696
+43 0.000148246210301295
+44 0.000126129292766564
+45 0.000159322211402468
+46 0.000148258986882865
+47 0.000153037399286404
+48 0.00013357748684939
+49 0.000145695405080914
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005788294737124114, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005788294737124114, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..07fbec0bcd55eab1c646449709ec1103e02e178a
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005788294737124114, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005788294737124114, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005788294737124114, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..1a138a9e8dba7678eda08de71688619e970c66f7
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005788294737124114, Learning_Process.tex	
@@ -0,0 +1,263 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=4.3483039664365e-07, ymax=0.000263284039450901,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000125102946185507
+1 1.34746887852089e-05
+2 9.74039357970469e-06
+3 9.41423604672309e-06
+4 0.000196772874915041
+5 2.42656406044262e-05
+6 1.10816499727662e-05
+7 8.91454055818031e-06
+8 7.38851258574869e-06
+9 5.96822246734519e-06
+10 5.03271621710155e-06
+11 4.14948499383172e-06
+12 3.72400722881139e-06
+13 3.47563127434114e-06
+14 3.05120624943811e-06
+15 2.88262071990175e-06
+16 2.62589060184837e-06
+17 2.42881969825248e-06
+18 2.22150038098334e-06
+19 2.07563789444976e-06
+20 1.95091479326948e-06
+21 1.79084679530206e-06
+22 1.69698137142404e-06
+23 1.59758076279104e-06
+24 1.5240143511619e-06
+25 1.43465626933903e-06
+26 1.39425787892833e-06
+27 1.30168280065845e-06
+28 1.25284077512333e-06
+29 1.18926652703522e-06
+30 1.16833450647391e-06
+31 1.11247641143564e-06
+32 1.06177424186171e-06
+33 1.01139119124127e-06
+34 9.74084400695574e-07
+35 9.58872988121584e-07
+36 9.08959236767259e-07
+37 8.95345749540866e-07
+38 8.65719869125314e-07
+39 8.184372290998e-07
+40 8.14896850442892e-07
+41 7.79990045884915e-07
+42 7.57444979626598e-07
+43 7.28011343653634e-07
+44 6.87067313265288e-07
+45 7.03706007243454e-07
+46 6.72135513468675e-07
+47 6.37315338281041e-07
+48 6.48040554551699e-07
+49 6.30818419722345e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000165402583661489
+1 1.12773805085453e-05
+2 1.4007865502208e-05
+3 8.8893984866445e-06
+4 0.000177450172486715
+5 1.82270196091849e-05
+6 1.26523373182863e-05
+7 7.24936853657709e-06
+8 6.69868904878967e-06
+9 5.59731824978371e-06
+10 4.79934897157364e-06
+11 5.80423511564732e-06
+12 4.85840519104386e-06
+13 2.98035206469649e-06
+14 3.37504093295138e-06
+15 2.36077676163404e-06
+16 2.03164904633013e-06
+17 1.8110516748493e-06
+18 2.019849489443e-06
+19 1.77932747646992e-06
+20 1.59191949933302e-06
+21 1.75060745277733e-06
+22 1.60456875164527e-06
+23 1.6089883274617e-06
+24 1.48650246956095e-06
+25 1.53028747718054e-06
+26 1.09578741103178e-06
+27 1.38119082748744e-06
+28 1.17302636226668e-06
+29 1.20057472940971e-06
+30 9.36698313580564e-07
+31 9.57760562414478e-07
+32 9.33969204197638e-07
+33 1.01279158570833e-06
+34 9.69190637079009e-07
+35 8.84654127730755e-07
+36 8.92175478384161e-07
+37 7.48792160720768e-07
+38 6.82818779296213e-07
+39 8.41666974338295e-07
+40 6.29503745130933e-07
+41 7.05522040789219e-07
+42 6.78086053085281e-07
+43 7.4662648330559e-07
+44 9.48124409205775e-07
+45 6.53055792554369e-07
+46 6.68760833377746e-07
+47 8.35326147807791e-07
+48 5.98212579916435e-07
+49 5.8180734185953e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000129604610265233
+1 0.000129387190099806
+2 0.000129091218695976
+3 0.000130349930259399
+4 0.000128861560369842
+5 0.000129633321193978
+6 0.000129649517475627
+7 0.000129596563056111
+8 0.000129174877656624
+9 0.000132466055219993
+10 0.000129585081594996
+11 0.000132116285385564
+12 0.000129698499222286
+13 0.00012844281445723
+14 0.000128265572129749
+15 0.000131608045194298
+16 0.000129823267343454
+17 0.000129215506603941
+18 0.000128243496874347
+19 0.000132219647639431
+20 0.000128658735775389
+21 0.000128001396660693
+22 0.000130773783894256
+23 0.000129955224110745
+24 0.000128610510728322
+25 0.000127363804494962
+26 0.000130948552396148
+27 0.000129629741422832
+28 0.000128537765704095
+29 0.000128396044601686
+30 0.000131324646645226
+31 0.000129078005556948
+32 0.000129474283312447
+33 0.000126560276839882
+34 0.000130957079818472
+35 0.00012945408525411
+36 0.000128422660054639
+37 0.00013009030953981
+38 0.000128667219541967
+39 0.000131690801936202
+40 0.000127202190924436
+41 0.000129852662212215
+42 0.000125448379549198
+43 0.000127175881061703
+44 0.000128909436170943
+45 0.000130978820379823
+46 0.000125842139823362
+47 0.000130287473439239
+48 0.000130109197925776
+49 0.000128781190142035
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000123670935863629
+1 0.000126525439554825
+2 0.000129270993056707
+3 0.00011913637717953
+4 0.000132235698401928
+5 0.000127038001664914
+6 0.000127130566397682
+7 0.000127167397295125
+8 0.000125026766909286
+9 9.84807047643699e-05
+10 0.000121292789117433
+11 0.000102205529401544
+12 0.000123167134006508
+13 0.000134845045977272
+14 0.000137208757223561
+15 0.000104726190329529
+16 0.000124396246974356
+17 0.000127226783661172
+18 0.000140291740535758
+19 9.9998687801417e-05
+20 0.000132677319925278
+21 0.000137308292323723
+22 0.000113617003080435
+23 0.00012139566388214
+24 0.000133910958538763
+25 0.00014501744590234
+26 0.00011443579569459
+27 0.000121594057418406
+28 0.000134090631036088
+29 0.000134576141135767
+30 0.000108844949863851
+31 0.000128054045489989
+32 0.00012503206380643
+33 0.000147578582982533
+34 0.000112790148705244
+35 0.000124821497593075
+36 0.000134980131406337
+37 0.000120717195386533
+38 0.000132949979160912
+39 0.000106227118521929
+40 0.000146377205965109
+41 0.000121784883958753
+42 0.000161821895744652
+43 0.00014454017218668
+44 0.000130944463307969
+45 0.000112524889118504
+46 0.000156373323989101
+47 0.000117129406135064
+48 0.000122102093882859
+49 0.000131406617583707
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005816439733482227, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005816439733482227, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..4c577e689e3b84274335d0b827d3fb2be219d193
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005816439733482227, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005816439733482227, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005816439733482227, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..e39b60b35a09c5c0870fc5dec4b939eb62a41ded
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005816439733482227, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=5.17635274114014e-08, ymax=0.000250522615391511,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000133359644678421
+1 1.71242882061051e-05
+2 1.23692034321721e-05
+3 6.98863505022018e-06
+4 3.36145308210689e-06
+5 2.21019058699312e-06
+6 1.48106164488127e-06
+7 1.14210456558794e-06
+8 9.33153899040917e-07
+9 7.84385463248327e-07
+10 6.62434615605889e-07
+11 6.07181220857456e-07
+12 5.3557732826448e-07
+13 4.64551476397901e-07
+14 4.23160088303121e-07
+15 3.74791284230014e-07
+16 3.44212196523586e-07
+17 3.16045827730704e-07
+18 3.0092397196313e-07
+19 2.65266720589352e-07
+20 2.56495155781522e-07
+21 2.3520928493781e-07
+22 2.23046797032111e-07
+23 2.09616672464108e-07
+24 1.97705361415501e-07
+25 1.82706074269845e-07
+26 1.76331468537683e-07
+27 1.67921641036628e-07
+28 1.6384738898978e-07
+29 1.50615562688472e-07
+30 1.42881802389638e-07
+31 1.38482889155966e-07
+32 1.34042835497894e-07
+33 1.28434749058215e-07
+34 1.25640710280095e-07
+35 1.16786772252908e-07
+36 1.17516719910782e-07
+37 1.08341531301903e-07
+38 1.06801806509793e-07
+39 1.0480119527756e-07
+40 1.09807267278939e-07
+41 1.00315418194441e-07
+42 9.40562543405576e-08
+43 9.10034358980738e-08
+44 8.99762326866949e-08
+45 8.82240414057378e-08
+46 8.15994809499898e-08
+47 8.08452966793993e-08
+48 7.87365763699199e-08
+49 7.61229870249736e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000132078639580868
+1 1.11918780021369e-05
+2 3.22550272358058e-06
+3 8.61913849803386e-06
+4 3.50971140505862e-06
+5 1.7912088878802e-06
+6 1.69402630945115e-06
+7 1.25905989989405e-06
+8 1.01600255675294e-06
+9 7.66110872518766e-07
+10 7.77992340772471e-07
+11 4.58357789057118e-07
+12 4.56744515986429e-07
+13 4.5601993292621e-07
+14 4.00432327296585e-07
+15 4.26434155542665e-07
+16 3.4544245863799e-07
+17 3.02941458585337e-07
+18 2.77036320994739e-07
+19 3.16775867759134e-07
+20 2.31342852430316e-07
+21 2.28445387051579e-07
+22 2.55225899081779e-07
+23 2.02106804181312e-07
+24 1.95897158050684e-07
+25 2.22009177264226e-07
+26 2.07731687851265e-07
+27 1.92434512769069e-07
+28 1.70446682545844e-07
+29 1.62608458253999e-07
+30 1.70668926102735e-07
+31 1.49816060002195e-07
+32 1.40790135105817e-07
+33 1.37823676027438e-07
+34 1.11600819252544e-07
+35 1.40704273121628e-07
+36 9.98329383605778e-08
+37 1.26930785881996e-07
+38 1.01482285685961e-07
+39 9.50394181131742e-08
+40 9.8995990072126e-08
+41 8.25544717031335e-08
+42 8.66056026893602e-08
+43 7.63591998520496e-08
+44 8.78173693763529e-08
+45 7.93376315755268e-08
+46 9.56853369871169e-08
+47 7.84867992820182e-08
+48 8.174904309044e-08
+49 8.49677235237323e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000133704204927199
+1 0.000133262263261713
+2 0.000130810178234242
+3 0.000133676949189976
+4 0.000134001413243823
+5 0.000135920694447123
+6 0.000133977460791357
+7 0.00013219250831753
+8 0.000135211113956757
+9 0.000131554348627105
+10 0.000137518305564299
+11 0.000134248315589502
+12 0.00013036526797805
+13 0.00013057044998277
+14 0.00013298518024385
+15 0.000133957859361544
+16 0.00013591289462056
+17 0.000130153144709766
+18 0.000132794477394782
+19 0.000131223117932677
+20 0.000133400419144891
+21 0.000135107286041602
+22 0.000134236863232218
+23 0.000132392335217446
+24 0.000134894013172016
+25 0.000133179608383216
+26 0.00013434850552585
+27 0.000131745851831511
+28 0.000135350681375712
+29 0.000129062915220857
+30 0.000133726134663448
+31 0.000133928158902563
+32 0.000131856213556603
+33 0.000134365909616463
+34 0.000130947781144641
+35 0.000133580586407334
+36 0.000133728492073715
+37 0.000133763707708567
+38 0.000132209272123873
+39 0.000133856534375809
+40 0.000134050205815583
+41 0.000135011476231739
+42 0.00013542607484851
+43 0.000132025001221336
+44 0.00013369822409004
+45 0.000133563356939703
+46 0.000134859757963568
+47 0.000134784189867787
+48 0.000132562316139229
+49 0.000133056659251451
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000127946681459434
+1 0.000132476387079805
+2 0.000155059184180573
+3 0.000135104084620252
+4 0.000124995087389834
+5 0.000108015432488173
+6 0.000127453778986819
+7 0.000142657663673162
+8 0.00011320278281346
+9 0.000146904931170866
+10 9.05772467376664e-05
+11 0.00012219614291098
+12 0.000159680945216678
+13 0.00015675048052799
+14 0.00013505904644262
+15 0.000126546015962958
+16 0.000109755899757147
+17 0.000158880357048474
+18 0.000136649337946437
+19 0.000149512139614671
+20 0.000132536122691818
+21 0.000115680646558758
+22 0.000123908612295054
+23 0.000141664044349454
+24 0.000116894327220507
+25 0.000130580112454481
+26 0.000120973207231145
+27 0.000144468969665468
+28 0.000113886220788117
+29 0.000170355036971159
+30 0.000127470455481671
+31 0.000128245490486734
+32 0.000144376695971005
+33 0.000122406243463047
+34 0.000153206448885612
+35 0.000127960462123156
+36 0.000130330940010026
+37 0.000126865517813712
+38 0.000142483608215116
+39 0.000128024563309737
+40 0.000125950755318627
+41 0.000116524657642003
+42 0.000113014968519565
+43 0.000143983939778991
+44 0.000128233077703044
+45 0.000130447864648886
+46 0.000117473588034045
+47 0.00012048286589561
+48 0.000137972630909644
+49 0.000132515691802837
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0058593865555780725, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0058593865555780725, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..2c0fedca8dd8515fa75bb5f6125d4ebbe86343cf
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0058593865555780725, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0058593865555780725, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0058593865555780725, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..79f2ef29d0c6eb3256657d1db09863caccc93294
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0058593865555780725, Learning_Process.tex	
@@ -0,0 +1,256 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.80586710809402e-06, ymax=0.00560152956315383,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00013405091885943
+1 1.59941591846291e-05
+2 1.66006684594322e-05
+3 0.00132890627719462
+4 7.87303870311007e-05
+5 8.76163903740235e-05
+6 0.000244083174038678
+7 0.000158348251716234
+8 0.00050708104390651
+9 8.7472093582619e-05
+10 6.40164071228355e-05
+11 5.43050882697571e-05
+12 4.52276653959416e-05
+13 3.855224349536e-05
+14 3.49409019690938e-05
+15 3.02836870105239e-05
+16 2.78495572274551e-05
+17 2.49749136855826e-05
+18 2.2681022528559e-05
+19 2.07851953746285e-05
+20 1.91123199329013e-05
+21 1.79353901330614e-05
+22 1.68090336956084e-05
+23 1.58844177349238e-05
+24 1.44786645250861e-05
+25 1.3790274351777e-05
+26 1.3003343156015e-05
+27 1.27894199977163e-05
+28 1.2001901268377e-05
+29 1.12870411612676e-05
+30 1.09430884549511e-05
+31 1.02732947198092e-05
+32 1.00508286777767e-05
+33 9.39232540986268e-06
+34 8.99136193766026e-06
+35 8.77299316925928e-06
+36 8.37296920508379e-06
+37 8.19503839011304e-06
+38 7.69717644288903e-06
+39 7.56801273382735e-06
+40 7.27630367691745e-06
+41 7.03343994246097e-06
+42 6.79357526678359e-06
+43 6.72383566779899e-06
+44 6.36147251498187e-06
+45 6.30071235718788e-06
+46 6.04264369030716e-06
+47 5.86480564379599e-06
+48 5.70603742744424e-06
+49 5.44590056961169e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000108280357380863
+1 9.76939827523893e-06
+2 1.07578989627655e-05
+3 0.00144767120946199
+4 0.000307599257212132
+5 1.71359279192984e-05
+6 0.00402080779895186
+7 5.72542303416412e-05
+8 0.000197820874745958
+9 8.37041880004108e-05
+10 6.53311726637185e-05
+11 3.82906255254056e-05
+12 3.9874288631836e-05
+13 3.91682078770828e-05
+14 2.79398864222458e-05
+15 3.18879210681189e-05
+16 2.41581637965282e-05
+17 2.36183495871956e-05
+18 2.35775769397151e-05
+19 2.23383958655177e-05
+20 2.15446543734288e-05
+21 1.80830757017247e-05
+22 1.6916243112064e-05
+23 1.43919342008303e-05
+24 1.7831251170719e-05
+25 1.52897264342755e-05
+26 1.54105709953001e-05
+27 1.01671639640699e-05
+28 1.1428962352511e-05
+29 1.18615707833669e-05
+30 9.58253258431796e-06
+31 1.07737387224915e-05
+32 8.19756951386807e-06
+33 1.01340056062327e-05
+34 9.80614458967466e-06
+35 8.33612648420967e-06
+36 9.15742657525698e-06
+37 7.08148900230299e-06
+38 8.95453649718547e-06
+39 7.7815484473831e-06
+40 7.46667092244024e-06
+41 7.16373915565782e-06
+42 7.17536113370443e-06
+43 5.75318745177356e-06
+44 6.98178700986318e-06
+45 5.51196353626437e-06
+46 5.74132582187303e-06
+47 5.53133077119128e-06
+48 5.3020880841359e-06
+49 6.14908958596061e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000132209897856228
+1 0.000134147296193987
+2 0.000132459928863682
+3 0.000130983113194816
+4 0.000130557207739912
+5 0.000133366280351765
+6 0.000134343848912977
+7 0.000128993706312031
+8 0.000132930566905998
+9 0.000133880050270818
+10 0.000134883535793051
+11 0.000132080109324306
+12 0.000134251851704903
+13 0.000130431129946373
+14 0.000133385154185817
+15 0.000125761900562793
+16 0.000134657748276368
+17 0.000132620814838447
+18 0.000133505527628586
+19 0.000129972933791578
+20 0.000132782515720464
+21 0.000131913315271959
+22 0.000129060383187607
+23 0.000133893583551981
+24 0.000131620021420531
+25 0.000156719150254503
+26 0.000131041408167221
+27 0.0001300654548686
+28 0.000130873275338672
+29 0.000133218884002417
+30 0.000134616973809898
+31 0.000131761844386347
+32 0.000128253159346059
+33 0.000133044668473303
+34 0.000133125460706651
+35 0.000131914523080923
+36 0.000132617627969012
+37 0.000131525375763886
+38 0.000130149128381163
+39 0.000131783948745579
+40 0.000132483488414437
+41 0.000134473302750848
+42 0.000134058893308975
+43 0.000132063549244776
+44 0.000133658933918923
+45 0.000128655548905954
+46 0.000128850762848742
+47 0.000129434411064722
+48 0.000126991391880438
+49 0.000128773070173338
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000124830650747754
+1 0.000103786820545793
+2 0.000122401514090598
+3 0.000137555703986436
+4 0.000139867028337903
+5 0.000111151537566911
+6 0.000104287544672843
+7 0.000158791983267292
+8 0.000117525589303114
+9 0.000109018095827196
+10 9.74916474660859e-05
+11 0.000130377869936638
+12 0.000105455124867149
+13 0.00013679638504982
+14 0.000113713627797551
+15 0.00018084209295921
+16 0.00010029580880655
+17 0.000121078082884196
+18 0.000114335620310158
+19 0.000143417928484268
+20 0.000118128606118262
+21 0.000128597806906328
+22 0.000151755753904581
+23 0.000107649997517001
+24 0.000133928537252359
+25 0.000124106722068973
+26 0.000133517998619936
+27 0.000139498020871542
+28 0.00013517432671506
+29 0.000117740441055503
+30 0.000100428784207907
+31 0.000125451508210972
+32 0.00015786757285241
+33 0.000116761519166175
+34 0.000115115311928093
+35 0.000126914863358252
+36 0.000118235584523063
+37 0.000129038351587951
+38 0.0001443585351808
+39 0.000124399812193587
+40 0.000124636106193066
+41 0.000101919133157935
+42 0.000106750660052057
+43 0.000124210884678178
+44 0.000112622998130973
+45 0.000155966947204433
+46 0.000152115753735416
+47 0.000147143713547848
+48 0.000169663268025033
+49 0.000154657376697287
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005907011807464275, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005907011807464275, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..429c0d712c4c20ff5c26357d2cf7a914e91281a9
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005907011807464275, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005907011807464275, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005907011807464275, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..14aeaca1fb90208153abb3b17bddb0bfdf0bf919
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005907011807464275, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.01832240283642e-08, ymax=0.000274650281884428,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000136409085826017
+1 3.96721698052716e-05
+2 4.51797723144409e-06
+3 1.99428905034438e-06
+4 1.35642289933458e-06
+5 9.81726770987734e-07
+6 7.937526902424e-07
+7 6.32556179880339e-07
+8 5.35601941464847e-07
+9 4.52389116389895e-07
+10 3.89612011986173e-07
+11 3.4717194807854e-07
+12 3.04264716532998e-07
+13 2.75411849770535e-07
+14 2.42433685571086e-07
+15 2.21674994804744e-07
+16 2.06617229991934e-07
+17 1.92732883874669e-07
+18 1.81476977445527e-07
+19 1.65534885354646e-07
+20 1.59728514859125e-07
+21 1.4692767535962e-07
+22 1.39799894327552e-07
+23 1.27744186784184e-07
+24 1.2494389522999e-07
+25 1.09022174399342e-07
+26 1.0966721930572e-07
+27 9.97639588717902e-08
+28 9.69278843854227e-08
+29 9.58430206310368e-08
+30 9.40437132612715e-08
+31 8.81878960967697e-08
+32 8.19968732912457e-08
+33 7.84504692319388e-08
+34 7.48155741803203e-08
+35 7.24562667642203e-08
+36 7.01477134157358e-08
+37 6.98565614243307e-08
+38 6.60971011257061e-08
+39 6.43400781541459e-08
+40 5.96174061229249e-08
+41 6.04430923090149e-08
+42 6.018673559538e-08
+43 5.50968479728908e-08
+44 5.46225109587795e-08
+45 5.33647082079369e-08
+46 5.25597911860132e-08
+47 4.94385155036525e-08
+48 4.7312475714989e-08
+49 4.59948310549407e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000150438499986194
+1 3.88931475754362e-05
+2 3.90384639104013e-06
+3 2.64860909737763e-06
+4 1.15640420972341e-06
+5 1.11470342289977e-06
+6 6.78575304391416e-07
+7 5.50467973425839e-07
+8 4.29420794034741e-07
+9 4.57641874618275e-07
+10 3.4822974726012e-07
+11 2.63868940919565e-07
+12 2.84121256299841e-07
+13 2.24215682465001e-07
+14 3.37281193196759e-07
+15 2.30569298764749e-07
+16 2.07750971981113e-07
+17 2.11131506944184e-07
+18 1.75247549805135e-07
+19 1.52505677419867e-07
+20 1.25221134794629e-07
+21 1.60190268161386e-07
+22 1.18917903080273e-07
+23 1.11725128704165e-07
+24 1.21195839142274e-07
+25 1.31502474687295e-07
+26 9.06249297827344e-08
+27 1.01692059217839e-07
+28 9.79536594059027e-08
+29 8.99241072715995e-08
+30 1.05753443335743e-07
+31 8.38918481349538e-08
+32 7.08585190523081e-08
+33 8.75869901051374e-08
+34 8.24635435492382e-08
+35 6.42499031755506e-08
+36 5.40207736321463e-08
+37 7.14316499283996e-08
+38 6.1724790612061e-08
+39 4.99631873651651e-08
+40 7.96660302171404e-08
+41 5.33623918386184e-08
+42 6.98052389225268e-08
+43 5.50536469745566e-08
+44 5.89096202929795e-08
+45 4.64083136364479e-08
+46 5.16651077475672e-08
+47 4.9782876487825e-08
+48 4.56794460035326e-08
+49 4.72320600408693e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000133402820210904
+1 0.000136221351567656
+2 0.000137751078000292
+3 0.000138485978823155
+4 0.000137169379740953
+5 0.000133732857648283
+6 0.000137717463076115
+7 0.000136363669298589
+8 0.000138825591420755
+9 0.000136911185109057
+10 0.000133454232127406
+11 0.000136963120894507
+12 0.000136545961140655
+13 0.00013420038158074
+14 0.000135461828904226
+15 0.000133478752104566
+16 0.000137666880618781
+17 0.000139265321195126
+18 0.000135212583700195
+19 0.000137854556669481
+20 0.000138303919811733
+21 0.000139592797495425
+22 0.000136995236971416
+23 0.000140205593197607
+24 0.000137643422931433
+25 0.000137185343191959
+26 0.000140813644975424
+27 0.000140548712806776
+28 0.00014051201287657
+29 0.000136987742735073
+30 0.000140245814691298
+31 0.000140893622301519
+32 0.000140839067171328
+33 0.000140940814162605
+34 0.000135182519443333
+35 0.000135809503262863
+36 0.000139645402668975
+37 0.000138308489113115
+38 0.000139064737595618
+39 0.000137841620016843
+40 0.000139186100568622
+41 0.000134138623252511
+42 0.000137108581839129
+43 0.000138294126372784
+44 0.000139472220325842
+45 0.000136537477374077
+46 0.00013932166621089
+47 0.000137295108288527
+48 0.000137457027449273
+49 0.000136425936943851
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000181478360900655
+1 0.000157849266543053
+2 0.000139707757625729
+3 0.000134911970235407
+4 0.00014730058319401
+5 0.000177256952156313
+6 0.000142313583637588
+7 0.000155423418618739
+8 0.000130696585983969
+9 0.000150648018461652
+10 0.000177330090082251
+11 0.000147878061397932
+12 0.000150987252709456
+13 0.00017440012015868
+14 0.000160143827088177
+15 0.000179534312337637
+16 0.00014200308942236
+17 0.000127915511257015
+18 0.000164208278874867
+19 0.000140577074489556
+20 0.000135853842948563
+21 0.000123843579785898
+22 0.000148090199218132
+23 0.000117424329800997
+24 0.000143402183311991
+25 0.000146840553497896
+26 0.000112688961962704
+27 0.000114321956061758
+28 0.000116614908620249
+29 0.000147577258758247
+30 0.000117642623081338
+31 0.000113511589006521
+32 0.000113189336843789
+33 0.000110461216536351
+34 0.000163727047038265
+35 0.000157472357386723
+36 0.000123820660519414
+37 0.000135820431751199
+38 0.00013165341806598
+39 0.000139510753797367
+40 0.000128724030219018
+41 0.000173638967680745
+42 0.000145287529448979
+43 0.000136849004775286
+44 0.0001240884012077
+45 0.000152086184243672
+46 0.000125766498968005
+47 0.000147768558235839
+48 0.000142375982250087
+49 0.000151984495460056
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005913949378298984, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005913949378298984, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..d934b4a68098a78690b67c760a0dd707507097bf
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005913949378298984, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005913949378298984, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005913949378298984, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..d72574fb148e22b91f2a20c6277a8fd9994d1dd5
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005913949378298984, Learning_Process.tex	
@@ -0,0 +1,266 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.03959339527839e-08, ymax=0.0192740238084752,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000123146339319646
+1 8.95561788638588e-06
+2 2.50107950705569e-06
+3 1.42817862069933e-06
+4 8.92439175004256e-07
+5 6.46723435693275e-07
+6 4.77069363569171e-07
+7 3.84114883900111e-07
+8 3.27332799088254e-07
+9 2.68694378746659e-07
+10 2.28828369586154e-07
+11 1.92315027902623e-07
+12 1.79566313818214e-07
+13 1.59831500923246e-07
+14 1.3955477129457e-07
+15 1.29587945707499e-07
+16 1.10128354435801e-07
+17 1.07499438684044e-07
+18 9.83578019031484e-08
+19 9.15375082399805e-08
+20 8.61597797552349e-08
+21 7.46066959322889e-08
+22 7.7084052918508e-08
+23 6.84782932580674e-08
+24 6.37167829609098e-08
+25 6.26288567673328e-08
+26 5.70998679449986e-08
+27 5.45320411049488e-08
+28 5.29618979783208e-08
+29 5.28245465147847e-08
+30 4.84373643416802e-08
+31 4.67406522375313e-08
+32 4.41468692713443e-08
+33 4.18309653582583e-08
+34 4.02783442154941e-08
+35 3.90203460653993e-08
+36 3.72861244102296e-08
+37 3.60139758015521e-08
+38 3.55250691086439e-08
+39 3.44697106413605e-08
+40 3.18542454635917e-08
+41 3.19476427534937e-08
+42 3.03284366509615e-08
+43 2.99076816645538e-08
+44 2.83841483650349e-08
+45 2.72904898679371e-08
+46 2.64156803098103e-08
+47 2.61799186773715e-08
+48 2.33421513229359e-08
+49 2.59520653855816e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000140046395245008
+1 6.50892479825416e-06
+2 2.56782936958189e-06
+3 1.30242085560894e-06
+4 9.22667993563664e-07
+5 6.87936505983089e-07
+6 4.92641163418739e-07
+7 3.890388597938e-07
+8 2.5567095462975e-07
+9 2.40112370875067e-07
+10 1.93208535392841e-07
+11 2.52300196734723e-07
+12 1.45480385072005e-07
+13 1.34326228362625e-07
+14 1.42996782415139e-07
+15 1.24560614267466e-07
+16 1.39112216857029e-07
+17 1.04889089413973e-07
+18 9.7095472995079e-08
+19 9.8215309662919e-08
+20 8.16119722912845e-08
+21 1.13434246884481e-07
+22 5.41634506134869e-08
+23 7.34939717972338e-08
+24 6.85214516238375e-08
+25 4.18138981217453e-08
+26 7.98352317588069e-08
+27 6.28620000497904e-08
+28 5.47459073629852e-08
+29 4.45750423239133e-08
+30 5.28834220858698e-08
+31 5.37261932720412e-08
+32 3.59314462627935e-08
+33 3.59737164501439e-08
+34 5.13490832076968e-08
+35 3.40476908888832e-08
+36 5.33723891749105e-08
+37 3.68589603283453e-08
+38 4.08760847392386e-08
+39 3.12909804733863e-08
+40 3.49744375682803e-08
+41 3.47205109108017e-08
+42 2.93323818567615e-08
+43 2.91208266389731e-08
+44 2.8655987804882e-08
+45 2.93831714515136e-08
+46 3.01130533841842e-08
+47 2.00344558720644e-08
+48 3.63720005225332e-08
+49 2.02142373950664e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000125867736642249
+1 0.000124993865028955
+2 0.000124039186630398
+3 0.000124861151562072
+4 0.000122802113764919
+5 0.000124837009934708
+6 0.000126464772620238
+7 0.000123724385048263
+8 0.000127910272567533
+9 0.000126496495795436
+10 0.000128768238937482
+11 0.00012662255903706
+12 0.00012557121226564
+13 0.000122151424875483
+14 0.000123380741570145
+15 0.000126367682241835
+16 0.000124763624626212
+17 0.000127178718685172
+18 0.000127332037664019
+19 0.000123822377645411
+20 0.000125769423902966
+21 0.000121304066851735
+22 0.000126612212625332
+23 0.000125295060570352
+24 0.000123830934171565
+25 0.000120883021736518
+26 0.000125071528600529
+27 0.0100013436749578
+28 0.000122465527965687
+29 0.000123981197248213
+30 0.000126856510178186
+31 0.000127275168779306
+32 0.000125075006508268
+33 0.000126927508972585
+34 0.000124689817312174
+35 0.000126218816149049
+36 0.000124720711028203
+37 0.000125565478811041
+38 0.00012239433999639
+39 0.000126746250316501
+40 0.000125038612168282
+41 0.000124845013488084
+42 0.000123968697153032
+43 0.000125431106425822
+44 0.000126624581753276
+45 0.000126560044009238
+46 0.000127668274217285
+47 0.00012458507262636
+48 0.000125035818200558
+49 0.000127664286992513
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000112521011033095
+1 0.000122617537272163
+2 0.000132819899590686
+3 0.000124358615721576
+4 0.00014186765474733
+5 0.00012238287308719
+6 0.000110748551378492
+7 0.000135383103042841
+8 9.59493772825226e-05
+9 0.000111902343633119
+10 9.06613931874745e-05
+11 0.000111995395855047
+12 0.000117673014756292
+13 0.000147307335282676
+14 0.000138264353154227
+15 0.00011220221495023
+16 0.000125540915178135
+17 0.000103900187241379
+18 0.000102164107374847
+19 0.000133140783873387
+20 0.000118618881970178
+21 0.000158026581630111
+22 0.000112770147097763
+23 0.000122274039313197
+24 0.000131606197101064
+25 0.000159548406372778
+26 0.000123063568025827
+27 0.000132836823468097
+28 0.000146031103213318
+29 0.000132495231810026
+30 0.000106357445474714
+31 0.000103243954072241
+32 0.000120481767226011
+33 0.000107023886812385
+34 0.000124119949759915
+35 0.000112393165181857
+36 0.000125668942928314
+37 0.000116457929834723
+38 0.000146535152452998
+39 0.00010817195288837
+40 0.000124904763652012
+41 0.000122715515317395
+42 0.00013204527203925
+43 0.000118142066639848
+44 0.000108989188447595
+45 0.000110547560325358
+46 0.000100297307653818
+47 0.000126607934362255
+48 0.000121389974083286
+49 9.79797259788029e-05
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005928285315195519, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005928285315195519, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..cc0e88f583b394e1c4985fdb79d6002be27515f3
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005928285315195519, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005928285315195519, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005928285315195519, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..cf037bbb189e0058e5b7a056d2b0e5297b569b71
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005928285315195519, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.60637872177805e-08, ymax=0.000472730748592253,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000148496445035562
+1 1.68595925060799e-05
+2 4.5703577598033e-06
+3 2.4046171347436e-06
+4 1.40632846523658e-06
+5 1.05471553979442e-06
+6 8.45332067456184e-07
+7 6.58377246054442e-07
+8 5.71686996408971e-07
+9 4.74372853886962e-07
+10 4.00900461272613e-07
+11 3.60849668368246e-07
+12 0.000302720756735653
+13 2.87737691451184e-07
+14 2.62315779764322e-07
+15 2.33293079077157e-07
+16 2.16954916254508e-07
+17 1.83855021873569e-07
+18 1.80385541170835e-07
+19 1.69967066199206e-07
+20 1.5382634899197e-07
+21 1.88919372590135e-07
+22 1.41354760785362e-07
+23 1.26320330195995e-07
+24 1.15174124459827e-07
+25 1.12534955576393e-07
+26 1.0452325938104e-07
+27 1.05123802995877e-07
+28 9.69650812976397e-08
+29 9.2653479555338e-08
+30 8.64243006049037e-08
+31 8.59770921124436e-08
+32 7.8301908956746e-08
+33 8.25000014970101e-08
+34 7.57171250143074e-08
+35 7.64648788731392e-08
+36 6.86047059161865e-08
+37 6.40125037421058e-08
+38 6.22287075202621e-08
+39 6.00879843659641e-08
+40 1.08054898362298e-07
+41 5.8300543059886e-08
+42 5.42527409663762e-08
+43 5.10736555270341e-08
+44 5.0694737296908e-08
+45 5.29512789171349e-08
+46 5.02811943192683e-08
+47 4.51842829818361e-08
+48 4.47633183853213e-08
+49 4.53181812076764e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000167482052347623
+1 1.75598925125087e-05
+2 5.65945310881943e-06
+3 1.34461049583479e-06
+4 1.79516541720659e-06
+5 1.01331124824355e-06
+6 7.361633720393e-07
+7 7.28542090655537e-07
+8 5.07583990838611e-07
+9 3.87785718203304e-07
+10 4.38134890146102e-07
+11 4.29134132673425e-07
+12 3.0675752782372e-07
+13 4.55987446912332e-07
+14 2.71220784497928e-07
+15 2.57546957982413e-07
+16 1.92645714491846e-07
+17 3.0206760470719e-07
+18 1.72421792399291e-07
+19 1.55351344233168e-07
+20 1.54018380271737e-07
+21 1.71183259567442e-07
+22 9.48311509318955e-08
+23 1.24951270663587e-07
+24 1.32147789599912e-07
+25 1.37169919867119e-07
+26 1.2236667146226e-07
+27 7.54404254621477e-08
+28 8.79172858958555e-08
+29 1.01796153728628e-07
+30 9.46844593840979e-08
+31 7.78495987674432e-08
+32 8.71785914569045e-08
+33 6.85994123728051e-08
+34 8.18238063970966e-08
+35 9.2105274518417e-08
+36 5.12188478296594e-08
+37 9.92638362617981e-08
+38 7.10929626279722e-08
+39 5.30010559884886e-08
+40 4.70658036988425e-08
+41 6.82361616100025e-08
+42 5.04152346536557e-08
+43 5.45088489900536e-08
+44 4.49844854699677e-08
+45 4.07013835967973e-08
+46 4.1226751790191e-08
+47 4.8399737551108e-08
+48 4.08869240686727e-08
+49 4.33806199851006e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00015228173288051
+1 0.0001526946289232
+2 0.00015066031483002
+3 0.000150404404848814
+4 0.000151272455696017
+5 0.000151993444887921
+6 0.000147894184920006
+7 0.000150083491462283
+8 0.0001494027528679
+9 0.000150940220919438
+10 0.000151983884279616
+11 0.000153924425831065
+12 0.000148625549627468
+13 0.00015136951697059
+14 0.000147964092320763
+15 0.000151269530761056
+16 0.00014949613250792
+17 0.000148970721056685
+18 0.000151602653204463
+19 0.000150249659782276
+20 0.000151999003719538
+21 0.000148853228893131
+22 0.000152268738020211
+23 0.000153371758642606
+24 0.00015222177898977
+25 0.00015153203275986
+26 0.000149184779729694
+27 0.000150975727592595
+28 0.000151191154145636
+29 0.000151148502482101
+30 0.000153513479745016
+31 0.000149533880176023
+32 0.000151906511746347
+33 0.000150586623931304
+34 0.000148748440551572
+35 0.000153236978803761
+36 0.000149831757880747
+37 0.000147514176205732
+38 0.000150155668961816
+39 0.000148955688928254
+40 0.000154523906530812
+41 0.000147109414683655
+42 0.00015116113354452
+43 0.000150732899783179
+44 0.000151182364788838
+45 0.000149730447446927
+46 0.000152016946231015
+47 0.000148261126014404
+48 0.000150086387293413
+49 0.000150267078424804
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000133711830130778
+1 0.000132209795992821
+2 0.000144938385346904
+3 0.000153891000081785
+4 0.000145969956065528
+5 0.000138985284138471
+6 0.000172561311046593
+7 0.000160642666742206
+8 0.000159539180458523
+9 0.000145458951010369
+10 0.000135066846269183
+11 0.000120888464152813
+12 0.000166151075973175
+13 0.000143545985338278
+14 0.00017222945461981
+15 0.00014403036038857
+16 0.000155392292072065
+17 0.000163445234647952
+18 0.000139006486278959
+19 0.000151635220390745
+20 0.000137325128889643
+21 0.000166437283041887
+22 0.000135280293761753
+23 0.000125535880215466
+24 0.000140162141178735
+25 0.000140046322485432
+26 0.000164685174240731
+27 0.000147626982652582
+28 0.000148581151734106
+29 0.000140688818646595
+30 0.000125593651318923
+31 0.0001578191149747
+32 0.000135682334075682
+33 0.000151156724314205
+34 0.000165326622663997
+35 0.000127771680126898
+36 0.000156789785251021
+37 0.000177773399627768
+38 0.00014517703675665
+39 0.000164500626851805
+40 0.000114132883027196
+41 0.000178516507730819
+42 0.000142417658935301
+43 0.00014269603707362
+44 0.000148056133184582
+45 0.000154685796587728
+46 0.000139100855449215
+47 0.000171871753991581
+48 0.000154664841829799
+49 0.000150919033330865
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005929359065882622, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005929359065882622, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..9f9d5ddfcf3610437425b3ea7d69735335acf872
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005929359065882622, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005929359065882622, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005929359065882622, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..a4423d6e7f19031b7c9640eb76a7814b4205f555
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005929359065882622, Learning_Process.tex	
@@ -0,0 +1,265 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=9.35584761992259e-09, ymax=0.000307209776790506,
+ymode=log,
+ytick style={color=black},
+ytick={1e-10,1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-10}}\),
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000131096108816564
+1 7.38694097890402e-06
+2 2.17240676647634e-06
+3 1.16470164357452e-06
+4 5.98204678681213e-07
+5 4.13064924487117e-07
+6 3.13776496341234e-07
+7 5.18546755756688e-07
+8 2.05640958483855e-07
+9 1.74306435951621e-07
+10 1.4401739178993e-07
+11 1.29661799519454e-07
+12 1.92367934914728e-07
+13 1.65599772117275e-07
+14 1.27188044984905e-07
+15 9.74895399963316e-08
+16 8.20185661609685e-08
+17 7.13093584181479e-08
+18 6.46856719299649e-08
+19 5.93029874096374e-08
+20 5.52979244616836e-08
+21 4.97761156736942e-08
+22 4.47783854440331e-08
+23 4.40151595171301e-08
+24 4.06616749160094e-08
+25 3.85360792165557e-08
+26 3.62519188001897e-08
+27 3.33521441575613e-08
+28 3.34322010075994e-08
+29 3.12409795810709e-08
+30 2.85714740755338e-08
+31 2.87088166572858e-08
+32 2.80014180731314e-08
+33 2.65544368716064e-08
+34 2.54503245145088e-08
+35 2.49372416050164e-08
+36 2.35519195257439e-08
+37 2.45670879195359e-08
+38 2.14521111985277e-08
+39 2.14563957712244e-08
+40 2.0873708095337e-08
+41 2.06738199892698e-08
+42 1.97316758487887e-08
+43 1.92987581471016e-08
+44 1.82299437767597e-08
+45 1.85325621515631e-08
+46 1.77093628650482e-08
+47 1.76004650853656e-08
+48 1.63411915110601e-08
+49 1.60464423970552e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.00012465774489101
+1 7.40233372198418e-06
+2 2.26841211770079e-06
+3 1.55608927343565e-06
+4 5.69890801216388e-07
+5 3.69220146012594e-07
+6 2.52401747502518e-07
+7 1.91134958527073e-07
+8 1.87962811537545e-07
+9 1.71415067029557e-07
+10 1.47687615026371e-07
+11 1.32082163872838e-07
+12 1.46772435982712e-07
+13 1.7642790339778e-07
+14 1.31548958393068e-07
+15 8.96763765467767e-08
+16 7.48580148979272e-08
+17 7.37291401264883e-08
+18 5.80210333112063e-08
+19 5.45888489966728e-08
+20 4.37815330656122e-08
+21 4.58427322769239e-08
+22 5.14956148833789e-08
+23 4.56210038635163e-08
+24 3.59748142386707e-08
+25 2.7360096410689e-08
+26 2.61067025775219e-08
+27 3.92229075885098e-08
+28 2.77168741291689e-08
+29 3.24593294465103e-08
+30 3.85397989077774e-08
+31 2.9692614589294e-08
+32 2.36449189117138e-08
+33 2.35525678959903e-08
+34 2.34253629827208e-08
+35 2.25670238052089e-08
+36 2.9171507875958e-08
+37 2.78892127170138e-08
+38 2.69517101969541e-08
+39 1.9087448066557e-08
+40 1.70913949659734e-08
+41 1.82834991591108e-08
+42 2.48620803944277e-08
+43 2.32172432390598e-08
+44 1.86756103914831e-08
+45 2.02949159699983e-08
+46 1.71120753122977e-08
+47 1.50096948203782e-08
+48 2.05970600575256e-08
+49 1.78070322931489e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000126737300888635
+1 0.000131618697196245
+2 0.000133741676108912
+3 0.000133401117636822
+4 0.00013031942944508
+5 0.000130261279991828
+6 0.000129589301650412
+7 0.000128248502733186
+8 0.000129365813336335
+9 0.0001279126299778
+10 0.000131976412376389
+11 0.000132599845528603
+12 0.000127421284560114
+13 0.000129783991724253
+14 0.00013267585018184
+15 0.000129178049974144
+16 0.00012949867232237
+17 0.000130747386720031
+18 0.000129561711219139
+19 0.000131222259369679
+20 0.00013050863344688
+21 0.000134551693918183
+22 0.000132370201754384
+23 0.000133454770548269
+24 0.000132101107737981
+25 0.000129714098875411
+26 0.000129677253426053
+27 0.000127188031910919
+28 0.000127475752378814
+29 0.000134187182993628
+30 0.000123723395518027
+31 0.000131727283587679
+32 0.000130067361169495
+33 0.000134351663291454
+34 0.000133454450406134
+35 0.000131364213302732
+36 0.000129439431475475
+37 0.000133504014229402
+38 0.000134255446027964
+39 0.000132007917272858
+40 0.000128453713841736
+41 0.000130150889162906
+42 0.000131316788611002
+43 0.000130908025312237
+44 0.000127547536976635
+45 0.000131977605633438
+46 0.000126887753140181
+47 0.000129907959490083
+48 0.000131967521156184
+49 0.00012742035323754
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000164629382197745
+1 0.000122304991236888
+2 0.000100703233329114
+3 0.000105329607322346
+4 0.000132626984850504
+5 0.000132158151245676
+6 0.000138196875923313
+7 0.000150534018757753
+8 0.000141207114211284
+9 0.000154538938659243
+10 0.000118698480946478
+11 0.000111694644147065
+12 0.00016143880202435
+13 0.000137399925733916
+14 0.000112378504127264
+15 0.000142969583976083
+16 0.000132995497551747
+17 0.000128524043248035
+18 0.000140060321427882
+19 0.000125340215163305
+20 0.000131625522044487
+21 9.35147545533255e-05
+22 0.00011488839663798
+23 0.000105950843135361
+24 0.000117063384095673
+25 0.00013779201253783
+26 0.000141527809319086
+27 0.000162007505423389
+28 0.000158733877469786
+29 9.84822327154689e-05
+30 0.000191490093129687
+31 0.000120821190648712
+32 0.000135573718580417
+33 9.6140916866716e-05
+34 0.000102528254501522
+35 0.000122364421258681
+36 0.000140339630888775
+37 0.000101126439403743
+38 9.75662042037584e-05
+39 0.000117465991934296
+40 0.000148986815474927
+41 0.000132041939650662
+42 0.000122261888463981
+43 0.000127473991597071
+44 0.00016036190208979
+45 0.000119361669931095
+46 0.000162321011885069
+47 0.000134783040266484
+48 0.000120298995170742
+49 0.000159013696247712
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0059330901831181225, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0059330901831181225, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..ea93689e0f01ddfd7c02e54389fb6c1ab9f89dec
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0059330901831181225, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0059330901831181225, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0059330901831181225, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..8cec707c2230e4db240ac0dc3453d2837b3340e2
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0059330901831181225, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.90062875168818e-08, ymax=0.000259749848438696,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000145714511745609
+1 1.59015253302641e-05
+2 5.95389610680286e-06
+3 3.39065059051791e-06
+4 2.00037652575702e-06
+5 1.47538150940818e-06
+6 1.20020945360011e-06
+7 9.30407281884982e-07
+8 7.30763190404105e-07
+9 7.21789831459319e-07
+10 6.02718046138762e-07
+11 5.06797732668929e-07
+12 4.49156232207315e-07
+13 3.9590531741851e-07
+14 3.45391697464947e-07
+15 3.20244623708277e-07
+16 2.95236390002174e-07
+17 2.60746219282737e-07
+18 2.44524585468753e-07
+19 2.43267521682355e-07
+20 2.12477416994261e-07
+21 1.9499522352362e-07
+22 1.81642207053301e-07
+23 1.72722508295919e-07
+24 1.64277366820897e-07
+25 1.55316001837491e-07
+26 1.48897782992208e-07
+27 1.38765528845397e-07
+28 1.31764778643628e-07
+29 1.29330274489803e-07
+30 1.19461589065395e-07
+31 1.14777840565239e-07
+32 1.12106242511345e-07
+33 1.05000538042077e-07
+34 1.03265833217847e-07
+35 9.82020935680339e-08
+36 9.29896941670449e-08
+37 9.11608211140447e-08
+38 8.64818758827823e-08
+39 8.92405509489436e-08
+40 8.77397710041805e-08
+41 7.64908705264133e-08
+42 7.82379174779635e-08
+43 7.61287068939964e-08
+44 7.59280638362725e-08
+45 6.94067665563125e-08
+46 9.22912377632201e-08
+47 6.56490044548264e-08
+48 6.51488250014154e-08
+49 6.33124344062708e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000107912288513035
+1 1.59372666530544e-05
+2 5.23448989042663e-06
+3 3.99171358367312e-06
+4 2.74302124125825e-06
+5 1.7190805010614e-06
+6 1.25511564874614e-06
+7 9.4990599563971e-07
+8 1.05694005014811e-06
+9 6.2777291987004e-07
+10 5.44993440598773e-07
+11 4.893508389614e-07
+12 3.89046562077056e-07
+13 3.55659125261809e-07
+14 3.50039925933743e-07
+15 2.93383266125602e-07
+16 2.9306303872545e-07
+17 2.46412980686728e-07
+18 2.30062667583297e-07
+19 2.4008332388803e-07
+20 1.74601936464569e-07
+21 1.68914652931562e-07
+22 1.70853354575229e-07
+23 1.6221045484599e-07
+24 1.98541883378311e-07
+25 1.24023785019745e-07
+26 1.52658373053782e-07
+27 1.55174802785041e-07
+28 1.62158002581236e-07
+29 1.40448591423592e-07
+30 1.12001067975598e-07
+31 1.27554244500061e-07
+32 1.23384069183885e-07
+33 1.0227334001911e-07
+34 1.02132197810079e-07
+35 1.00461626573178e-07
+36 1.00545371140015e-07
+37 8.51537365065269e-08
+38 8.73706440529531e-08
+39 6.62860912825636e-08
+40 8.49752765930134e-08
+41 8.27979675932511e-08
+42 7.10547070070788e-08
+43 5.82004666682678e-08
+44 6.73753248747744e-08
+45 6.93927120209992e-08
+46 6.29123775297558e-08
+47 6.05128320785298e-08
+48 6.26196481334773e-08
+49 5.87108672789327e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00014142798318062
+1 0.000144933583214879
+2 0.00014611566439271
+3 0.000143598925205879
+4 0.000141394091770053
+5 0.00014105875743553
+6 0.000141219730721787
+7 0.000147271362948231
+8 0.00013903460057918
+9 0.000140885167638771
+10 0.000141018157592043
+11 0.000141340264235623
+12 0.000142478093039244
+13 0.000141726079164073
+14 0.000141747717862017
+15 0.000143491590279154
+16 0.000139290190418251
+17 0.00014091600314714
+18 0.000141555181471631
+19 0.000141758122481406
+20 0.000140107615152374
+21 0.000140537609695457
+22 0.000141430922667496
+23 0.000144513367558829
+24 0.000139701325679198
+25 0.00014270179963205
+26 0.000144968435051851
+27 0.000144158548209816
+28 0.000139641662826762
+29 0.000141703159897588
+30 0.000140448202728294
+31 0.000140149990329519
+32 0.000140180854941718
+33 0.000137958923005499
+34 0.000142490462167189
+35 0.000140173142426647
+36 0.000141157303005457
+37 0.00013952529116068
+38 0.000140375166665763
+39 0.000141138647450134
+40 0.00014446399291046
+41 0.000143172612297349
+42 0.000146012636832893
+43 0.000141032374813221
+44 0.00014100044791121
+45 0.000145739293657243
+46 0.000142715565743856
+47 0.000140837204526179
+48 0.000139987154398113
+49 0.000143602912430651
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000144778518006206
+1 0.000116618488391396
+2 9.9891287391074e-05
+3 0.000127461520605721
+4 0.000147225946420804
+5 0.000150599866174161
+6 0.000152301028720103
+7 0.000100672921689693
+8 0.000163080083439127
+9 0.000146696344017982
+10 0.000148239691043273
+11 0.000145605692523532
+12 0.000133280598674901
+13 0.000144333112984896
+14 0.000138840827275999
+15 0.000125837992527522
+16 0.000164998113177717
+17 0.000148042003274895
+18 0.000145895275636576
+19 0.00014792948786635
+20 0.000155678877490573
+21 0.000151184416608885
+22 0.000146157690323889
+23 0.000115296723379288
+24 0.000158688751980662
+25 0.000136998554808088
+26 0.000115255381388124
+27 0.000124655562103726
+28 0.000160011564730667
+29 0.000140786360134371
+30 0.000150601947098039
+31 0.000159572227858007
+32 0.000157979418872856
+33 0.000174085842445493
+34 0.000133447669213638
+35 0.000160455165314488
+36 0.000146777761983685
+37 0.000159932795213535
+38 0.000159463903401047
+39 0.000145054640597664
+40 0.000117571929877158
+41 0.000127923427498899
+42 0.000107663989183493
+43 0.000148389386595227
+44 0.000150537453009747
+45 0.000107001469586976
+46 0.000132066881633364
+47 0.00014905710122548
+48 0.000155109635670669
+49 0.000122186916996725
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00593643462584327, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00593643462584327, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..9c9f192f3472f0791d79beef02e7b0582f9c1478
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00593643462584327, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00593643462584327, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00593643462584327, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..4f07c64f6a764e84d4a7f04a2802e73c0e3be66e
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00593643462584327, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.08377808998737e-06, ymax=0.000265985277449922,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000142750606755726
+1 2.59602602454834e-05
+2 1.07671485238825e-05
+3 1.89364636753453e-05
+4 9.75364946498303e-06
+5 3.75831987184938e-05
+6 0.00010515094618313
+7 0.000188617559615523
+8 8.4429673734121e-05
+9 5.71837772440631e-05
+10 4.28217208536807e-05
+11 3.47170462191571e-05
+12 2.86790800601011e-05
+13 2.43048234551679e-05
+14 2.14491465158062e-05
+15 1.83695101441117e-05
+16 1.68733004102251e-05
+17 1.52514257933944e-05
+18 1.3777932508674e-05
+19 1.25747901620343e-05
+20 1.13232927105855e-05
+21 1.06085881270701e-05
+22 9.61471414484549e-06
+23 8.90052979229949e-06
+24 8.38582855067216e-06
+25 8.0247045843862e-06
+26 7.61234377932851e-06
+27 7.09771165929851e-06
+28 6.60388059259276e-06
+29 6.22276911599329e-06
+30 5.8726582210511e-06
+31 5.76917364014662e-06
+32 5.41083181815338e-06
+33 5.13942222823971e-06
+34 4.91010587211349e-06
+35 4.76633431389928e-06
+36 4.59175043943105e-06
+37 4.44994384452002e-06
+38 4.30648742621997e-06
+39 4.02484829464811e-06
+40 3.99292957808939e-06
+41 3.80715277970012e-06
+42 3.61667753168149e-06
+43 3.55559382114734e-06
+44 3.47812897416588e-06
+45 3.38399627253239e-06
+46 3.1780245990376e-06
+47 3.12838460558851e-06
+48 3.07097161567071e-06
+49 3.03201545648335e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000106738021713682
+1 1.96198761841515e-05
+2 2.59764033216925e-06
+3 1.62061314767925e-05
+4 1.0384032066213e-05
+5 3.56058480974752e-05
+6 7.47239610063843e-05
+7 0.000181716386578046
+8 8.29905984573998e-05
+9 5.04963390994817e-05
+10 4.23486926592886e-05
+11 3.42935927619692e-05
+12 2.8993172236369e-05
+13 2.60839915426914e-05
+14 1.95417906070361e-05
+15 2.24172890739283e-05
+16 1.57521753862966e-05
+17 1.33809226099402e-05
+18 1.24243597383611e-05
+19 1.0854312677111e-05
+20 1.22634546642075e-05
+21 9.3077933343011e-06
+22 1.05023036667262e-05
+23 1.02006661109044e-05
+24 8.94463937584078e-06
+25 6.99789552527363e-06
+26 7.14506677468307e-06
+27 6.06633602728834e-06
+28 7.52558707972639e-06
+29 6.92025378157268e-06
+30 6.85344139128574e-06
+31 4.96468419441953e-06
+32 5.43090891369502e-06
+33 5.4262814046524e-06
+34 5.46417822988587e-06
+35 4.65721996079083e-06
+36 4.35661195297143e-06
+37 3.87306499760598e-06
+38 3.67295842806925e-06
+39 4.43243334302679e-06
+40 3.40240444529627e-06
+41 3.55206066160463e-06
+42 4.04077945859171e-06
+43 3.48696266883053e-06
+44 3.18779211738729e-06
+45 3.34231958731834e-06
+46 3.70172642760735e-06
+47 3.30525222125289e-06
+48 3.01049226436589e-06
+49 2.83482836493931e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000139702358865179
+1 0.000141848329803906
+2 0.000139548064908013
+3 0.000137365888804197
+4 0.000136177215608768
+5 0.000135259906528518
+6 0.00014061137335375
+7 0.000131283595692366
+8 0.000142566655995324
+9 0.000142578937811777
+10 0.000137039416586049
+11 0.000140668635140173
+12 0.000141337208333425
+13 0.000139192372444086
+14 0.000136373957502656
+15 0.000139270254294388
+16 0.000138545801746659
+17 0.000137692739372142
+18 0.00013996752386447
+19 0.000139990370371379
+20 0.000134686924866401
+21 0.000136350179673173
+22 0.000142534583574161
+23 0.000138990071718581
+24 0.000139451542054303
+25 0.000139877723995596
+26 0.000139370880788192
+27 0.00014120181731414
+28 0.000142623408464715
+29 0.000141955082654022
+30 0.000140210468089208
+31 0.000139346986543387
+32 0.000190976687008515
+33 0.000139781477628276
+34 0.000141846598125994
+35 0.000139263458549976
+36 0.000141390730277635
+37 0.000140352465678006
+38 0.000138488307129592
+39 0.000140731310239062
+40 0.000138936506118625
+41 0.000138833333039656
+42 0.000140151474624872
+43 0.000141872704261914
+44 0.000137016104417853
+45 0.000139712952659465
+46 0.000138307936140336
+47 0.000139773721457459
+48 0.000139940588269383
+49 0.000140369797009043
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000137674229335971
+1 0.00011674256529659
+2 0.000139362338813953
+3 0.000154721608851105
+4 0.000168406972079538
+5 0.000177314199390821
+6 0.000125894352095202
+7 0.000213368373806588
+8 0.000110315762867685
+9 0.000108003318018746
+10 0.000159070754307322
+11 0.000128406783915125
+12 0.000121498924272601
+13 0.000139882366056554
+14 0.000166881756740622
+15 0.000142359305755235
+16 0.000146233636769466
+17 0.000152160340803675
+18 0.000133925510453992
+19 0.000133128138259053
+20 0.00018085322517436
+21 0.000163746881298721
+22 0.00011145714961458
+23 0.000142714052344672
+24 0.00013845284411218
+25 0.000136744725750759
+26 0.00013976295304019
+27 0.000120967677503359
+28 0.000108553445897996
+29 0.000115668612124864
+30 0.00013223102723714
+31 0.000138554183649831
+32 0.000103393300378229
+33 0.000136675298563205
+34 0.00011743630602723
+35 0.00014033132174518
+36 0.000120315118692815
+37 0.000134569505462423
+38 0.000149407860590145
+39 0.00012657702609431
+40 0.000144205259857699
+41 0.000146395177580416
+42 0.000130041895317845
+43 0.000116712348244619
+44 0.000159771530888975
+45 0.000133061621454544
+46 0.000153777073137462
+47 0.000137406110297889
+48 0.000133214620291255
+49 0.000128157174913213
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005959548877307823, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005959548877307823, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..fc1912383d868f916fbba4aadb13a631d2a49bd4
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005959548877307823, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005959548877307823, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005959548877307823, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..37afeaf20f093cc743ba3906effa43591ffa876d
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005959548877307823, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.3124306828083e-08, ymax=0.000251784210739892,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000124726764624938
+1 8.6466534412466e-06
+2 2.23490133066662e-06
+3 1.1500465006975e-06
+4 6.80309256040346e-07
+5 4.95039500947314e-07
+6 3.82628712713995e-07
+7 3.10247514789808e-07
+8 2.66715318275601e-07
+9 2.20496630731759e-07
+10 2.02084592615392e-07
+11 1.68529510347071e-07
+12 1.56958918751116e-07
+13 1.3942828047675e-07
+14 1.22349447906345e-07
+15 1.19430495715278e-07
+16 1.03766375048053e-07
+17 1.02762008680202e-07
+18 8.94672069762237e-08
+19 8.30985911193238e-08
+20 8.02950026468352e-08
+21 7.32553147031467e-08
+22 6.86638941260753e-08
+23 6.67889210603789e-08
+24 6.21872260353484e-08
+25 5.90177329229391e-08
+26 5.39688649325853e-08
+27 5.32128723307324e-08
+28 4.89304419204473e-08
+29 4.68774743467293e-08
+30 4.58346924858688e-08
+31 4.35523013209149e-08
+32 4.04209750115569e-08
+33 4.05513489454279e-08
+34 3.79492419710914e-08
+35 3.66301335930075e-08
+36 3.48347484191436e-08
+37 3.47143433998554e-08
+38 3.64424579402112e-08
+39 3.24723359312884e-08
+40 3.06555278939413e-08
+41 2.98431608314331e-08
+42 3.16542987377488e-08
+43 2.82057026623761e-08
+44 2.79322360796641e-08
+45 2.68741384701343e-08
+46 2.5280163740149e-08
+47 2.49249954009656e-08
+48 2.44624320799858e-08
+49 2.53962433305333e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000114519396447577
+1 9.97667939373059e-06
+2 3.05210937767697e-06
+3 1.02949968550092e-06
+4 7.68853340105125e-07
+5 5.75856233808736e-07
+6 4.09847160653953e-07
+7 2.83005931578373e-07
+8 2.41329502159715e-07
+9 2.14035168255577e-07
+10 1.52194658653571e-07
+11 1.62067010478495e-07
+12 1.83827708610806e-07
+13 1.34617422986594e-07
+14 1.80790266313124e-07
+15 9.11159716565635e-08
+16 1.13167288873228e-07
+17 8.51127737178103e-08
+18 9.65446460554631e-08
+19 1.40617245847352e-07
+20 7.22879960335376e-08
+21 9.73448663899035e-08
+22 9.31134351844776e-08
+23 5.66618858499623e-08
+24 9.14346784952613e-08
+25 6.89541721499154e-08
+26 5.38637117131202e-08
+27 4.71801939738725e-08
+28 4.80386823653589e-08
+29 4.47243557744059e-08
+30 4.14051690711403e-08
+31 4.5012388483201e-08
+32 4.38014460257818e-08
+33 3.81396105808562e-08
+34 3.64247192408129e-08
+35 3.24516982175282e-08
+36 3.62786884977595e-08
+37 3.23425517478881e-08
+38 2.62046881971401e-08
+39 3.02991800538166e-08
+40 3.47966313540837e-08
+41 3.0435455045108e-08
+42 3.69606425465463e-08
+43 2.95635000924221e-08
+44 2.46884503951605e-08
+45 2.65026365298127e-08
+46 2.72258464661945e-08
+47 2.22020535289857e-08
+48 2.72628941644371e-08
+49 2.0547359369516e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000122402649139985
+1 0.000124199548736215
+2 0.000122445810120553
+3 0.000126623985124752
+4 0.000125963138998486
+5 0.000123520818306133
+6 0.0001238863915205
+7 0.000123592981253751
+8 0.000122704237583093
+9 0.000126121318317018
+10 0.000120668119052425
+11 0.000125398713862523
+12 0.000124015437904745
+13 0.00012244944809936
+14 0.000124349418911152
+15 0.000125527716591023
+16 0.000125651640701108
+17 0.000123210935271345
+18 0.000122284749522805
+19 0.000126314436784014
+20 0.000122610537800938
+21 0.00012642155343201
+22 0.000123405756312422
+23 0.000126657207147218
+24 0.00011923085548915
+25 0.000123242978588678
+26 0.00012089225492673
+27 0.00012255588080734
+28 0.000124581449199468
+29 0.000123909703688696
+30 0.000125797669170424
+31 0.000125165985082276
+32 0.000125377220683731
+33 0.000123178062494844
+34 0.000123013611300848
+35 0.000122554731206037
+36 0.000123627411085181
+37 0.000121880024380516
+38 0.000125024642329663
+39 0.00012450639042072
+40 0.000123516205349006
+41 0.00012055264232913
+42 0.000124058613437228
+43 0.000126051760162227
+44 0.000124177735415287
+45 0.000122429788461886
+46 0.0001202875355375
+47 0.000123838486615568
+48 0.000124340629554354
+49 0.000125067090266384
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000132896529976279
+1 0.000118208678031806
+2 0.000133212568471208
+3 9.82389319688082e-05
+4 0.000103439459053334
+5 0.000122268247650936
+6 0.00011897983495146
+7 0.000123846330097876
+8 0.000129252279293723
+9 0.000100257529993542
+10 0.000148500941577367
+11 0.000106687191873789
+12 0.000120565251563676
+13 0.000132694898638874
+14 0.000116793264169246
+15 0.000106482140836306
+16 0.000103943937574513
+17 0.000124496058560908
+18 0.000132821878651157
+19 9.80363256530836e-05
+20 0.000135334092192352
+21 9.71185727394186e-05
+22 0.000123611345770769
+23 9.63829515967518e-05
+24 0.00016082325601019
+25 0.000128972562379204
+26 0.000149751707795076
+27 0.000131198074086569
+28 0.000117227318696678
+29 0.000120691991469357
+30 0.000103199017758016
+31 0.000120487668027636
+32 0.000109488632006105
+33 0.00012913990940433
+34 0.000127709849039093
+35 0.000130664935568348
+36 0.000123682417324744
+37 0.000136721966555342
+38 0.000111268185719382
+39 0.000113943453470711
+40 0.000127210063510574
+41 0.000149697647430003
+42 0.000119138952868525
+43 0.000101625759270974
+44 0.000119752883620095
+45 0.000138819435960613
+46 0.000154910172568634
+47 0.000121786026284099
+48 0.000116473238449544
+49 0.000110003551526461
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005966569313776744, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005966569313776744, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..4d7680b5e57ea52677b5efab9878026e3a79a476
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005966569313776744, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005966569313776744, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005966569313776744, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..23e5154741becfd6a4827ad96bf399a429314ce1
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005966569313776744, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.72622906621833e-08, ymax=0.000632370502729237,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000120819073345046
+1 3.29004033119418e-05
+2 7.56442204874475e-06
+3 3.02998864754045e-06
+4 1.89095499081304e-06
+5 1.45978640375688e-06
+6 1.09726136088284e-06
+7 8.78365426615346e-07
+8 7.48163301977911e-07
+9 6.09816936503194e-07
+10 5.32671833752829e-07
+11 4.68067867132049e-07
+12 4.18761288756286e-07
+13 3.82131730702895e-07
+14 3.40015617439349e-07
+15 3.10869666009239e-07
+16 2.87145496713492e-07
+17 2.59601819152522e-07
+18 2.44510033553524e-07
+19 2.28216137543313e-07
+20 2.17571226812652e-07
+21 1.98317181343555e-07
+22 1.88308902693279e-07
+23 1.76697284359761e-07
+24 1.68046796034105e-07
+25 1.59563441570754e-07
+26 1.52455100987936e-07
+27 1.49031549767642e-07
+28 1.38957418016616e-07
+29 1.33338673435901e-07
+30 1.26625323559892e-07
+31 1.22101127431051e-07
+32 1.12781684435959e-07
+33 1.5189405644378e-07
+34 1.10315525603255e-07
+35 1.07194779275233e-07
+36 9.71070619470993e-08
+37 1.06480186445879e-07
+38 9.48820044754939e-08
+39 8.93428833137477e-08
+40 8.82102142440999e-08
+41 8.89933033931811e-08
+42 8.21712973220201e-08
+43 7.77589406197876e-08
+44 7.55290017195875e-08
+45 8.04561750555877e-08
+46 7.3655634480474e-08
+47 7.29303692992289e-08
+48 7.13266317120542e-08
+49 6.58070433701141e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000126969127450138
+1 6.04744127485901e-05
+2 5.27488464285852e-06
+3 3.41710551765573e-06
+4 1.97503936760768e-06
+5 1.25568521980313e-06
+6 9.45449755818117e-07
+7 8.59434237554524e-07
+8 7.04679621321702e-07
+9 6.98010694577533e-07
+10 5.25475741142145e-07
+11 4.43785580728218e-07
+12 3.66125561868103e-07
+13 3.44534186069723e-07
+14 3.35467206014073e-07
+15 4.54101069635726e-07
+16 2.98787597330374e-07
+17 3.25034818615677e-07
+18 2.49455695211509e-07
+19 2.27969394472893e-07
+20 1.76520686068216e-07
+21 2.02797949100386e-07
+22 1.73010377579885e-07
+23 1.76238998506051e-07
+24 1.78205382894703e-07
+25 1.7833626486663e-07
+26 1.61362763151374e-07
+27 1.07237113411429e-07
+28 1.24729382378064e-07
+29 1.46711258253163e-07
+30 1.38337540533939e-07
+31 1.21678596087804e-07
+32 1.31827505356341e-07
+33 1.10833141775402e-07
+34 1.11331154073468e-07
+35 7.6656476721837e-08
+36 1.34306318955169e-07
+37 9.86736523600484e-08
+38 7.22988175994033e-08
+39 1.13890585851095e-07
+40 7.38715257853073e-08
+41 8.33632540775398e-08
+42 1.10014120480173e-07
+43 7.89433940440176e-08
+44 8.23987917897284e-08
+45 6.64596768729098e-08
+46 7.67075718499655e-08
+47 7.56184235228829e-08
+48 5.80134553729295e-08
+49 7.24985724787075e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000120783224701881
+1 0.000118573756481055
+2 0.000119419484690297
+3 0.000122391022159718
+4 0.00012075986887794
+5 0.000120640856039245
+6 0.000120951932331081
+7 0.000121279539598618
+8 0.000122621597256511
+9 0.000123373189126141
+10 0.000121226992632728
+11 0.000119776064821053
+12 0.000120511416753288
+13 0.000121534474601503
+14 0.00012080573651474
+15 0.000123039659229107
+16 0.000124570899060927
+17 0.000120419455925003
+18 0.000119989512313623
+19 0.000119439639092889
+20 0.000121963588753715
+21 0.00012110079114791
+22 0.000120037671877071
+23 0.000121811317512766
+24 0.000121919096272904
+25 0.000406174280215055
+26 0.00012120640167268
+27 0.000119355900096707
+28 0.00012142780906288
+29 0.000120302698633168
+30 0.000121342767670285
+31 0.0001205124790431
+32 0.00012205631355755
+33 0.000121447788842488
+34 0.000121837772894651
+35 0.000123081044876017
+36 0.000122835961519741
+37 0.00011740891932277
+38 0.000122345285490155
+39 0.000121892124298029
+40 0.000119179821922444
+41 0.000118538591777906
+42 0.000120569231512491
+43 0.000122091718367301
+44 0.000120232412882615
+45 0.000120976466860157
+46 0.000121268072689418
+47 0.000121410732390359
+48 0.00012240296928212
+49 0.000119964286568575
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000124376732856035
+1 0.000148021077620797
+2 0.00014172843657434
+3 0.000112395551695954
+4 0.000125637467135675
+5 0.000128725412650965
+6 0.000127914201584645
+7 0.0001208090907312
+8 0.000110634129669052
+9 0.000103961094282568
+10 0.000124173893709667
+11 0.000132669913000427
+12 0.000130742715555243
+13 0.000121145938464906
+14 0.000125232632854022
+15 0.000106597981357481
+16 9.17584548005834e-05
+17 0.000129383159219287
+18 0.000133887078845873
+19 0.000139215146191418
+20 0.000115804221422877
+21 0.000122270474093966
+22 0.000134404050186276
+23 0.000117945768579375
+24 0.00011631320376182
+25 0.000125373597256839
+26 0.000123237769003026
+27 0.000142601231345907
+28 0.000122838275274262
+29 0.000129543623188511
+30 0.000119529839139432
+31 0.000130238040583208
+32 0.000113390618935227
+33 0.000124025347759016
+34 0.000119100768642966
+35 0.000105914252344519
+36 0.000107104213384446
+37 0.000160020616021939
+38 0.000110875167592894
+39 0.000115182345325593
+40 0.000141647455166094
+41 0.000147982646012679
+42 0.000127977604279295
+43 0.000114889604446944
+44 0.000131092572701164
+45 0.00012468991917558
+46 0.00012228760169819
+47 0.000120783159218263
+48 0.000112926667497959
+49 0.000134404559503309
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0059769491705809145, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0059769491705809145, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..8c2d824f88dcb1e944a9b120b5616090f843898f
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0059769491705809145, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0059769491705809145, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0059769491705809145, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..34ed468a4b0784eb8a4094ff35e8dcda654513dc
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0059769491705809145, Learning_Process.tex	
@@ -0,0 +1,263 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.12532715486732e-07, ymax=0.00025979450557435,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000139699201099575
+1 2.07806660910137e-05
+2 1.19307878776453e-05
+3 6.36472850601422e-06
+4 4.2669498725445e-06
+5 3.27098928210035e-06
+6 2.54762426266097e-06
+7 2.05848800760577e-06
+8 1.76925516370829e-06
+9 1.53522194068501e-06
+10 1.32622244564118e-06
+11 1.16054604859528e-06
+12 1.0385016366854e-06
+13 9.78384377958719e-07
+14 8.59240742556722e-07
+15 7.91372940511792e-07
+16 7.22736274383351e-07
+17 6.72625617426093e-07
+18 6.12891199125443e-07
+19 5.85417069487448e-07
+20 5.42936504643876e-07
+21 5.34070466073899e-07
+22 4.75321542126039e-07
+23 4.78523304536793e-07
+24 4.3637160729304e-07
+25 4.25525655600723e-07
+26 3.87691272862867e-07
+27 3.67834275039058e-07
+28 3.52551722926364e-07
+29 3.19181367558485e-07
+30 3.05112024534537e-07
+31 2.98989164093655e-07
+32 2.96436894586805e-07
+33 2.7834411753247e-07
+34 2.6812000442078e-07
+35 2.6962541710418e-07
+36 2.52805705258652e-07
+37 2.44353827838495e-07
+38 2.39433973092673e-07
+39 2.27257885399013e-07
+40 2.32748931239257e-07
+41 5.75719354856119e-07
+42 1.97901115939203e-07
+43 2.00165260366703e-07
+44 1.93379946722416e-07
+45 1.86460766826713e-07
+46 1.754531382403e-07
+47 1.72094814843149e-07
+48 1.65343621461034e-07
+49 1.66358844921888e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000176385816303082
+1 1.98545731109334e-05
+2 1.24971529658069e-05
+3 6.26490373178967e-06
+4 4.70754048365052e-06
+5 3.14089061248524e-06
+6 3.08864559883659e-06
+7 2.28090289056126e-06
+8 1.83316558377555e-06
+9 1.66889117281244e-06
+10 1.49888410305721e-06
+11 1.36628625568846e-06
+12 1.04577964066266e-06
+13 8.5649293168899e-07
+14 9.87000589702802e-07
+15 8.66919549480372e-07
+16 7.27178928627836e-07
+17 6.18146259512287e-07
+18 7.45817885672295e-07
+19 5.80471009925532e-07
+20 5.77284197333938e-07
+21 5.37626817731507e-07
+22 5.36369896053657e-07
+23 4.01255960014169e-07
+24 4.40920615574214e-07
+25 3.51348120375405e-07
+26 3.97622528680586e-07
+27 3.95438519262825e-07
+28 3.43526693313834e-07
+29 3.982744658515e-07
+30 3.10312543660984e-07
+31 2.93397988571087e-07
+32 2.91387237894014e-07
+33 3.19508643542576e-07
+34 2.59169382843538e-07
+35 2.39690251646607e-07
+36 2.61023330949683e-07
+37 2.58801634345218e-07
+38 2.33894112966482e-07
+39 2.36435980127681e-07
+40 2.35385911651065e-07
+41 1.96624256432187e-07
+42 2.15721044583006e-07
+43 1.9329270628532e-07
+44 1.73595651631331e-07
+45 1.60014153038901e-07
+46 1.78305256781641e-07
+47 2.00192388888354e-07
+48 1.85716501732713e-07
+49 1.76273061924803e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000142412682180293
+1 0.000141836702823639
+2 0.000141554715810344
+3 0.000141213997267187
+4 0.000145198486279696
+5 0.000147205428220332
+6 0.0001482035004301
+7 0.000139875861350447
+8 0.000143697921885177
+9 0.000146768914419226
+10 0.000139078547363169
+11 0.000141598633490503
+12 0.000143242534250021
+13 0.000143054756335914
+14 0.00014502192789223
+15 0.00014255748828873
+16 0.000139434618176892
+17 0.000144379926496185
+18 0.000141899727168493
+19 0.000145796235301532
+20 0.000144243618706241
+21 0.000146779915667139
+22 0.000144975594594143
+23 0.000143411176395603
+24 0.000144623933010735
+25 0.000143282130011357
+26 0.00014416515477933
+27 0.000142742675961927
+28 0.00014205850311555
+29 0.000140276446472853
+30 0.000144009492942132
+31 0.000142604170832783
+32 0.000143521363497712
+33 0.000142834353027865
+34 0.000142007804242894
+35 0.000146512902574614
+36 0.000143062105053104
+37 0.00014495212235488
+38 0.000145138168591075
+39 0.000143075754749589
+40 0.000141838958370499
+41 0.000138974457513541
+42 0.000141833312227391
+43 0.000144979159813374
+44 0.000143005003337748
+45 0.000142910212161951
+46 0.000145425728987902
+47 0.000139687574119307
+48 0.000142605684231967
+49 0.000142402102937922
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000157386093633249
+1 0.000163977107149549
+2 0.000162224954692647
+3 0.000163575212354772
+4 0.000130145257571712
+5 0.000110588458483107
+6 0.000102044738014229
+7 0.00017732143169269
+8 0.000144061225000769
+9 0.000113895839604083
+10 0.000182358387974091
+11 0.000160157112986781
+12 0.000145324185723439
+13 0.000147420301800594
+14 0.000131057095131837
+15 0.000156365364091471
+16 0.000180354589247145
+17 0.000136251808726229
+18 0.000157672868226655
+19 0.000125139427836984
+20 0.000137460010591894
+21 0.000113103444164153
+22 0.000128638610476628
+23 0.000144655612530187
+24 0.000139489420689642
+25 0.000146438600495458
+26 0.000138309187605046
+27 0.000148491002619267
+28 0.000156573834829032
+29 0.000176069705048576
+30 0.00014061076217331
+31 0.000152349181007594
+32 0.00014467460277956
+33 0.000152526568854228
+34 0.000156295180204324
+35 0.000116858856927138
+36 0.000147728293086402
+37 0.000130685439216904
+38 0.000128482817672193
+39 0.000146810139995068
+40 0.000158993338118307
+41 0.000182704970939085
+42 0.000161257717991248
+43 0.000132017521536909
+44 0.000148898252518848
+45 0.000150664403918199
+46 0.000127680090372451
+47 0.000178349364432506
+48 0.000153913220856339
+49 0.000151416912558489
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005988791605504388, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005988791605504388, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..1050e1db39681b9dbb25f22da70be2b3f2c484d8
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005988791605504388, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005988791605504388, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005988791605504388, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..874374aa87e5e210ceed9cd296024c0ea68b60c7
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005988791605504388, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.21663351303558e-08, ymax=0.000271637943420477,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00013307602785062
+1 1.20180275189341e-05
+2 3.97909843741218e-06
+3 1.92112179320247e-06
+4 1.12697000531625e-06
+5 7.9574408573535e-07
+6 5.97829284743057e-07
+7 4.8296635668521e-07
+8 4.0030533909885e-07
+9 3.56800427425696e-07
+10 2.76292894341168e-07
+11 2.45635817464063e-07
+12 2.27203500458018e-07
+13 2.02367502311063e-07
+14 1.84228539978903e-07
+15 1.57046287085905e-07
+16 1.4893009847583e-07
+17 1.4041549434296e-07
+18 1.31126142832727e-07
+19 1.18668182835791e-07
+20 1.16637728808655e-07
+21 1.07329782395027e-07
+22 9.67878648339138e-08
+23 1.01023729826011e-07
+24 8.80167974059987e-08
+25 8.30130275630836e-08
+26 7.85113627443934e-08
+27 7.31314671043037e-08
+28 6.96655746423858e-08
+29 6.75333780009169e-08
+30 6.42779625081857e-08
+31 6.43240340991724e-08
+32 6.02625362944309e-08
+33 5.70934055588168e-08
+34 5.26186951788077e-08
+35 5.38105702219127e-08
+36 4.96957888174165e-08
+37 4.86758438000834e-08
+38 4.77137191978727e-08
+39 4.46495214134757e-08
+40 4.64873828320833e-08
+41 4.29682351921201e-08
+42 4.08399323248432e-08
+43 3.9371506943553e-08
+44 3.95978148048926e-08
+45 3.77467053169767e-08
+46 3.58240157538603e-08
+47 3.49837705471145e-08
+48 3.48264670435583e-08
+49 3.56783580457432e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000160499577759765
+1 9.83472727966728e-06
+2 3.7677600630559e-06
+3 1.57342060447263e-06
+4 1.05780475223582e-06
+5 6.23172866198729e-07
+6 6.86196756305435e-07
+7 5.71286420836259e-07
+8 4.00962392177462e-07
+9 2.72902951792275e-07
+10 4.25739756337862e-07
+11 3.41356241051471e-07
+12 2.2074235062064e-07
+13 1.8439610016685e-07
+14 1.82333380394084e-07
+15 2.1226765056781e-07
+16 1.63709529488187e-07
+17 1.63403214514801e-07
+18 1.5550315879409e-07
+19 1.43839613997443e-07
+20 7.9387966422928e-08
+21 9.84238326395825e-08
+22 1.1390581988735e-07
+23 8.22668937416893e-08
+24 9.69067954770253e-08
+25 7.77915047933675e-08
+26 6.02280820771739e-08
+27 7.55765938720288e-08
+28 7.03205600416368e-08
+29 5.62085702426884e-08
+30 7.08313763198021e-08
+31 4.88233524720272e-08
+32 5.82991965814017e-08
+33 6.37212664855724e-08
+34 5.8244719269851e-08
+35 4.93489942243741e-08
+36 4.96177214870386e-08
+37 4.43758452206566e-08
+38 5.5007586041711e-08
+39 4.2925542231842e-08
+40 3.67075436713549e-08
+41 4.2510187370226e-08
+42 4.30737436829531e-08
+43 4.29433981707916e-08
+44 4.33856222059603e-08
+45 3.73671760200978e-08
+46 4.16073469011735e-08
+47 3.86474106051082e-08
+48 3.4941049165127e-08
+49 3.40036514501207e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000136220682179555
+1 0.000130950065795332
+2 0.00013759067223873
+3 0.00013747563934885
+4 0.000137745344545692
+5 0.00013597916404251
+6 0.000133565394207835
+7 0.000136455069878139
+8 0.000136888775159605
+9 0.000137492606882006
+10 0.000137260460178368
+11 0.000134964968310669
+12 0.00013510872668121
+13 0.0001363311894238
+14 0.000134623347548768
+15 0.000134644957142882
+16 0.000136826100060716
+17 0.000135466805659235
+18 0.000134581830934621
+19 0.000131773689645343
+20 0.000132079963805154
+21 0.000136475282488391
+22 0.000135791473439895
+23 0.000133951340103522
+24 0.000136373826535419
+25 0.000134828500449657
+26 0.000137183902552351
+27 0.000134433546918444
+28 0.000131311317090876
+29 0.000133828973048367
+30 0.000136624512379058
+31 0.000131993423565291
+32 0.000132550034322776
+33 0.000132514396682382
+34 0.000135106136440299
+35 0.000133148278109729
+36 0.000131152890389785
+37 0.000138373390655033
+38 0.000134673260618001
+39 0.000131642853375524
+40 0.000138487463118508
+41 0.00013576059427578
+42 0.000137644412461668
+43 0.000135813534143381
+44 0.000132638233480975
+45 0.000133901325170882
+46 0.000135510112158954
+47 0.000131562148453668
+48 0.000138393705128692
+49 0.000135624082759023
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000132250876049511
+1 0.000177075620740652
+2 0.000119866570457816
+3 0.000122495766845532
+4 0.000118607822514605
+5 0.000131200489704497
+6 0.000160493174917065
+7 0.000129010732052848
+8 0.000126429717056453
+9 0.000115348855615593
+10 0.000121022392704617
+11 0.000140949690830894
+12 0.000143326687975787
+13 0.000128210158436559
+14 0.000143424476846121
+15 0.000144033154356293
+16 0.000122781479149126
+17 0.000139160270919092
+18 0.000144276767969131
+19 0.000168096492416225
+20 0.000167131933267228
+21 0.000126559199998155
+22 0.000131232620333321
+23 0.000148936873301864
+24 0.000132667468278669
+25 0.000142920325743034
+26 0.000121656339615583
+27 0.000143971396028064
+28 0.000170944244018756
+29 0.000154682886204682
+30 0.000126878076116554
+31 0.000168478538398631
+32 0.000163465301739052
+33 0.000161016287165694
+34 0.000138994393637404
+35 0.000157157148350962
+36 0.000173951819306239
+37 0.000148845443618484
+38 0.000144616220495664
+39 0.000171562118339352
+40 0.00010820799798239
+41 0.0001340206945315
+42 0.000119133772386704
+43 0.00013093210873194
+44 0.000160282332217321
+45 0.000152806445839815
+46 0.000137174953124486
+47 0.000169783786986955
+48 0.000110234075691551
+49 0.000133250359795056
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005999760224327729, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005999760224327729, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..38759f59c5e2a792ac6f8d627cea214f6b5c791f
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005999760224327729, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005999760224327729, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005999760224327729, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..607eb958a024aa6e395f8bf5b9e65ef026b9cfa3
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.005999760224327729, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.48963649881492e-08, ymax=0.000255376529474673,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000124985788716003
+1 1.73338266904466e-05
+2 2.80261770058132e-06
+3 1.42770329603081e-06
+4 8.89740874754352e-07
+5 6.27151564458472e-07
+6 4.7236355271707e-07
+7 3.63902387334747e-07
+8 2.94196269123859e-07
+9 2.54442284131073e-07
+10 2.21064013317118e-07
+11 1.86345829433776e-07
+12 1.68473548001202e-07
+13 1.45972109066861e-07
+14 1.31849759554825e-07
+15 1.23500342397165e-07
+16 1.13804020429598e-07
+17 1.10013075982351e-07
+18 9.54231538230488e-08
+19 8.9114685408731e-08
+20 8.30486683867093e-08
+21 7.69777059872467e-08
+22 7.05219065366691e-08
+23 6.68547883719839e-08
+24 6.4405512034682e-08
+25 6.24194527176769e-08
+26 5.81375410035889e-08
+27 5.67807170170909e-08
+28 5.22974232808338e-08
+29 4.91023683935055e-08
+30 4.79985793333526e-08
+31 4.57635849215876e-08
+32 4.34232561019599e-08
+33 4.20702370718118e-08
+34 4.15571079770416e-08
+35 3.92766921208931e-08
+36 3.81258722370603e-08
+37 3.61076537558347e-08
+38 3.57341249923593e-08
+39 3.31548477561228e-08
+40 3.11723624690785e-08
+41 2.96558582135731e-08
+42 2.91461859092124e-08
+43 2.80305769706501e-08
+44 2.86028303264629e-08
+45 2.70457380935341e-08
+46 2.68770818934172e-08
+47 2.67210680249264e-08
+48 2.47498022076797e-08
+49 2.52843879167131e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000131000400870107
+1 1.9285957023385e-05
+2 3.60881540473201e-06
+3 1.53533881075418e-06
+4 9.86047211881669e-07
+5 8.89416696736589e-07
+6 4.22915320541506e-07
+7 3.56130811951516e-07
+8 4.04617878757563e-07
+9 2.44113749658936e-07
+10 1.99272264467254e-07
+11 1.65792386042085e-07
+12 1.47926002114218e-07
+13 1.4412893278859e-07
+14 1.57712136683585e-07
+15 1.16660615390174e-07
+16 1.10692603527696e-07
+17 8.15590723846071e-08
+18 8.22387775656352e-08
+19 7.18601356197723e-08
+20 6.99739288734236e-08
+21 8.29236981303438e-08
+22 8.47225720690403e-08
+23 7.57822391506124e-08
+24 7.40448555802686e-08
+25 5.33288577742042e-08
+26 6.09851653621263e-08
+27 6.40227355575007e-08
+28 5.20468184106448e-08
+29 5.27948600392847e-08
+30 5.43799743013551e-08
+31 4.9523766421089e-08
+32 4.49115447054282e-08
+33 3.7065468916353e-08
+34 5.25098577952576e-08
+35 4.42702621228364e-08
+36 3.79855009668972e-08
+37 3.77377737947882e-08
+38 2.41694788627456e-08
+39 3.30899858624889e-08
+40 3.40000951837283e-08
+41 3.0299883491125e-08
+42 3.62629428707351e-08
+43 3.36431824621286e-08
+44 2.33692087903137e-08
+45 3.25362847775068e-08
+46 3.3250366016091e-08
+47 2.32027481672503e-08
+48 3.19466622045184e-08
+49 2.41605899731212e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000124664278700948
+1 0.00012625205272343
+2 0.000124629921629094
+3 0.000124992991914041
+4 0.000126353261293843
+5 0.000125769598525949
+6 0.000124871468869969
+7 0.000123357094707899
+8 0.00012625553063117
+9 0.000127773178974167
+10 0.000127392675494775
+11 0.000125052654766478
+12 0.000124108322779648
+13 0.000124469675938599
+14 0.000125808903248981
+15 0.000126598737551831
+16 0.000125349848531187
+17 0.000127279694424942
+18 0.000124492915347219
+19 0.000125322316307575
+20 0.000125624443171546
+21 0.000125647464301437
+22 0.000121584576845635
+23 0.000127184903249145
+24 0.000122325349366292
+25 0.000125057151308283
+26 0.000127064864500426
+27 0.000126763276057318
+28 0.00012466027692426
+29 0.000126933096908033
+30 0.000127919876831584
+31 0.000122394718346186
+32 0.000126544124213979
+33 0.000124291123938747
+34 0.000127134611830115
+35 0.000126987331896089
+36 0.000125760212540627
+37 0.000127272971440107
+38 0.00012512099056039
+39 0.000123364952742122
+40 0.000126496976008639
+41 0.000122474113595672
+42 0.000127594801597297
+43 0.000127468039863743
+44 0.000125696155009791
+45 0.000125946666230448
+46 0.000126781756989658
+47 0.000125644903164357
+48 0.000123083111247979
+49 0.000124272162793204
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000135657319333404
+1 0.000120508302643429
+2 0.000133460969664156
+3 0.000129521475173533
+4 0.000121485725685488
+5 0.000125920472783037
+6 0.000133914509206079
+7 0.000147623373777606
+8 0.000121751800179482
+9 0.000106201987364329
+10 0.000111795576231088
+11 0.000132433880935423
+12 0.000140965785249136
+13 0.000136449976707809
+14 0.000121994213259313
+15 0.000118816846224945
+16 0.000129508931422606
+17 0.000110846413008403
+18 0.000137205744977109
+19 0.000129340551211499
+20 0.00012499802687671
+21 0.000126459199236706
+22 0.000163953940500505
+23 0.000111862413177732
+24 0.000156158741447143
+25 0.00013215298531577
+26 0.000113113834231626
+27 0.000114927963295486
+28 0.000134376212372445
+29 0.00011532916687429
+30 0.000106545885500964
+31 0.000154201683471911
+32 0.000115606329927687
+33 0.00013681550626643
+34 0.000110925364424475
+35 0.000114620408567134
+36 0.000125099191791378
+37 0.000110173881694209
+38 0.000130977685330436
+39 0.000148117105709389
+40 0.000119890857604332
+41 0.000155183050082996
+42 0.000107777923403773
+43 0.000110585264337715
+44 0.000125149279483594
+45 0.000121101205877494
+46 0.000115104834549129
+47 0.000125296457554214
+48 0.000150791820487939
+49 0.000138141593197361
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0060030712567845776, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0060030712567845776, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..caf6089e7aec364230743b5d3167696b2d167dee
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0060030712567845776, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0060030712567845776, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0060030712567845776, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..4bb37d69b50dc2ac35c7ac8d12a988bc017c1096
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0060030712567845776, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.44010372991731e-08, ymax=0.000246898055757707,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000128881933051161
+1 1.48647313835681e-05
+2 3.74267187908117e-06
+3 1.63298102506815e-06
+4 1.01802379504079e-06
+5 6.72643750476709e-07
+6 5.04921047195239e-07
+7 3.93621604644068e-07
+8 3.34290575665364e-07
+9 2.76262682064043e-07
+10 2.35154516303737e-07
+11 2.09557612151912e-07
+12 1.80571973373844e-07
+13 1.60517245717529e-07
+14 1.4959250904667e-07
+15 1.34588631794941e-07
+16 2.32766424801412e-07
+17 1.16650618053882e-07
+18 1.08264188725116e-07
+19 9.82455432563256e-08
+20 9.21259939445918e-08
+21 8.47522798608225e-08
+22 8.04708832902179e-08
+23 7.86709790645546e-08
+24 7.14117618372256e-08
+25 6.89845265355871e-08
+26 6.28110115030722e-08
+27 5.94351021732109e-08
+28 5.77310359517469e-08
+29 5.42628519895061e-08
+30 5.28845909286701e-08
+31 5.30542187959782e-08
+32 4.65723246634298e-08
+33 4.58474538334031e-08
+34 4.42143495149594e-08
+35 4.24917949715109e-08
+36 4.17842507260957e-08
+37 3.94739494424812e-08
+38 9.46408604818316e-08
+39 3.66802765938701e-08
+40 3.78001416834195e-08
+41 3.62088847793984e-08
+42 3.35153309549696e-08
+43 3.27210685213686e-08
+44 3.22325348633967e-08
+45 3.03615621533027e-08
+46 3.29052021186271e-08
+47 2.94789010979457e-08
+48 2.8553410302834e-08
+49 2.86802563920219e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000120599310321268
+1 7.5894090514339e-06
+2 3.5599209695647e-06
+3 1.60233719270764e-06
+4 8.81136656971648e-07
+5 6.39389725165529e-07
+6 5.20564753969666e-07
+7 4.66535311716143e-07
+8 2.88841334850076e-07
+9 3.10434643324697e-07
+10 2.71348312708142e-07
+11 2.16825725374292e-07
+12 2.12990855175121e-07
+13 2.02313373165453e-07
+14 1.5848083023684e-07
+15 1.48881596828687e-07
+16 1.22425873883003e-07
+17 8.77598864690299e-08
+18 8.24793247033995e-08
+19 1.06162978852353e-07
+20 8.59512354622893e-08
+21 8.05219428912096e-08
+22 7.75117356965893e-08
+23 7.4810124317537e-08
+24 6.85604319983213e-08
+25 5.52918777430023e-08
+26 5.79059999950005e-08
+27 6.41168682591342e-08
+28 5.45503056059715e-08
+29 5.30087866934537e-08
+30 5.10345117277211e-08
+31 4.46708448009758e-08
+32 4.87034874652181e-08
+33 4.60770586130366e-08
+34 4.09131821754727e-08
+35 4.11137470734957e-08
+36 4.33534133037483e-08
+37 4.28133439811518e-08
+38 3.96520825063362e-08
+39 3.80536100408335e-08
+40 3.37353824875208e-08
+41 3.39941230720342e-08
+42 3.57000686790343e-08
+43 3.1290994684241e-08
+44 2.8114508054955e-08
+45 3.29895009087977e-08
+46 2.84595511601538e-08
+47 2.89421446808547e-08
+48 2.63053845372951e-08
+49 2.2431274615542e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000129911786643788
+1 0.000127886174595915
+2 0.000130292668472975
+3 0.000130094515043311
+4 0.000128542640595697
+5 0.000128842671983875
+6 0.00012768131273333
+7 0.000126908751553856
+8 0.0001272126683034
+9 0.000128339466755278
+10 0.000131305045215413
+11 0.000128033134387806
+12 0.000129596417536959
+13 0.000127278501167893
+14 0.000128417566884309
+15 0.000127920691738836
+16 0.000124892350868322
+17 0.000129426771309227
+18 0.00012789225729648
+19 0.000129689884488471
+20 0.000126768078189343
+21 0.000126148719573393
+22 0.000128347965073772
+23 0.000126854181871749
+24 0.000130546861328185
+25 0.00012790500477422
+26 0.000129139778437093
+27 0.000129068561363965
+28 0.000127498919027857
+29 0.000128022133139893
+30 0.000127309569506906
+31 0.000130110594909638
+32 0.000129236999782734
+33 0.000130430780700408
+34 0.000128316052723676
+35 0.000125139937154017
+36 0.000128453481011093
+37 0.000129719890537672
+38 0.000127253180835396
+39 0.000125309335999191
+40 0.000128698971820995
+41 0.000127159772091545
+42 0.000126930433907546
+43 0.000130165295558982
+44 0.000129799489513971
+45 0.000128815008793026
+46 0.000129140258650295
+47 0.000129254200146534
+48 0.000126093873404898
+49 0.000130451720906422
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000113003494334407
+1 0.000131726221297868
+2 0.000109392385638785
+3 0.000110985340143088
+4 0.000125796563224867
+5 0.00012163524661446
+6 0.000132607863633893
+7 0.000140870572067797
+8 0.000135601148940623
+9 0.000126903629279695
+10 0.00010027305688709
+11 0.000128179788589478
+12 0.000115420043584891
+13 0.000135559792397544
+14 0.000125748294522054
+15 0.000130565284052864
+16 0.000158510301844217
+17 0.000116595489089377
+18 0.000133505920530297
+19 0.00011634668771876
+20 0.000142812074045651
+21 0.000147864935570396
+22 0.000127434133901261
+23 0.000140840915264562
+24 0.000109161497675814
+25 0.00013038631004747
+26 0.000120059194159694
+27 0.000121298107842449
+28 0.00013423954078462
+29 0.000129898224258795
+30 0.00013727112673223
+31 0.000108577580249403
+32 0.000117501200293191
+33 0.000107530715467874
+34 0.000126445782370865
+35 0.000155584566527978
+36 0.000124449303257279
+37 0.000115516035293695
+38 0.000137533686938696
+39 0.000154821333126165
+40 0.000122637022286654
+41 0.000136494491016492
+42 0.00013899034820497
+43 0.000109161715954542
+44 0.000115930488391314
+45 0.000123662131954916
+46 0.000120368531497661
+47 0.000119933349196799
+48 0.000146125355968252
+49 0.000107843094156124
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006004858202343638, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006004858202343638, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..9ad48a96f6e6e8609bbf98b31e7877580b0fce18
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006004858202343638, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006004858202343638, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006004858202343638, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..865b60e9fc2cf67219e3a3589bc12037c071e9e1
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006004858202343638, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=4.26529689533338e-08, ymax=0.000320484277856088,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00016657667583786
+1 1.68749793374445e-05
+2 6.35022433925769e-06
+3 3.80663368559908e-06
+4 2.43149042944424e-06
+5 1.82754729394219e-06
+6 1.41858060942468e-06
+7 1.08760957573395e-06
+8 9.36818594254873e-07
+9 7.96882147824363e-07
+10 7.1144592084238e-07
+11 6.08320931405615e-07
+12 5.34158118625783e-07
+13 4.89231524625211e-07
+14 4.29310802019245e-07
+15 4.04266330633618e-07
+16 3.5198411296733e-07
+17 3.34139912183673e-07
+18 3.12931945245509e-07
+19 2.85033252112044e-07
+20 2.48610746211853e-07
+21 2.43493587959165e-07
+22 2.29222195002876e-07
+23 2.21698698510409e-07
+24 2.11809478400937e-07
+25 1.93546014770618e-07
+26 1.79211852469052e-07
+27 1.73484565380022e-07
+28 1.68555786217439e-07
+29 1.58062121613511e-07
+30 1.47557003060683e-07
+31 1.41690321697752e-07
+32 1.32196646518423e-07
+33 1.38049458087153e-07
+34 1.29665423287406e-07
+35 1.14588956989792e-07
+36 1.28331265614179e-07
+37 1.07488432377068e-07
+38 1.18106321167488e-07
+39 1.02067247098603e-07
+40 1.01927334128504e-07
+41 1.02597979889651e-07
+42 9.58336627832068e-08
+43 9.37204873707742e-08
+44 8.82939517055092e-08
+45 8.28536244057432e-08
+46 8.01179425025111e-08
+47 7.99676556084705e-08
+48 7.87128442425455e-08
+49 7.43447685636056e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000117922507342882
+1 1.94312451640144e-05
+2 5.17020407642121e-06
+3 3.16879390993563e-06
+4 2.68647136181244e-06
+5 1.59623311901669e-06
+6 1.14019951524824e-06
+7 1.32105333250365e-06
+8 9.10811309040582e-07
+9 8.3615299217854e-07
+10 7.37036145892489e-07
+11 5.78852166199795e-07
+12 4.36347193044639e-07
+13 5.18464901233529e-07
+14 5.23030166732497e-07
+15 3.69838687674928e-07
+16 3.70541272332048e-07
+17 2.53585909604226e-07
+18 2.64037538499906e-07
+19 2.65871989313382e-07
+20 3.57861125621639e-07
+21 2.60441083810292e-07
+22 2.59263458701753e-07
+23 1.93074725984843e-07
+24 2.11205318123575e-07
+25 2.01653080011965e-07
+26 1.8271781243584e-07
+27 1.87678779184353e-07
+28 1.47513148363032e-07
+29 1.60876609811567e-07
+30 1.3057561432106e-07
+31 1.53946970726793e-07
+32 1.27177699482672e-07
+33 1.26187728710647e-07
+34 1.31827832206e-07
+35 1.42580006468052e-07
+36 1.24797224998474e-07
+37 1.27297184349118e-07
+38 8.58142286119801e-08
+39 1.04729906524881e-07
+40 8.79139960829889e-08
+41 9.6748784983447e-08
+42 8.77703243418182e-08
+43 8.02002588784489e-08
+44 9.12269726427439e-08
+45 8.63173781340265e-08
+46 8.68113119167901e-08
+47 7.98293413595275e-08
+48 6.39918411593499e-08
+49 8.42413143686827e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000164061100804247
+1 0.000163550226716325
+2 0.000162380703841336
+3 0.000160752751980908
+4 0.000160970288561657
+5 0.000160848023369908
+6 0.000162059979629703
+7 0.000161273754201829
+8 0.000158584676682949
+9 0.00016310736828018
+10 0.000163140080985613
+11 0.000163539662025869
+12 0.000162091135280207
+13 0.000164919270901009
+14 0.000162932279636152
+15 0.00016362828318961
+16 0.000159776071086526
+17 0.000161338044563308
+18 0.0001640167174628
+19 0.000161153191584162
+20 0.000162800584803335
+21 0.00016081468493212
+22 0.000163538876222447
+23 0.000164153869263828
+24 0.000163865348440595
+25 0.000162895827088505
+26 0.000159350005560555
+27 0.000155494286445901
+28 0.000159042159793898
+29 0.00016014018910937
+30 0.00016101059736684
+31 0.000163437827723101
+32 0.000161646312335506
+33 0.0001609440514585
+34 0.000161168107297271
+35 0.000164659577421844
+36 0.000159334755153395
+37 0.000163743476150557
+38 0.000163537115440704
+39 0.00015683873789385
+40 0.000163867312949151
+41 0.000162871452630498
+42 0.000162640513735823
+43 0.000163696240633726
+44 0.00016073822916951
+45 0.000160519673954695
+46 0.000165867735631764
+47 0.000159529619850218
+48 0.000163371965754777
+49 0.000162114563863724
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000138712508487515
+1 0.000141515163704753
+2 0.000153901026351377
+3 0.000168505852343515
+4 0.000165843361173756
+5 0.000166833022376522
+6 0.00015960905875545
+7 0.00016239685646724
+8 0.000188196150702424
+9 0.000148632796481252
+10 0.000146285849041305
+11 0.000143527664477006
+12 0.000156238616909832
+13 0.000131136373966001
+14 0.000148846287629567
+15 0.000140997275593691
+16 0.000175924520590343
+17 0.000159746166900732
+18 0.000137238937895745
+19 0.00016303698066622
+20 0.00015443166194018
+21 0.000168788552400656
+22 0.00014209646906238
+23 0.00013854875578545
+24 0.000141887619975023
+25 0.000149705752846785
+26 0.000180099523277022
+27 0.000213614825042896
+28 0.000181680064997636
+29 0.000173276552231982
+30 0.000168397455126978
+31 0.000146813137689605
+32 0.000159547766088508
+33 0.000166405458003283
+34 0.000166341036674567
+35 0.000131743043311872
+36 0.000181548864929937
+37 0.000141515440191142
+38 0.000143417782965116
+39 0.000205137053853832
+40 0.000137916198582388
+41 0.000149342769873329
+42 0.000154482113430277
+43 0.000144286168506369
+44 0.000169377235579304
+45 0.000169572769664228
+46 0.00012107261136407
+47 0.00017733131244313
+48 0.000144974954309873
+49 0.000155178975546733
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006016968663697942, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006016968663697942, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..4566fa4f1ebdf3c8ecbabddc9865bbdcb91d543a
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006016968663697942, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006016968663697942, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006016968663697942, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..1fa97b1ce3b75dcfaa4b31ce6d5c3e8482bd94c4
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006016968663697942, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.02746865761184e-08, ymax=0.00028459866896706,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000136541479150765
+1 9.44817293202505e-06
+2 2.06055506168923e-06
+3 9.65769459071453e-07
+4 6.2572757997259e-07
+5 4.32156696206221e-07
+6 3.2948159400803e-07
+7 2.54019482781587e-07
+8 2.14419543453914e-07
+9 1.79473701678035e-07
+10 1.59067454319484e-07
+11 1.40698205086665e-07
+12 1.20510989631839e-07
+13 1.11535875646496e-07
+14 9.38227344704501e-08
+15 8.75264944966148e-08
+16 8.13766689589102e-08
+17 7.5177098324275e-08
+18 6.47584883495256e-08
+19 6.13125479276277e-08
+20 5.73524125968561e-08
+21 5.56807009388649e-08
+22 4.84142574919133e-08
+23 4.68759253635653e-08
+24 4.37835616651228e-08
+25 4.26556248100951e-08
+26 3.98825825698168e-08
+27 3.86296576948553e-08
+28 3.4896661560424e-08
+29 3.3614320216202e-08
+30 3.28436122742914e-08
+31 3.13167127785619e-08
+32 2.98042408530819e-08
+33 2.99178566365299e-08
+34 2.80483405390441e-08
+35 2.65265107657342e-08
+36 2.59690597914641e-08
+37 2.37135235892083e-08
+38 2.28392114109965e-08
+39 2.23914522479163e-08
+40 2.1905245617404e-08
+41 2.13437765239632e-08
+42 2.09847392795837e-08
+43 1.9621330338282e-08
+44 1.93161824313393e-08
+45 1.97387670652915e-08
+46 1.78014953888805e-08
+47 1.78727113109289e-08
+48 1.72056182634606e-08
+49 1.64245808065289e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000160717099788599
+1 9.82187066256301e-06
+2 1.88817978141742e-06
+3 1.25339124679158e-06
+4 4.08386597428034e-07
+5 4.11721202908666e-07
+6 3.03536182855169e-07
+7 3.21894930266353e-07
+8 2.56787444641304e-07
+9 2.01125800458613e-07
+10 1.48118672882447e-07
+11 1.19178956481392e-07
+12 1.110468943466e-07
+13 7.6580278118854e-08
+14 1.08622565164751e-07
+15 7.98905404053585e-08
+16 6.43741628891803e-08
+17 4.81310529210077e-08
+18 6.48315818807532e-08
+19 6.1431890685526e-08
+20 4.58454536556019e-08
+21 4.3026858520534e-08
+22 4.46704966350353e-08
+23 4.86965738843992e-08
+24 5.39690638845514e-08
+25 4.47542021220215e-08
+26 3.67953489899264e-08
+27 2.99610292131547e-08
+28 4.02467215110391e-08
+29 3.73878599191357e-08
+30 3.3589433456882e-08
+31 3.68622892210624e-08
+32 3.14456727323886e-08
+33 2.43975968317045e-08
+34 2.56893262218227e-08
+35 2.91449122613585e-08
+36 2.08281996094684e-08
+37 2.81319110229106e-08
+38 3.09249905683373e-08
+39 2.41817001978006e-08
+40 2.86325931853071e-08
+41 2.49118787820635e-08
+42 2.13948858629465e-08
+43 2.10091037899929e-08
+44 1.75665242352352e-08
+45 1.63568163458194e-08
+46 2.36509301032584e-08
+47 1.81663608600502e-08
+48 1.86609163677076e-08
+49 2.23373088914514e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000142860255436972
+1 0.000134644084027968
+2 0.000140619100420736
+3 0.000136663089506328
+4 0.000140379808726721
+5 0.000140164032927714
+6 0.000140166826895438
+7 0.000141894386615604
+8 0.000137999319122173
+9 0.000138454342959449
+10 0.000137731869472191
+11 0.000140440068207681
+12 0.000139698080602102
+13 0.000136869406560436
+14 0.000138901174068451
+15 0.000141411015647464
+16 0.000139392970595509
+17 0.000140115633257665
+18 0.000137355353217572
+19 0.000138787538162433
+20 0.000141759985126555
+21 0.000138948977109976
+22 0.000140464602736756
+23 0.000142217540997081
+24 0.00013897345343139
+25 0.000141242766403593
+26 0.000137493523652665
+27 0.000142251054057851
+28 0.000143375378684141
+29 0.00013854683493264
+30 0.000135009235236794
+31 0.000135647016577423
+32 0.000142233868245967
+33 0.000136526650749147
+34 0.00014284226926975
+35 0.000134568181238137
+36 0.000140772768645547
+37 0.000139407668029889
+38 0.000137674549478106
+39 0.000137327617267147
+40 0.000139365482027642
+41 0.000134601461468264
+42 0.000139084600959904
+43 0.000136347924126312
+44 0.000141956377774477
+45 0.000136307135107927
+46 0.000137708324473351
+47 0.000137748967972584
+48 0.000135386566398665
+49 0.000140305928653106
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000108033025753684
+1 0.000176128160092048
+2 0.00012202539073769
+3 0.000158680239110254
+4 0.000124863930977881
+5 0.000127516526845284
+6 0.000127243372844532
+7 0.000111039669718593
+8 0.000145693658851087
+9 0.00014396796177607
+10 0.00014617430861108
+11 0.000126673374325037
+12 0.000132090106490068
+13 0.00015561212785542
+14 0.000137607654323801
+15 0.000115402268420439
+16 0.000135393973323517
+17 0.000126827508211136
+18 0.000151897096657194
+19 0.000140249787364155
+20 0.000114303526061121
+21 0.000137749273562804
+22 0.000125183330965228
+23 0.000110044333268888
+24 0.000136782880872488
+25 0.000117523108201567
+26 0.000152969660121016
+27 0.00010772898531286
+28 9.93176363408566e-05
+29 0.000145990736200474
+30 0.000174076049006544
+31 0.00016582733951509
+32 0.000108883534267079
+33 0.000159295363118872
+34 0.000100488476164173
+35 0.000178020825842395
+36 0.000121664619655348
+37 0.000136429254780523
+38 0.000148773237015121
+39 0.000151924657984637
+40 0.000134010668261908
+41 0.000178773305378854
+42 0.000137223149067722
+43 0.000160869865794666
+44 0.000111465320514981
+45 0.000161579213454388
+46 0.000150642808876
+47 0.000148654682561755
+48 0.000171111620147713
+49 0.000125632883282378
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0060387961914874135, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0060387961914874135, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..88a00c913d2cabffc6ee08124f6be0948e46fe50
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0060387961914874135, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0060387961914874135, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0060387961914874135, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..46f248ac7a911d96d11f0646be0f6737a5db48cd
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0060387961914874135, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.05460892005647e-08, ymax=0.000265412582887291,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000142874821904115
+1 1.27766415971564e-05
+2 5.34913260707981e-06
+3 5.1634747251228e-06
+4 2.6154414172197e-06
+5 1.42874682751426e-06
+6 1.05766139313346e-06
+7 8.231565971073e-07
+8 6.50332083296234e-07
+9 5.16490388235979e-07
+10 4.59852458334353e-07
+11 4.07167334515179e-07
+12 3.59076040012951e-07
+13 3.11928516794069e-07
+14 2.84021695051706e-07
+15 2.55919616165556e-07
+16 2.30373757403868e-07
+17 2.1643039360697e-07
+18 1.99586509097571e-07
+19 1.80477726985373e-07
+20 1.68072318729173e-07
+21 1.59704001134742e-07
+22 1.4998072117578e-07
+23 1.38849046038558e-07
+24 1.2750288647112e-07
+25 1.21539741826382e-07
+26 1.2516966307885e-07
+27 1.13593443984428e-07
+28 1.08508523055661e-07
+29 1.00347058662464e-07
+30 1.00236697164746e-07
+31 9.11369468781231e-08
+32 9.07349715362216e-08
+33 8.53698267633263e-08
+34 8.10195999179086e-08
+35 7.6193295228677e-08
+36 7.5812273792053e-08
+37 6.92870756324737e-08
+38 6.86475019051613e-08
+39 7.21866939557003e-08
+40 6.48299334216063e-08
+41 6.39779713651478e-08
+42 6.34242809383068e-08
+43 5.78685614982533e-08
+44 5.69295686148052e-08
+45 5.45889555780832e-08
+46 5.37242677012273e-08
+47 5.20172775964056e-08
+48 4.99916019691682e-08
+49 5.60235022817324e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000136387257953174
+1 1.02529684227193e-05
+2 4.51693722425262e-06
+3 6.53032338959747e-06
+4 2.0476888948906e-06
+5 1.35659399802535e-06
+6 8.77349236816372e-07
+7 7.0962960307952e-07
+8 6.42166696707136e-07
+9 5.4407848892879e-07
+10 5.028103373661e-07
+11 3.90395342719785e-07
+12 2.9551151214946e-07
+13 2.9981970328663e-07
+14 2.33831684681718e-07
+15 2.36760456573393e-07
+16 2.1971891328576e-07
+17 2.12456740200651e-07
+18 1.88914555110387e-07
+19 1.6237787292539e-07
+20 1.44567977145016e-07
+21 1.4972026463056e-07
+22 1.40798903203176e-07
+23 1.4904986755937e-07
+24 1.2989650599593e-07
+25 1.22649595368785e-07
+26 1.24977859172759e-07
+27 9.80433512154377e-08
+28 8.16657461655268e-08
+29 9.40569648832934e-08
+30 8.77339161320378e-08
+31 8.65764846480488e-08
+32 9.75527214563954e-08
+33 9.65530162488903e-08
+34 7.98920538613856e-08
+35 8.85947031292744e-08
+36 8.3453031152203e-08
+37 8.9793672941596e-08
+38 7.4592492183001e-08
+39 6.25902387696442e-08
+40 5.8282978443458e-08
+41 7.81420794737642e-08
+42 5.62528796876904e-08
+43 6.23281266598497e-08
+44 6.07126011686887e-08
+45 6.12243127307011e-08
+46 6.37996819818909e-08
+47 5.83364005990461e-08
+48 5.80001255912066e-08
+49 4.61317064548439e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000143593293614686
+1 0.000141612035804428
+2 0.000139823605422862
+3 0.000142049684654921
+4 0.0001417220919393
+5 0.000141987678944133
+6 0.000143334866152145
+7 0.000140747055411339
+8 0.000141432072268799
+9 0.000140546093462035
+10 0.000145319092553109
+11 0.000143327371915802
+12 0.000144853052916005
+13 0.000145766229252331
+14 0.000141205324325711
+15 0.00014149839989841
+16 0.000142242570291273
+17 0.000138374394737184
+18 0.000141021533636376
+19 0.000145156460348517
+20 0.000140327741974033
+21 0.000140162665047683
+22 0.000143847399158403
+23 0.000144278368679807
+24 0.000139534575282596
+25 0.000145374389830977
+26 0.000142446995596401
+27 0.000144353529321961
+28 0.000143911645864137
+29 0.000141908400109969
+30 0.000141775468364358
+31 0.000144891644595191
+32 0.000140885036671534
+33 0.000141750191687606
+34 0.000139488416607492
+35 0.00014490021567326
+36 0.000142816934385337
+37 0.000143729077535681
+38 0.000143083540024236
+39 0.000142680335557088
+40 0.000143677432788536
+41 0.000140702875796705
+42 0.000138350427732803
+43 0.000141606768011115
+44 0.000141962489578873
+45 0.000144121600897051
+46 0.000139768701046705
+47 0.000144130288390443
+48 0.0001437137107132
+49 0.000140724587254226
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000127974519273266
+1 0.000147028928040527
+2 0.00016466663510073
+3 0.000143122117151506
+4 0.000148342573083937
+5 0.000147492915857583
+6 0.000138324583531357
+7 0.000156140158651397
+8 0.000150154475704767
+9 0.000158546841703355
+10 0.000112924491986632
+11 0.000128490646602586
+12 0.000140441625262611
+13 0.00011227073991904
+14 0.000145875717862509
+15 0.000148330189404078
+16 0.000143192402902059
+17 0.00017210234364029
+18 0.000152026696014218
+19 0.000118094685603864
+20 0.000157341011799872
+21 0.000158175287651829
+22 0.000128895975649357
+23 0.000129341060528532
+24 0.00016490496636834
+25 0.000111016030132305
+26 0.000141803568112664
+27 0.00012181508645881
+28 0.000125095786643215
+29 0.000146330523421057
+30 0.000146821301314048
+31 0.000121837460028473
+32 0.000156891925144009
+33 0.000146398509969003
+34 0.000169964885571972
+35 0.00013535373727791
+36 0.000135218477225862
+37 0.00012823028373532
+38 0.000135038135340437
+39 0.000137268143589608
+40 0.000128373154439032
+41 0.000153646047692746
+42 0.000175742825376801
+43 0.000147557919262908
+44 0.000145510406582616
+45 0.000141671669553034
+46 0.000166718702530488
+47 0.00012539052113425
+48 0.000129448424559087
+49 0.000156190668349154
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006040429533651038, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006040429533651038, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..ec1be93d872c0ec5bd085ccd39541a578ea150bd
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006040429533651038, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006040429533651038, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006040429533651038, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..f1672f4d3760b6dfe906396a25e3bd74209caed3
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006040429533651038, Learning_Process.tex	
@@ -0,0 +1,263 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.9493488927725e-07, ymax=0.000257930338875963,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000140647331136279
+1 9.81203920673579e-05
+2 1.69393570104148e-05
+3 1.31964316096855e-05
+4 8.0906256698654e-06
+5 1.27491903185728e-05
+6 4.43052613263717e-06
+7 3.74983710571541e-06
+8 3.25511791743338e-06
+9 2.64146592598991e-06
+10 2.38799111684784e-06
+11 2.08586993721838e-06
+12 1.86763747933583e-06
+13 1.68452459092805e-06
+14 1.50084474626055e-06
+15 1.3707914376937e-06
+16 1.30985540636175e-06
+17 1.15814384571422e-06
+18 1.0432366934765e-06
+19 9.67469190982229e-07
+20 9.19145691113954e-07
+21 8.48850902457343e-07
+22 8.43081409129809e-07
+23 8.55529833643232e-07
+24 7.84574069712107e-07
+25 7.26695986941195e-07
+26 7.83207440235856e-07
+27 6.3111360759649e-07
+28 5.87977012855845e-07
+29 5.60701664653607e-07
+30 5.47573392850609e-07
+31 5.22105040090537e-07
+32 4.80287326354301e-07
+33 4.77215337468806e-07
+34 4.50676424179619e-07
+35 4.20583091909066e-07
+36 4.29558809855735e-07
+37 4.18674204638592e-07
+38 3.8303164728859e-07
+39 3.63722875817984e-07
+40 3.57403052930749e-07
+41 3.4699229445323e-07
+42 3.42681374831955e-07
+43 3.44860836776206e-07
+44 3.20397106179371e-07
+45 3.15613505108558e-07
+46 3.03900662856904e-07
+47 2.89524308527689e-07
+48 2.84543460793429e-07
+49 2.70259562284991e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000151975647895597
+1 0.00011431109305704
+2 1.33319717861013e-05
+3 1.00311708592926e-05
+4 8.00863472250057e-06
+5 5.76305319555104e-06
+6 6.53306187814451e-06
+7 4.19849993704702e-06
+8 2.87450529867783e-06
+9 3.59676414518617e-06
+10 2.20363267544599e-06
+11 1.92362017514824e-06
+12 1.81497819085052e-06
+13 1.43555860177003e-06
+14 1.44999989970529e-06
+15 1.17795286769251e-06
+16 9.8537350368133e-07
+17 1.03365005088563e-06
+18 1.0466519597685e-06
+19 1.09505742784677e-06
+20 8.01753685664153e-07
+21 8.94510606030963e-07
+22 8.40085817799263e-07
+23 8.88548299826653e-07
+24 8.38282119275391e-07
+25 7.36634717668494e-07
+26 5.3782423492521e-07
+27 6.18434569332749e-07
+28 6.25451036739832e-07
+29 5.65155119147676e-07
+30 4.16869227137795e-07
+31 5.88046987104462e-07
+32 5.46206990748033e-07
+33 3.70375886404872e-07
+34 4.29895408160519e-07
+35 4.83800704387249e-07
+36 3.18953397027144e-07
+37 3.71296181356229e-07
+38 4.24941816845603e-07
+39 4.57745954918209e-07
+40 3.79343020995293e-07
+41 3.89595783190089e-07
+42 3.40515839525324e-07
+43 2.7519851641955e-07
+44 3.11154195742347e-07
+45 2.75122005177764e-07
+46 2.73440861064955e-07
+47 3.20229872841082e-07
+48 3.1981284109861e-07
+49 3.28503830360205e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000136782284243964
+1 0.00013898492034059
+2 0.000144934354466386
+3 0.000141943237395026
+4 0.000141283308039419
+5 0.000141704877023585
+6 0.000144339297548868
+7 0.000138779461849481
+8 0.000140967618790455
+9 0.000139276526169851
+10 0.000138732269988395
+11 0.000140833129989915
+12 0.000143635465065017
+13 0.00014138437109068
+14 0.000142436663736589
+15 0.000138846473419107
+16 0.000141657554195262
+17 0.000142482371302322
+18 0.000142200588015839
+19 0.000144405858009122
+20 0.000143539044074714
+21 0.000145772108226083
+22 0.000142888340633363
+23 0.000141923606861383
+24 0.000139833326102234
+25 0.00014171827933751
+26 0.000139831841806881
+27 0.00014158445992507
+28 0.000138839852297679
+29 0.000139775613206439
+30 0.000140899937832728
+31 0.000144016419653781
+32 0.000139279145514593
+33 0.000141669428558089
+34 0.000140882286359556
+35 0.000139985524583608
+36 0.000141719632665627
+37 0.000142396820592694
+38 0.000143681900226511
+39 0.000140703312354162
+40 0.000142451724968851
+41 0.00013837352162227
+42 0.000143646684591658
+43 0.00013937808398623
+44 0.00014237395953387
+45 0.000143698765896261
+46 0.000139121228130534
+47 0.000141069365781732
+48 0.000141186639666557
+49 0.000143632802064531
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000186041972483508
+1 0.000167064587003551
+2 0.000112015288323164
+3 0.000136282862513326
+4 0.000145253434311599
+5 0.000139403418870643
+6 0.000114118447527289
+7 0.000166701836860739
+8 0.000147119790199213
+9 0.000162526455824263
+10 0.000166261525009759
+11 0.000147626968100667
+12 0.000124499551020563
+13 0.000144889854709618
+14 0.000136339862365276
+15 0.000167410777066834
+16 0.000143973767990246
+17 0.000134387912112288
+18 0.000137517301482148
+19 0.000118872070743237
+20 0.000125839374959469
+21 0.000105067672848236
+22 0.000135558715555817
+23 0.000138825023896061
+24 0.000159586707013659
+25 0.000142029442940839
+26 0.000159090996021405
+27 0.000142490840516984
+28 0.000166977930348366
+29 0.000160553812747821
+30 0.000150654072058387
+31 0.000121383651276119
+32 0.000160532232257538
+33 0.000141703130793758
+34 0.000150625404785387
+35 0.00015832090866752
+36 0.000141927623189986
+37 0.000135023961775005
+38 0.00012230830907356
+39 0.000148931198054925
+40 0.000134546804474667
+41 0.000169464183272794
+42 0.00012555047578644
+43 0.000161632007802837
+44 0.000134594200062566
+45 0.000124016471090727
+46 0.000162598575116135
+47 0.000152754044393077
+48 0.000146287129609846
+49 0.000123666526633315
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006048205139487211, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006048205139487211, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..c61a8563c5189c5bba317e3d0813bdefc71e6fb5
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006048205139487211, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006048205139487211, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006048205139487211, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..e451d7a19ec83bd837224bd514dd1afd8fa48755
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006048205139487211, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.16140789204749e-08, ymax=0.000259791287584636,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000125055987155065
+1 1.24997568491381e-05
+2 3.8005114220141e-06
+3 3.15727356792195e-06
+4 1.6729609342292e-06
+5 1.09805273496022e-06
+6 7.87519979894569e-07
+7 6.47969443434704e-07
+8 5.25575842402759e-07
+9 4.39184645983914e-07
+10 3.81504946744826e-07
+11 3.3346745453855e-07
+12 2.9269776291585e-07
+13 2.65201293814243e-07
+14 2.23568946466912e-07
+15 2.09179646049051e-07
+16 1.99228381347893e-07
+17 1.76278646790706e-07
+18 1.68689894053387e-07
+19 1.69669760907709e-07
+20 1.45345566693322e-07
+21 1.33374427946364e-07
+22 1.21577556910779e-07
+23 1.20395299063603e-07
+24 1.21157412991124e-07
+25 1.02651981137569e-07
+26 9.5690822377037e-08
+27 9.76987308831667e-08
+28 9.57392245481969e-08
+29 8.61514450889445e-08
+30 8.3213024026918e-08
+31 7.88651988159472e-08
+32 7.57755955760331e-08
+33 7.57104672288733e-08
+34 6.81759217968647e-08
+35 6.65928538978733e-08
+36 6.4446382452843e-08
+37 6.64849935105849e-08
+38 6.22505211822499e-08
+39 6.05212875370853e-08
+40 5.70247991049655e-08
+41 5.42339222420196e-08
+42 5.32713890777359e-08
+43 5.57010224611076e-08
+44 5.04038837334519e-08
+45 5.0018105213212e-08
+46 4.8981302569473e-08
+47 4.68017340438109e-08
+48 4.54299033947336e-08
+49 4.3476301669898e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000127891078591347
+1 1.03314532680088e-05
+2 3.82008829546976e-06
+3 3.36512175636017e-06
+4 1.26237262065843e-06
+5 1.08185156477703e-06
+6 7.92008620464912e-07
+7 6.40314453903557e-07
+8 5.66669029922195e-07
+9 3.86627647230853e-07
+10 3.48867018828969e-07
+11 3.55255679096445e-07
+12 2.70943019131664e-07
+13 2.24477844312787e-07
+14 2.44230534462986e-07
+15 2.44027859253038e-07
+16 1.81798455400894e-07
+17 1.75701018179097e-07
+18 1.5935107455789e-07
+19 1.62746147225334e-07
+20 1.21411048326081e-07
+21 1.04602463579795e-07
+22 1.51860547248361e-07
+23 1.03502195258898e-07
+24 8.41711980115178e-08
+25 1.04457036798067e-07
+26 1.17324795212426e-07
+27 8.5817625006257e-08
+28 7.13439405330973e-08
+29 8.36880857946198e-08
+30 9.55265520019566e-08
+31 9.13091611209893e-08
+32 7.18519217457469e-08
+33 7.47864916661456e-08
+34 7.8560233873759e-08
+35 6.98363677997804e-08
+36 6.42772235437405e-08
+37 5.44305294170044e-08
+38 6.44465316668175e-08
+39 6.04734538001139e-08
+40 5.26646566356703e-08
+41 5.81651988795784e-08
+42 4.93601817197487e-08
+43 3.7888423065624e-08
+44 4.38197353958003e-08
+45 4.30367848025526e-08
+46 3.31273106723984e-08
+47 4.20797299227615e-08
+48 4.2228592178617e-08
+49 3.90012999673672e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000127950028399937
+1 0.000123091522254981
+2 0.000126269034808502
+3 0.000127397681353614
+4 0.000125707651022822
+5 0.000125683713122271
+6 0.000125839665997773
+7 0.000125710110296495
+8 0.000126008439110592
+9 0.000129124076920561
+10 0.000123453821288422
+11 0.000125920734717511
+12 0.000126262719277292
+13 0.000125930237118155
+14 0.000125480015412904
+15 0.000127194696688093
+16 0.000128423140267842
+17 0.000126877581351437
+18 0.000125549282529391
+19 0.000126953411381692
+20 0.000126464743516408
+21 0.00012308920850046
+22 0.000126877959701233
+23 0.000124504920677282
+24 0.000127276303828694
+25 0.000126312937936746
+26 0.000126192040625028
+27 0.000124764876090921
+28 0.000120521341159474
+29 0.000126170532894321
+30 0.000125543039757758
+31 0.000124948783195578
+32 0.000128218714962713
+33 0.000126134502352215
+34 0.000125629070680588
+35 0.000127366656670347
+36 0.000128319356008433
+37 0.000124914848129265
+38 0.000121796096209437
+39 0.000122167606605217
+40 0.000126588594866917
+41 0.000127491861348972
+42 0.000124006852274761
+43 0.000126327809994109
+44 0.000126885875943117
+45 0.000121754143037833
+46 0.000122344470582902
+47 0.000127163642900996
+48 0.000123742094729096
+49 0.000127542356494814
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.00010116246266989
+1 0.000144481426104903
+2 0.000116422343126033
+3 0.000106578358099796
+4 0.000121908844448626
+5 0.000122411787742749
+6 0.000120986536785495
+7 0.000122606958029792
+8 0.000118895339255687
+9 8.95081902854145e-05
+10 0.000141000491566956
+11 0.000120378041174263
+12 0.000116861883725505
+13 0.000120946577226277
+14 0.000122846176964231
+15 0.00010773182293633
+16 0.000100053650385235
+17 0.000109341672214214
+18 0.000122950979857706
+19 0.000109743457869627
+20 0.000116374285425991
+21 0.000144416888360865
+22 0.000111440545879304
+23 0.000132904489873908
+24 0.000107248873973731
+25 0.000115800816274714
+26 0.000116538139991462
+27 0.000131489970954135
+28 0.000169502120115794
+29 0.000115020877274219
+30 0.000122281286166981
+31 0.000129535677842796
+32 9.98831383185461e-05
+33 0.000117821320600342
+34 0.000123694102512673
+35 0.000106537154351827
+36 9.83882346190512e-05
+37 0.000128859945107251
+38 0.000157836868311279
+39 0.000152946435264312
+40 0.000113035333924927
+41 0.000104838589322753
+42 0.000137519324198365
+43 0.00011590924259508
+44 0.000110173903522082
+45 0.000157080619828776
+46 0.000151757645653561
+47 0.000108244479633868
+48 0.000138311486807652
+49 0.00010471398854861
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0060483950426177555, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0060483950426177555, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..638cdcab6eabbb8e04551b229caeb1f8fb1f8619
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0060483950426177555, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0060483950426177555, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0060483950426177555, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..ee5d89489b8797c43112330ad5abb0787a93a141
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0060483950426177555, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.2572272349402e-08, ymax=0.000275570121345238,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000136554284836166
+1 1.02646881714463e-05
+2 2.62893331637315e-06
+3 1.11963299787021e-06
+4 6.97695384133112e-07
+5 5.15443787207914e-07
+6 4.00426785063246e-07
+7 3.22421300325004e-07
+8 2.57387000601739e-07
+9 2.19793221845066e-07
+10 1.99732539840625e-07
+11 1.72237363926797e-07
+12 1.49285853012771e-07
+13 1.36984311893684e-07
+14 1.26309274151026e-07
+15 1.21437622624399e-07
+16 9.78413510210885e-08
+17 9.11052566721082e-08
+18 9.09275001959031e-08
+19 7.45906163501786e-08
+20 6.95968580544104e-08
+21 6.68944863946308e-08
+22 6.86053738263581e-08
+23 6.3965934771204e-08
+24 5.62784379098957e-08
+25 5.5797844566996e-08
+26 5.13109554844959e-08
+27 5.63875808268222e-08
+28 4.74224606250573e-08
+29 4.55979609625956e-08
+30 4.17083754200576e-08
+31 4.1165364450535e-08
+32 3.87095084875e-08
+33 4.22393853227732e-08
+34 3.52501814404604e-08
+35 3.54150166970157e-08
+36 3.40043087021513e-08
+37 3.2247729819801e-08
+38 3.16049302284682e-08
+39 3.16392352317507e-08
+40 2.93795245909223e-08
+41 2.76650737873751e-08
+42 2.77241554158536e-08
+43 2.61063490825109e-08
+44 2.6130360097909e-08
+45 2.50043825644752e-08
+46 2.43247111342271e-08
+47 2.39242439192822e-08
+48 2.3710198249205e-08
+49 2.30439436421648e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 9.7517367976252e-05
+1 1.30473172248458e-05
+2 3.4160918858106e-06
+3 1.11579834083386e-06
+4 7.19400929938274e-07
+5 4.21235284875365e-07
+6 3.94625402577731e-07
+7 3.00043041079334e-07
+8 2.47938714892371e-07
+9 2.48851137030215e-07
+10 1.94206037917866e-07
+11 1.56317028654485e-07
+12 1.78717229459835e-07
+13 1.28875925042848e-07
+14 1.39412080102375e-07
+15 1.12683757436116e-07
+16 1.08156022804451e-07
+17 8.96732856858762e-08
+18 8.96225884616797e-08
+19 8.69180709628381e-08
+20 8.8239822559899e-08
+21 6.5439351715213e-08
+22 6.23412290678971e-08
+23 5.85830797206199e-08
+24 5.50935972398747e-08
+25 5.02031021198945e-08
+26 4.57902018524692e-08
+27 4.31974136461122e-08
+28 4.46527188557866e-08
+29 4.96539449557076e-08
+30 4.91864753371374e-08
+31 3.73178572488087e-08
+32 3.8936729396255e-08
+33 2.99478948306842e-08
+34 3.40926895603388e-08
+35 4.89053206820245e-08
+36 2.71529536632897e-08
+37 2.92638500098974e-08
+38 3.33955902931393e-08
+39 3.11412193809701e-08
+40 2.38765576199285e-08
+41 2.65319783920859e-08
+42 2.48645193323682e-08
+43 2.13471249566055e-08
+44 2.40870861034637e-08
+45 2.32348646989067e-08
+46 2.53009826423067e-08
+47 2.4536237930306e-08
+48 2.35573303086767e-08
+49 1.98026679498753e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000133436406031251
+1 0.000131878419779241
+2 0.000133370442199521
+3 0.000134713933221065
+4 0.000135465379571542
+5 0.000132653163745999
+6 0.00013513358135242
+7 0.000131613531266339
+8 0.000134837595396675
+9 0.000132380519062281
+10 0.000134619302116334
+11 0.000136778457090259
+12 0.000134826666908339
+13 0.000134334564791061
+14 0.000133700086735189
+15 0.000131176522700116
+16 0.000128492771182209
+17 0.000133832363644615
+18 0.000133257417473942
+19 0.000130677028209902
+20 0.000135958878672682
+21 0.000132671411847696
+22 0.000136028291308321
+23 0.000127779669128358
+24 0.000133338340674527
+25 0.000132818589918315
+26 0.000132020621094853
+27 0.000133702342282049
+28 0.000134494446683675
+29 0.000134168672957458
+30 0.000136023911181837
+31 0.000133267938508652
+32 0.000135035879793577
+33 0.000132923159981146
+34 0.000134749396238476
+35 0.000138510993565433
+36 0.000134953603264876
+37 0.000136190632474609
+38 0.000132776927785017
+39 0.000134715053718537
+40 0.00013672663772013
+41 0.000130346321384422
+42 0.000132043249323033
+43 0.000132126602693461
+44 0.000129804626340047
+45 0.000132471424876712
+46 0.000128937070257962
+47 0.000135791720822453
+48 0.000133959751110524
+49 0.000134053436340764
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000126147977425717
+1 0.000141042124596424
+2 0.000133342342451215
+3 0.000120376258564647
+4 0.000105137020000257
+5 0.000131348599097691
+6 0.000118600743007846
+7 0.000139981770189479
+8 0.000113062189484481
+9 0.000137623661430553
+10 0.000118327152449638
+11 9.93480571196415e-05
+12 0.000114473084977362
+13 0.000117932460852899
+14 0.000121896016935352
+15 0.000144529389217496
+16 0.00017261691391468
+17 0.000130180109408684
+18 0.000133281093440019
+19 0.000156327383592725
+20 0.000123440593597479
+21 0.000132310553453863
+22 0.000102403995697387
+23 0.000174953325768001
+24 0.000126376908156089
+25 0.000137207971420139
+26 0.000139049981953576
+27 0.000124577636597678
+28 0.000120414093544241
+29 0.000129017542349175
+30 0.0001106185518438
+31 0.000128673578728922
+32 0.000112647030618973
+33 0.000136864080559462
+34 0.000112573034130037
+35 9.18536024983041e-05
+36 0.000114003152702935
+37 0.000100374723842833
+38 0.000131996421259828
+39 0.000112420435470995
+40 9.75285947788507e-05
+41 0.000153938453877345
+42 0.000140325981192291
+43 0.000137857161462307
+44 0.000158569018822163
+45 0.000144307312439196
+46 0.000164161116117612
+47 0.000101865036413074
+48 0.000120668963063508
+49 0.000119910939247347
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006057227860875407, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006057227860875407, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..825f9bdbd99ed9f15abac701d91b8c8898e4b721
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006057227860875407, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006057227860875407, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006057227860875407, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..6962f845a9262cab44216ccbb1c910f3996bde8b
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006057227860875407, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.142591810906e-08, ymax=0.000302007702852415,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000126489132526331
+1 1.33198336698115e-05
+2 2.29789657169022e-06
+3 1.06578056602302e-06
+4 6.30997192274663e-07
+5 4.81185452372301e-07
+6 3.74995181573468e-07
+7 2.95051421517201e-07
+8 2.59343551078928e-07
+9 2.27428529342433e-07
+10 1.92767529938465e-07
+11 1.61476563675933e-07
+12 1.45499171821939e-07
+13 1.28774644281293e-07
+14 1.14878098145255e-07
+15 1.04640690778979e-07
+16 9.62467154863589e-08
+17 8.7782062507813e-08
+18 8.22236003727994e-08
+19 7.48695399011012e-08
+20 6.93850239485982e-08
+21 6.48775184686201e-08
+22 5.88088973074719e-08
+23 5.63879538617584e-08
+24 5.19978335944415e-08
+25 5.17609883843306e-08
+26 5.00897030519809e-08
+27 4.55752662276154e-08
+28 4.46594050629301e-08
+29 4.17824104204101e-08
+30 5.20050207342138e-08
+31 3.94969283945557e-08
+32 3.71499346840665e-08
+33 3.76905191501464e-08
+34 3.3754460559976e-08
+35 3.23179136785257e-08
+36 3.32021699023244e-08
+37 2.91300921162474e-08
+38 2.82012990737712e-08
+39 3.12958157167031e-08
+40 2.86913852676207e-08
+41 2.6589393797849e-08
+42 2.59531063306895e-08
+43 2.56518397634409e-08
+44 2.4332344139566e-08
+45 2.40254252048544e-08
+46 2.20789040383806e-08
+47 2.21960796409348e-08
+48 2.36335235825891e-08
+49 2.15266080516585e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.0001432230201317
+1 1.45879403135041e-05
+2 2.10847565540462e-06
+3 8.23644768388476e-07
+4 7.60208081374003e-07
+5 4.3591103349172e-07
+6 4.17354925730251e-07
+7 3.52758576127599e-07
+8 2.28497924581461e-07
+9 1.51983897467289e-07
+10 1.51257410152539e-07
+11 1.97202965068755e-07
+12 1.1771006569461e-07
+13 1.33891305154066e-07
+14 1.12680247355001e-07
+15 1.05419488249936e-07
+16 9.01862904356676e-08
+17 7.91781928910495e-08
+18 6.12207600170223e-08
+19 8.02204596084266e-08
+20 7.70003154570986e-08
+21 6.85890810814271e-08
+22 6.32454799642801e-08
+23 5.3550959222548e-08
+24 8.04471511628435e-08
+25 5.28717372105802e-08
+26 5.9116860740005e-08
+27 5.26996579708339e-08
+28 5.12410451847245e-08
+29 5.18511562574986e-08
+30 3.52286626537079e-08
+31 3.22988888967757e-08
+32 2.83025638481149e-08
+33 3.32959650961584e-08
+34 2.83274399492939e-08
+35 3.22025854870844e-08
+36 2.45321825076417e-08
+37 3.1180519499685e-08
+38 3.05851166615412e-08
+39 3.68625734381567e-08
+40 3.05225853480806e-08
+41 3.22608535441304e-08
+42 2.95539734906924e-08
+43 2.22030038798948e-08
+44 2.07663877205277e-08
+45 2.10413535484122e-08
+46 2.08425543490875e-08
+47 2.25297132061542e-08
+48 1.81508461594149e-08
+49 1.99666754241434e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000125615028082393
+1 0.000127433304442093
+2 0.000127169842016883
+3 0.000131086970213801
+4 0.000124788319226354
+5 0.000130930478917435
+6 0.000126389029901475
+7 0.000130687185446732
+8 0.000123709367471747
+9 0.000122754761832766
+10 0.00012412405340001
+11 0.000125733189634047
+12 0.000129758409457281
+13 0.000126021972391754
+14 0.000125815902720205
+15 0.000127859791973606
+16 0.00013294443488121
+17 0.000121178854897153
+18 0.000129369378555566
+19 0.000129305437440053
+20 0.000130752625409514
+21 0.000125060920254327
+22 0.000126804821775295
+23 0.000131785433040932
+24 0.000127993160276674
+25 0.000126758925034665
+26 0.000130054439068772
+27 0.000128428888274357
+28 0.000129776963149197
+29 0.000125782360555604
+30 0.000129431369714439
+31 0.000128755811601877
+32 0.000130744723719545
+33 0.000129722116980702
+34 0.000127378487377428
+35 0.000129248466691934
+36 0.000131284265080467
+37 0.000128106970805675
+38 0.000129947788082063
+39 0.000126296188682318
+40 0.00012686698755715
+41 0.000124672369565815
+42 0.000122858808026649
+43 0.00012473740207497
+44 0.000128896499518305
+45 0.000127654580865055
+46 0.00012859700655099
+47 0.00012723752297461
+48 0.000130371859995648
+49 0.000128966697957367
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000150682753883302
+1 0.000134089132188819
+2 0.000135513648274355
+3 0.000101309386081994
+4 0.00015840504784137
+5 0.000103506841696799
+6 0.000143191238748841
+7 0.000105549617728684
+8 0.000167241509188898
+9 0.000175260822288692
+10 0.000164111668709666
+11 0.000148242674185894
+12 0.000112579138658475
+13 0.000146574209793471
+14 0.000149648287333548
+15 0.0001309680956183
+16 8.42376830405556e-05
+17 0.000190113190910779
+18 0.000117221687105484
+19 0.000118639785796404
+20 0.000104628990811761
+21 0.000153353394125588
+22 0.000138846851768903
+23 9.46893414948136e-05
+24 0.000128333573229611
+25 0.000140300398925319
+26 0.000110296648927033
+27 0.000126277169329114
+28 0.000112070076283999
+29 0.000148594146594405
+30 0.000116899980639573
+31 0.000122886296594515
+32 0.000104463942989241
+33 0.000112783935037442
+34 0.000134110727231018
+35 0.000118179472337943
+36 0.000100157943961676
+37 0.000129731532069854
+38 0.000111031673441175
+39 0.000143057841341943
+40 0.000137420473038219
+41 0.000159568662638776
+42 0.000175974331796169
+43 0.000158555150846951
+44 0.000121139360999223
+45 0.000131280845380388
+46 0.000123015241115354
+47 0.000135331400088035
+48 0.000107181433122605
+49 0.00011870545858983
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006067118800367185, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006067118800367185, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..20860f4c79bbf4a936ca79a64671da29cccf42a8
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006067118800367185, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006067118800367185, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006067118800367185, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..fb9015d8df69d43e44e941308c937905f7d360a1
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006067118800367185, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.00505658888668e-08, ymax=0.000237025945185311,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000120610682643019
+1 1.22732526506297e-05
+2 2.25299027079018e-06
+3 1.04350647234241e-06
+4 6.97305210906052e-07
+5 5.28084001416573e-07
+6 3.92878234833915e-07
+7 3.12599240714917e-07
+8 2.59041257777426e-07
+9 2.09575773624238e-07
+10 1.86288787062949e-07
+11 1.63370344807845e-07
+12 1.44954398706432e-07
+13 1.2420565553839e-07
+14 1.13937403511954e-07
+15 1.04424493940769e-07
+16 8.87291946582991e-08
+17 8.51359800435603e-08
+18 8.08691495990388e-08
+19 7.39622265655271e-08
+20 6.70645974309991e-08
+21 6.44441939812168e-08
+22 5.97628257992255e-08
+23 5.532205449299e-08
+24 5.32362243177431e-08
+25 4.80014321624367e-08
+26 4.51207462504044e-08
+27 4.6073957093995e-08
+28 4.24471657822778e-08
+29 4.094606254057e-08
+30 3.93555446009941e-08
+31 3.59026621765679e-08
+32 3.60672807175888e-08
+33 3.39229302426247e-08
+34 3.24598836698442e-08
+35 3.20924762320374e-08
+36 3.06353094003953e-08
+37 2.86336181432034e-08
+38 2.69369646588302e-08
+39 2.6842872813404e-08
+40 2.50970781934257e-08
+41 2.50933744894155e-08
+42 2.3278916572167e-08
+43 2.32059047533539e-08
+44 2.23334470916825e-08
+45 2.1564286356579e-08
+46 2.06952499581803e-08
+47 2.06344470399245e-08
+48 2.02127239390393e-08
+49 2.06778416611542e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 9.50132598518394e-05
+1 9.6804815257201e-06
+2 1.60803210746963e-06
+3 1.0732292139437e-06
+4 6.52141238788317e-07
+5 4.54168059604854e-07
+6 4.41152650410004e-07
+7 3.19829496220336e-07
+8 2.28586259254371e-07
+9 2.66880107346879e-07
+10 1.69892146573147e-07
+11 1.34286537445405e-07
+12 1.01400523533357e-07
+13 1.34471676460635e-07
+14 9.88625785680597e-08
+15 9.27858962995742e-08
+16 1.24164586168263e-07
+17 1.26683971757302e-07
+18 8.69377387857639e-08
+19 6.86846419739595e-08
+20 7.12068768393692e-08
+21 4.56959945438484e-08
+22 6.66681003735903e-08
+23 6.3703872399401e-08
+24 4.34268585536302e-08
+25 5.24540340052226e-08
+26 5.08866939696873e-08
+27 3.89604011274969e-08
+28 4.26277608767123e-08
+29 4.40964491588147e-08
+30 2.89287189758625e-08
+31 4.52279138585254e-08
+32 3.43177575246045e-08
+33 3.31640634954056e-08
+34 2.64255231030575e-08
+35 2.93387394378897e-08
+36 3.66174504051742e-08
+37 3.09282022215029e-08
+38 2.66086264133492e-08
+39 2.54093546203649e-08
+40 2.83319252503134e-08
+41 2.65331614457409e-08
+42 2.50444607274858e-08
+43 1.92554185929339e-08
+44 2.110361663199e-08
+45 2.11061266242041e-08
+46 2.60736623403091e-08
+47 1.88736866135741e-08
+48 1.77510663945668e-08
+49 1.58834669861108e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000118092888442334
+1 0.000120433527627029
+2 0.000121161210699938
+3 0.000117608040454797
+4 0.00012099582090741
+5 0.000116906521725468
+6 0.00011823891691165
+7 0.000117342111479957
+8 0.000114961490908172
+9 0.0001173015407403
+10 0.000117881689220667
+11 0.000116194991278462
+12 0.000117871612019371
+13 0.000119362441182602
+14 0.000118218718853313
+15 0.000118845506221987
+16 0.000119161486509256
+17 0.000118072683108039
+18 0.000119478856504429
+19 0.000117255105578806
+20 0.00011447467841208
+21 0.000120133867312688
+22 0.000117053714348003
+23 0.000119352771434933
+24 0.000120101416541729
+25 0.000118556592497043
+26 0.000120988428534474
+27 0.000116429968329612
+28 0.000117397954454646
+29 0.000118205287435558
+30 0.000116361989057623
+31 0.000117680327093694
+32 0.00011453063780209
+33 0.000120193522889167
+34 0.000120168158900924
+35 0.000119071293738671
+36 0.000117985844553914
+37 0.000116254144813865
+38 0.000114935326564591
+39 0.000117505507660098
+40 0.000117486306407955
+41 0.000119446158350911
+42 0.000117558833153453
+43 0.000118745330837555
+44 0.000118028088763822
+45 0.000119519463623874
+46 0.000116198905743659
+47 0.000116049573989585
+48 0.00011815892503364
+49 0.000118247073260136
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000117907395178918
+1 9.71543704508804e-05
+2 8.91115778358653e-05
+3 0.000122327342978679
+4 9.7739182820078e-05
+5 0.000128491126815788
+6 0.000117796873382758
+7 0.00012432158109732
+8 0.000147061728057452
+9 0.000124287398648448
+10 0.000120862656331155
+11 0.0001356261636829
+12 0.000119109849038068
+13 0.000107131389086135
+14 0.000118166186439339
+15 0.00011236994760111
+16 0.000108971609733999
+17 0.000117533141747117
+18 0.000107045481854584
+19 0.000126341692521237
+20 0.000149619299918413
+21 9.9412354757078e-05
+22 0.000126169208670035
+23 0.000107543710328173
+24 0.000100199089501984
+25 0.000112980742414948
+26 9.36032956815325e-05
+27 0.000132420434965752
+28 0.000123943143989891
+29 0.00011839484795928
+30 0.000130418440676294
+31 0.000121817771287169
+32 0.000149982675793581
+33 0.000100590128568001
+34 9.84130674623884e-05
+35 0.000109119166154414
+36 0.000118918826046865
+37 0.000134709043777548
+38 0.00014781003119424
+39 0.000122815254144371
+40 0.000126199374790303
+41 0.000107100189779885
+42 0.000124186000903137
+43 0.000113283495011274
+44 0.0001204046420753
+45 0.000103210390079767
+46 0.000136661721626297
+47 0.000137363764224574
+48 0.00011958577670157
+49 0.000116202070785221
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006070908443328728, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006070908443328728, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..b113cf3cdb7c133fa34e4cb096819a2a10e9c0d9
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006070908443328728, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006070908443328728, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006070908443328728, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..5cbe171625279409fdca61d578ba477ca01ff408
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006070908443328728, Learning_Process.tex	
@@ -0,0 +1,265 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=8.92717904949368e-09, ymax=0.000286832453366381,
+ymode=log,
+ytick style={color=black},
+ytick={1e-10,1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-10}}\),
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000130062457174063
+1 1.24574426081381e-05
+2 2.44926627601671e-06
+3 1.00280840342748e-06
+4 5.84825784244458e-07
+5 4.26612274395666e-07
+6 3.20509457196749e-07
+7 2.65025704493382e-07
+8 2.05637164185646e-07
+9 1.84362846766817e-07
+10 1.64838112937105e-07
+11 1.41354831839635e-07
+12 1.24253020317155e-07
+13 1.07920421044128e-07
+14 9.87923982620487e-08
+15 9.22523568647193e-08
+16 8.36015914273958e-08
+17 7.86258027574149e-08
+18 7.17203008093747e-08
+19 6.58667502762e-08
+20 6.36508090678944e-08
+21 5.74033549582964e-08
+22 5.42688525229096e-08
+23 5.19370182416878e-08
+24 4.61818885355569e-08
+25 4.45538113069688e-08
+26 4.29390460965351e-08
+27 3.99972499565138e-08
+28 3.88995857747432e-08
+29 3.59091814061685e-08
+30 3.48414701534239e-08
+31 3.44570452170956e-08
+32 3.32377148026808e-08
+33 3.10778069945172e-08
+34 3.26531193195478e-08
+35 2.95203896882867e-08
+36 2.7405269165115e-08
+37 2.68316302509675e-08
+38 2.57151242522013e-08
+39 2.6226688376596e-08
+40 2.5051116736563e-08
+41 2.37384725210177e-08
+42 2.41111095533597e-08
+43 2.30510721621613e-08
+44 2.28732695006784e-08
+45 2.10804387279495e-08
+46 2.08837089843428e-08
+47 2.05323740232188e-08
+48 2.02402361537679e-08
+49 1.90707396541256e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000145898244227283
+1 9.91295109997736e-06
+2 1.96351584236254e-06
+3 6.7297804662303e-07
+4 6.6732854975271e-07
+5 3.99237165993327e-07
+6 3.20125167263541e-07
+7 2.14399349829364e-07
+8 3.20514118357096e-07
+9 1.87228067716205e-07
+10 1.25561541608477e-07
+11 1.14883619062311e-07
+12 1.1877362027235e-07
+13 1.50581811908523e-07
+14 9.89536843576388e-08
+15 7.72243495816838e-08
+16 9.04585348848741e-08
+17 7.35081755465217e-08
+18 7.24227717796566e-08
+19 6.08597332529826e-08
+20 5.09099002954372e-08
+21 5.435290972855e-08
+22 5.62805446691073e-08
+23 5.21054879243366e-08
+24 5.60077069167164e-08
+25 5.75662966184609e-08
+26 4.34746034727596e-08
+27 3.91013195155665e-08
+28 3.14320907079946e-08
+29 3.92644849966928e-08
+30 3.90645951142687e-08
+31 3.72348267774214e-08
+32 3.14200363504824e-08
+33 3.03729805750663e-08
+34 2.84908630021619e-08
+35 2.26656808877124e-08
+36 3.3100459262414e-08
+37 2.791765929544e-08
+38 3.17486019696389e-08
+39 2.4810811183329e-08
+40 2.46299638462233e-08
+41 2.3560678741319e-08
+42 2.23284928324574e-08
+43 2.29872600954195e-08
+44 2.02627052914295e-08
+45 2.13173052543425e-08
+46 2.29835563914094e-08
+47 1.65638631699494e-08
+48 1.43078366932059e-08
+49 1.80657746540192e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00012925112969242
+1 0.000132462198962457
+2 0.000132436282001436
+3 0.0001338330184808
+4 0.000130647647893056
+5 0.000133525390992872
+6 0.000128558822325431
+7 0.000133365334477276
+8 0.000132565590320155
+9 0.000131174456328154
+10 0.000133047054987401
+11 0.000132128188852221
+12 0.000133423032821156
+13 0.000131870910990983
+14 0.000131230044644326
+15 0.000135416674311273
+16 0.000133138644741848
+17 0.000130534070194699
+18 0.00013463560026139
+19 0.000131411565234885
+20 0.000131927576148883
+21 0.000133944136905484
+22 0.000133658642880619
+23 0.000134465954033658
+24 0.000129952008137479
+25 0.000131681095808744
+26 0.000133955094497651
+27 0.000135883688926697
+28 0.000128553263493814
+29 0.000133902474772185
+30 0.000132873421534896
+31 0.000132358123664744
+32 0.000129302672576159
+33 0.000126665720017627
+34 0.000128765881527215
+35 0.000136237824335694
+36 0.000131592503748834
+37 0.000129295644001104
+38 0.000132032771944068
+39 0.000134257948957384
+40 0.000132243483676575
+41 0.000130618165712804
+42 0.000132392509840429
+43 0.000134082074509934
+44 0.000131385255372152
+45 0.000131208435050212
+46 0.000130832282593474
+47 0.000129677689983509
+48 0.00013369218504522
+49 0.000128656101878732
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000152937995153479
+1 0.000124452169984579
+2 0.000125226390082389
+3 0.000114985181426164
+4 0.000142081509693526
+5 0.000116223491204437
+6 0.000161542076966725
+7 0.000118332936835941
+8 0.000123783043818548
+9 0.000136230330099352
+10 0.00011859731603181
+11 0.000128823128761724
+12 0.000116098126454744
+13 0.000132521498017013
+14 0.000135213820612989
+15 9.85060396487825e-05
+16 0.000117308714834508
+17 0.000143060504342429
+18 0.000103227248473559
+19 0.000130964370328002
+20 0.000131763052195311
+21 0.000111436682345811
+22 0.000115280228783377
+23 0.000108649568574037
+24 0.000145055004395545
+25 0.00013355357805267
+26 0.000111659268441144
+27 9.48147717281245e-05
+28 0.000160672774654813
+29 0.000111407869553659
+30 0.000120747463370208
+31 0.000125052392832004
+32 0.000154862209456041
+33 0.000178965186933056
+34 0.00015739792434033
+35 9.14317788556218e-05
+36 0.00013396458234638
+37 0.000150847947224975
+38 0.000128111088997684
+39 0.000111548368295189
+40 0.000126354658277705
+41 0.000141530050314032
+42 0.000126118800835684
+43 0.000111132350866683
+44 0.00013556306657847
+45 0.000135831112856977
+46 0.000139357696752995
+47 0.000148638064274564
+48 0.000114007656520698
+49 0.00016057062020991
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00609199771135585, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00609199771135585, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..dc4a2b3342e7d2921847f19057071abceafc4173
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00609199771135585, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00609199771135585, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00609199771135585, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..812152286f2d61da526826747297597b85c1177c
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00609199771135585, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.60058242653242e-08, ymax=0.000304522871814541,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00014639861183241
+1 1.28352266983711e-05
+2 3.07757568407396e-06
+3 1.9855167465721e-06
+4 9.81439143288299e-07
+5 6.59396107494103e-07
+6 4.87986937969254e-07
+7 3.84353484150779e-07
+8 3.21484378673631e-07
+9 2.74842221870131e-07
+10 2.24986706598429e-07
+11 2.13216935662786e-07
+12 1.85278452136117e-07
+13 1.65576466315542e-07
+14 1.53092585719605e-07
+15 1.41095270578262e-07
+16 1.68329307825843e-07
+17 1.21499368788136e-07
+18 1.12805977892094e-07
+19 1.04797337030504e-07
+20 9.66634416954548e-08
+21 8.72597567536104e-08
+22 8.17695351429393e-08
+23 8.2408142532131e-08
+24 7.31849354451697e-08
+25 7.12037504513319e-08
+26 6.61199948126523e-08
+27 6.35829664474841e-08
+28 6.33328909316333e-08
+29 6.19281266267535e-08
+30 5.68676377099564e-08
+31 5.34427790910286e-08
+32 5.30896819839199e-08
+33 4.88148543809075e-08
+34 4.79403574615844e-08
+35 4.53839739122941e-08
+36 4.34607194677028e-08
+37 4.39049685496684e-08
+38 4.12281622175215e-08
+39 3.96644033173743e-08
+40 3.79857603149958e-08
+41 3.89378449483502e-08
+42 3.63323984231556e-08
+43 3.66941605989268e-08
+44 3.44358461745742e-08
+45 3.30916201107812e-08
+46 3.37075967138389e-08
+47 3.20984874235819e-08
+48 3.08234291424014e-08
+49 3.06200789168543e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000172146406839602
+1 1.31021652123309e-05
+2 2.60493675341422e-06
+3 2.24200448428746e-06
+4 1.05847834674933e-06
+5 6.42756390334398e-07
+6 4.71120358724875e-07
+7 4.02591609827141e-07
+8 3.17618372491779e-07
+9 2.71838786147782e-07
+10 3.36745330287158e-07
+11 1.95279071135701e-07
+12 1.76759357373157e-07
+13 1.90107286357488e-07
+14 1.62293687822057e-07
+15 1.47381342685549e-07
+16 1.31202682496223e-07
+17 1.09101350176388e-07
+18 9.28408141476211e-08
+19 9.11228070776815e-08
+20 8.20331322870516e-08
+21 1.00490026966327e-07
+22 8.89402755888113e-08
+23 7.2410280438362e-08
+24 8.26841244361276e-08
+25 7.01280598036647e-08
+26 7.65723413564956e-08
+27 6.78180782642812e-08
+28 4.67138079329743e-08
+29 4.08859328615563e-08
+30 4.59514879480594e-08
+31 6.22952853746028e-08
+32 4.84070206141496e-08
+33 4.57898856609518e-08
+34 3.76128816981236e-08
+35 4.29901767518004e-08
+36 4.02950419697845e-08
+37 4.33653823961322e-08
+38 3.23589581796568e-08
+39 4.28510134042881e-08
+40 3.45682522606694e-08
+41 3.34481171648804e-08
+42 3.67937467160573e-08
+43 3.17848858344405e-08
+44 3.13160022358261e-08
+45 3.52695970207151e-08
+46 2.96010629341481e-08
+47 3.07800895882337e-08
+48 3.07231395879626e-08
+49 2.50491840603217e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000146901526022702
+1 0.000149251631228253
+2 0.000146828286233358
+3 0.000144987745443359
+4 0.000144195160828531
+5 0.000144292003824376
+6 0.000147186932736076
+7 0.000149195911944844
+8 0.000148762148455717
+9 0.000147419079439715
+10 0.000147413680679165
+11 0.000142700868309475
+12 0.000148184582940303
+13 0.000146751815918833
+14 0.000144332254421897
+15 0.000147483107866719
+16 0.000146956008393317
+17 0.000146017191582359
+18 0.000147175858728588
+19 0.000146229765960015
+20 0.000147885744809173
+21 0.000146762336953543
+22 0.000144126926898025
+23 0.000146257822052576
+24 0.000149163155583665
+25 0.000145732527016662
+26 0.000144702862598933
+27 0.00014376119361259
+28 0.000148305916809477
+29 0.000145668935147114
+30 0.000144529447425157
+31 0.00014460229431279
+32 0.000144030331284739
+33 0.000143536410178058
+34 0.000148033112054691
+35 0.000142088945722207
+36 0.000147153536090627
+37 0.000141099822940305
+38 0.000146125297760591
+39 0.000145788872032426
+40 0.000148500839713961
+41 0.000146692269481719
+42 0.000144324003485963
+43 0.000146136619150639
+44 0.000145318219438195
+45 0.000145360434544273
+46 0.000147374550579116
+47 0.000145088080898859
+48 0.000145358178997412
+49 0.000146128993947059
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000144048623042181
+1 0.00012256957415957
+2 0.000141803131555207
+3 0.000157319387653843
+4 0.000168428916367702
+5 0.00016676243103575
+6 0.000139137569931336
+7 0.000123789475765079
+8 0.000124590209452435
+9 0.000138225892442279
+10 0.000137771901790984
+11 0.000180241651833057
+12 0.000132353903609328
+13 0.000142796008731239
+14 0.000164804398082197
+15 0.000138229268486612
+16 0.000142859178595245
+17 0.000150586041854694
+18 0.000139272611704655
+19 0.000147132304846309
+20 0.000132589746499434
+21 0.000142931661684997
+22 0.000166888261446729
+23 0.000148908336996101
+24 0.000120801785669755
+25 0.000150236839544959
+26 0.00016250996850431
+27 0.000169725943123922
+28 0.000129172243759967
+29 0.000155029585584998
+30 0.000171714040334336
+31 0.000164388664416037
+32 0.000167215272085741
+33 0.000173378211911768
+34 0.000131422842969187
+35 0.000185283992323093
+36 0.000140322823426686
+37 0.000194582768017426
+38 0.000149083090946078
+39 0.000150484309415333
+40 0.000127111139590852
+41 0.000143248704262078
+42 0.000165885270689614
+43 0.000149436455103569
+44 0.000156162306666374
+45 0.000157184040290304
+46 0.000138227464049123
+47 0.000159507297212258
+48 0.000156471869559027
+49 0.000150571897393093
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00610153565066824, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00610153565066824, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..d21fcf38322075f30639cc3b7723fbfb01df11f0
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00610153565066824, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00610153565066824, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00610153565066824, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..74f38bdfb1a219c3085c31b91b582473aac3bc64
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00610153565066824, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.90654055143931e-08, ymax=0.000225366619211128,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000125818944070488
+1 1.26485629152739e-05
+2 6.29344867775217e-06
+3 2.81633242593671e-06
+4 1.80650920356129e-06
+5 1.36905327963177e-06
+6 1.04306752746197e-06
+7 8.95329719696747e-07
+8 7.13861368240032e-07
+9 6.15106614532124e-07
+10 5.3488525963985e-07
+11 4.7966011607059e-07
+12 4.31654115118363e-07
+13 3.75519135786817e-07
+14 3.37127147531646e-07
+15 3.09772417494969e-07
+16 2.85282595768876e-07
+17 2.4947459564828e-07
+18 2.39692809600456e-07
+19 2.22869985577745e-07
+20 2.03984228619447e-07
+21 1.90403312672061e-07
+22 1.80350681944219e-07
+23 1.76054811618087e-07
+24 1.61255314878872e-07
+25 1.48961859736119e-07
+26 1.48099047692085e-07
+27 1.36845287102005e-07
+28 1.32130310248613e-07
+29 1.1974002234183e-07
+30 1.18951348326846e-07
+31 1.15711841885968e-07
+32 1.0607618605718e-07
+33 1.07764897450124e-07
+34 1.02848616734263e-07
+35 9.87697958976241e-08
+36 9.4497409008909e-08
+37 8.77387051900769e-08
+38 8.37514093632308e-08
+39 8.43958147811463e-08
+40 8.32534254868733e-08
+41 7.83995091069301e-08
+42 7.83648914648438e-08
+43 7.64623138138631e-08
+44 7.31297120637464e-08
+45 6.8609445236234e-08
+46 6.91508574846011e-08
+47 6.6157383571408e-08
+48 6.81352645415245e-08
+49 6.11111659054586e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.00013790451339446
+1 1.88105004781391e-05
+2 6.38061601421214e-06
+3 2.65477115135582e-06
+4 1.7681319377516e-06
+5 1.23947120300727e-06
+6 1.06078664430242e-06
+7 8.39348274439544e-07
+8 8.02231795660191e-07
+9 6.97058055720845e-07
+10 5.18818524142262e-07
+11 4.3584068976088e-07
+12 3.68021375152239e-07
+13 3.92896538414789e-07
+14 3.44989132372575e-07
+15 3.16388906185239e-07
+16 2.48464374408286e-07
+17 3.10989207719103e-07
+18 2.25680068410838e-07
+19 2.25213995008744e-07
+20 1.81103899876689e-07
+21 1.972014445073e-07
+22 1.74661948904031e-07
+23 1.6767656063621e-07
+24 1.658811896732e-07
+25 1.72582744539795e-07
+26 1.51296703165826e-07
+27 1.35534719447605e-07
+28 1.15721547899739e-07
+29 1.31644640077866e-07
+30 1.03592697087151e-07
+31 1.01617686709687e-07
+32 1.11279931047648e-07
+33 1.15351625140647e-07
+34 9.22129999025856e-08
+35 1.04198420558532e-07
+36 8.71767014132274e-08
+37 9.37797821620734e-08
+38 1.058525427311e-07
+39 8.09988023320329e-08
+40 6.15114785773585e-08
+41 6.76494735785127e-08
+42 6.79301024320011e-08
+43 5.80635060032364e-08
+44 7.40162633405816e-08
+45 8.70657146379017e-08
+46 5.79096983699401e-08
+47 5.87824438014195e-08
+48 6.13330684018365e-08
+49 6.30057215289526e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000125719074276276
+1 0.000130399086629041
+2 0.000129595820908435
+3 0.000127710300148465
+4 0.000128714076709002
+5 0.00012503974721767
+6 0.000128014013171196
+7 0.000127842460642569
+8 0.00012895668623969
+9 0.000130790474941023
+10 0.000124970116303302
+11 0.000125580059830099
+12 0.000127503430121578
+13 0.000125435544759966
+14 0.00012871804938186
+15 0.00012722218525596
+16 0.000127563354908489
+17 0.000127959254314192
+18 0.000126471000839956
+19 0.000130136788357049
+20 0.00012915326806251
+21 0.000123919191537425
+22 0.00012502922618296
+23 0.000126724014990032
+24 0.000126568324049003
+25 0.000127141465782188
+26 0.000128321160445921
+27 0.000126709579490125
+28 0.000126923783682287
+29 0.000126846687635407
+30 0.000124933867482468
+31 0.000128621773910709
+32 0.000124903323012404
+33 0.000126078288303688
+34 0.000127393694128841
+35 0.000126567654660903
+36 0.00012676217011176
+37 0.00012909020006191
+38 0.00012557691661641
+39 0.000127952749608085
+40 0.000127670995425433
+41 0.000130330678075552
+42 0.000124322643387131
+43 0.000126280327094719
+44 0.000128851170302369
+45 0.000127409148262814
+46 0.000125914913951419
+47 0.000127326478832401
+48 0.00012617974425666
+49 0.000126952669234015
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000138491028337739
+1 9.66031147981994e-05
+2 0.000104266058770008
+3 0.000123512538266368
+4 0.000113129150122404
+5 0.000149051222251728
+6 0.000119405034638476
+7 0.000119863128929865
+8 0.000108396481664386
+9 9.34894342208281e-05
+10 0.00014822871889919
+11 0.000139385840157047
+12 0.000122917277622037
+13 0.000140156087582
+14 0.000111571724119131
+15 0.000125655715237372
+16 0.000120729986520018
+17 0.000117835290438961
+18 0.000130569111206569
+19 9.93207140709274e-05
+20 0.000108302039734554
+21 0.000152030464960262
+22 0.000145004130899906
+23 0.000131404740386643
+24 0.00012918483116664
+25 0.00012468165368773
+26 0.000117241455882322
+27 0.000129536565509625
+28 0.000130863496451639
+29 0.00012942191096954
+30 0.000146684003993869
+31 0.000112395202449989
+32 0.000143777855555527
+33 0.000138107978273183
+34 0.000123012854601257
+35 0.000131808221340179
+36 0.000129905398353003
+37 0.000109397595224436
+38 0.000139119874802418
+39 0.000119269141578116
+40 0.000119464079034515
+41 9.57194060902111e-05
+42 0.000151796150021255
+43 0.000135561669594608
+44 0.000108563341200352
+45 0.000126997852930799
+46 0.000137123744934797
+47 0.000124533704365604
+48 0.000133912588353269
+49 0.000127082850667648
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006125967976841068, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006125967976841068, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..664f6800a6ca90986c22289d5760639876274d82
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006125967976841068, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006125967976841068, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006125967976841068, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..f19a3778f01ac8d0af04d5b121c20ac9609cd4d0
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006125967976841068, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.32114561747137e-08, ymax=0.000337450491985037,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000131483146105893
+1 1.16831961349817e-05
+2 2.55052782449638e-06
+3 1.11713006845093e-06
+4 6.90992067120533e-07
+5 4.89281944737741e-07
+6 3.66264117701576e-07
+7 3.01967247651191e-07
+8 2.43632200636057e-07
+9 2.04592012664762e-07
+10 1.84031037520072e-07
+11 1.6535503277737e-07
+12 1.46575800386017e-07
+13 1.30149444999006e-07
+14 1.1546724465461e-07
+15 1.07751638722675e-07
+16 1.00099597943881e-07
+17 9.17016862445053e-08
+18 8.40670892898743e-08
+19 7.83053124564503e-08
+20 7.13259851181647e-08
+21 6.85191068328095e-08
+22 6.64928734295245e-08
+23 6.14861122016919e-08
+24 5.72202232262953e-08
+25 5.45305667287721e-08
+26 5.23386525230762e-08
+27 4.91222245102563e-08
+28 4.64974867497858e-08
+29 4.31400337674859e-08
+30 4.15203196268976e-08
+31 4.00180795168126e-08
+32 3.85426695004298e-08
+33 3.62560292899161e-08
+34 3.58618557072532e-08
+35 3.50999442844113e-08
+36 3.22726521062577e-08
+37 3.16615782480767e-08
+38 3.12900958476803e-08
+39 3.00940499187163e-08
+40 2.97174977959003e-08
+41 2.68589968044353e-08
+42 2.7074230857238e-08
+43 2.66028976625421e-08
+44 2.50277842894775e-08
+45 2.47779308182317e-08
+46 2.40388189354235e-08
+47 2.43561526502845e-08
+48 2.12885478134694e-08
+49 2.19639613163736e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000212755156098865
+1 1.4719485079695e-05
+2 2.6576749405649e-06
+3 9.58283635554835e-07
+4 1.1491182476675e-06
+5 4.983155008631e-07
+6 3.94672412085129e-07
+7 2.32944699973814e-07
+8 2.41511258991522e-07
+9 2.42616039258792e-07
+10 1.65398162721431e-07
+11 1.26668965094723e-07
+12 1.04071524731353e-07
+13 1.08364474726841e-07
+14 1.30362209915802e-07
+15 8.94431693154729e-08
+16 9.92891955320374e-08
+17 8.24349726258333e-08
+18 7.60184448722612e-08
+19 8.08437761179448e-08
+20 8.01397206373622e-08
+21 8.47434975526085e-08
+22 5.34353041814484e-08
+23 7.8848820805888e-08
+24 6.26678300363892e-08
+25 6.9757000176196e-08
+26 5.11990059237633e-08
+27 4.42576961745544e-08
+28 5.57066144324381e-08
+29 3.46947643947715e-08
+30 4.72859369438083e-08
+31 4.51888659824817e-08
+32 4.21547063922389e-08
+33 3.67677159829327e-08
+34 3.83029004069613e-08
+35 2.76762204265424e-08
+36 3.36725740623933e-08
+37 2.83031251768762e-08
+38 2.81269478819013e-08
+39 2.72169682347112e-08
+40 2.95351103574149e-08
+41 2.97370323920632e-08
+42 2.95667401672972e-08
+43 2.54808636412918e-08
+44 2.44384761316496e-08
+45 2.35147705751615e-08
+46 2.40583748478684e-08
+47 2.09546620055789e-08
+48 2.43337634486807e-08
+49 2.82303069809586e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00013584818225354
+1 0.000140335992909968
+2 0.000138704752316698
+3 0.000143068886245601
+4 0.000134442234411836
+5 0.000139664887683466
+6 0.000140941745485179
+7 0.000140332762384787
+8 0.00013692416541744
+9 0.000141783428261988
+10 0.000138593939482234
+11 0.000134911591885611
+12 0.000136680973810144
+13 0.000138971881824546
+14 0.000140000018291175
+15 0.000141889962833375
+16 0.000140514152008109
+17 0.00014090770855546
+18 0.000138855175464414
+19 0.000140370146255009
+20 0.00014022241521161
+21 0.000136232629301958
+22 0.000140038682729937
+23 0.000134524510940537
+24 0.000138467992655933
+25 0.000142079705256037
+26 0.000138602074002847
+27 0.000139189141918905
+28 0.000139150433824398
+29 0.000139447030960582
+30 0.00013968713756185
+31 0.000139948504511267
+32 0.000139777650474571
+33 0.000140302086947486
+34 0.000142797027365305
+35 0.000138895251438953
+36 0.000141575030284002
+37 0.000140469128382392
+38 0.000142154327477328
+39 0.000141671800520271
+40 0.000140356758492999
+41 0.000140147501952015
+42 0.000142203774885274
+43 0.000136865899548866
+44 0.000140234536956996
+45 0.000138251853059046
+46 0.00013376260176301
+47 0.000141587544931099
+48 0.000133982292027213
+49 0.00013992068124935
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000173498221556656
+1 0.000134303860249929
+2 0.00014942089910619
+3 0.000110080400190782
+4 0.000187483907211572
+5 0.000140041272970848
+6 0.000129431849927641
+7 0.000131448396132328
+8 0.000162168013048358
+9 0.000120125572721008
+10 0.000150818261317909
+11 0.000182969175511971
+12 0.000175329725607298
+13 0.000144785502925515
+14 0.000138718693051487
+15 0.000119056741823442
+16 0.000132010318338871
+17 0.000133790701511316
+18 0.000149325715028681
+19 0.000130381318740547
+20 0.000140005315188318
+21 0.000173181018908508
+22 0.000137317081680521
+23 0.000184705975698307
+24 0.000152726526721381
+25 0.000117963405500632
+26 0.000149364641401917
+27 0.000143210665555671
+28 0.000144869249197654
+29 0.000139447656692937
+30 0.000139389157993719
+31 0.000137147100758739
+32 0.000138077506562695
+33 0.000133501569507644
+34 0.00011261383042438
+35 0.000148277176776901
+36 0.000120761476864573
+37 0.000131274719024077
+38 0.000119931646622717
+39 0.000121386328828521
+40 0.00013319960271474
+41 0.000133085253764875
+42 0.000117700525152031
+43 0.00016482851060573
+44 0.000137156326672994
+45 0.000151527696289122
+46 0.000192607243661769
+47 0.000126084429211915
+48 0.000190653940080665
+49 0.000140197720611468
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00613179099301556, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00613179099301556, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..0cd0f0ea069cb5420548a31e4b3d067bb8ac96e0
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00613179099301556, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00613179099301556, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00613179099301556, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..a0c503485d53860df878f04646f0830a9af216aa
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00613179099301556, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.03894698546148e-08, ymax=0.000257833525024596,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000141651107696816
+1 2.13956354855327e-05
+2 3.00674651043664e-06
+3 1.75558625414851e-06
+4 9.86158397608961e-07
+5 7.08118761849619e-07
+6 5.59645911835105e-07
+7 4.49922509915268e-07
+8 3.64447231504528e-07
+9 3.17909325531218e-07
+10 2.77454972774649e-07
+11 2.4681551735739e-07
+12 2.08714553195932e-07
+13 1.88102447395977e-07
+14 1.66955800295909e-07
+15 1.58268377958848e-07
+16 1.44558825354579e-07
+17 1.37774449626704e-07
+18 1.30842749967996e-07
+19 1.14536703677004e-07
+20 1.11191582163883e-07
+21 9.78927658934481e-08
+22 9.27692838104122e-08
+23 9.0129212537704e-08
+24 8.55686010936552e-08
+25 7.93371626173212e-08
+26 7.63150254101674e-08
+27 7.30607396803862e-08
+28 6.92751953579318e-08
+29 6.37764472344315e-08
+30 6.51927081207759e-08
+31 6.13409909533402e-08
+32 5.94042646184789e-08
+33 5.58331940681001e-08
+34 5.4591623666056e-08
+35 5.55814203551108e-08
+36 5.07319803944029e-08
+37 4.77378527818928e-08
+38 5.07343855815634e-08
+39 4.70455141510229e-08
+40 4.32693916252447e-08
+41 4.18706704863325e-08
+42 4.17220107351568e-08
+43 4.27816466697095e-08
+44 3.96874781927181e-08
+45 3.76131126245127e-08
+46 3.56818397051484e-08
+47 3.46794131189654e-08
+48 3.66041774668702e-08
+49 3.60806353683074e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000128182480693795
+1 1.8760754755931e-05
+2 2.60731735579611e-06
+3 1.1927212426599e-06
+4 1.32334264435485e-06
+5 8.08603374480299e-07
+6 5.33266018010181e-07
+7 4.53032697578237e-07
+8 3.70974191810092e-07
+9 2.75173135833029e-07
+10 2.29043649824234e-07
+11 2.47154787302861e-07
+12 2.04566646289095e-07
+13 1.96987031131357e-07
+14 1.98887605051823e-07
+15 1.72855948221695e-07
+16 1.6473255470828e-07
+17 1.33450413386527e-07
+18 1.29802856463357e-07
+19 1.31202156694599e-07
+20 8.79731842928777e-08
+21 1.29398358694743e-07
+22 1.12078851088881e-07
+23 8.41907663584607e-08
+24 9.17575704306728e-08
+25 8.89155487016069e-08
+26 7.42770893680245e-08
+27 7.32093781152798e-08
+28 6.12827548707173e-08
+29 8.20374239651755e-08
+30 4.58695446070578e-08
+31 5.49744534339425e-08
+32 4.87391211834165e-08
+33 6.10038313197947e-08
+34 5.12050881695814e-08
+35 4.00306134906714e-08
+36 4.49789325784877e-08
+37 5.92080873218492e-08
+38 4.80180979423039e-08
+39 4.29588560280081e-08
+40 5.0929767070329e-08
+41 4.04308835300071e-08
+42 4.44574830282818e-08
+43 3.675637572087e-08
+44 3.91714642944407e-08
+45 3.60879361949173e-08
+46 3.96391293122633e-08
+47 4.00444797321597e-08
+48 3.13225747561319e-08
+49 3.40805677012668e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000141447249916382
+1 0.000138969568070024
+2 0.000140523188747466
+3 0.00014186192129273
+4 0.000140393385663629
+5 0.000139126859721728
+6 0.000137177499709651
+7 0.000140258387546055
+8 0.000142616336233914
+9 0.000141261567478068
+10 0.000141453070682473
+11 0.000143165190820582
+12 0.000140338539495133
+13 0.000144067525980063
+14 0.000143825775012374
+15 0.000143794080941007
+16 0.000138893854455091
+17 0.000142150849569589
+18 0.000143317141919397
+19 0.000139873562147841
+20 0.000140128991915844
+21 0.000139806972583756
+22 0.000140205738716759
+23 0.000140597738209181
+24 0.000141378332045861
+25 0.000143721277709119
+26 0.000139891228172928
+27 0.000138793169753626
+28 0.000141128984978423
+29 0.000140076939715073
+30 0.000140931559144519
+31 0.00014302997442428
+32 0.000141503245686181
+33 0.000140497781103477
+34 0.000143043769639917
+35 0.000139530209708028
+36 0.000140359523356892
+37 0.000140305724926293
+38 0.000140052783535793
+39 0.000140630480018444
+40 0.000140404357807711
+41 0.000139115480124019
+42 0.000144450445077382
+43 0.000139534953632392
+44 0.00014023351832293
+45 0.000138290619361214
+46 0.00014059770910535
+47 0.000143807235872373
+48 0.000140282529173419
+49 0.000137786395498551
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000159984221681952
+1 0.000150039573782124
+2 0.000138818941195495
+3 0.000126315382658504
+4 0.000140259857289493
+5 0.000151050247950479
+6 0.000167837060871534
+7 0.000142036995384842
+8 0.000119719727081247
+9 0.000129375330288894
+10 0.000130552260088734
+11 0.000117872310511302
+12 0.000141637719934806
+13 0.000107387371826917
+14 0.00010780352022266
+15 0.000111442153865937
+16 0.000154719440615736
+17 0.000122639510664158
+18 0.00011346422979841
+19 0.00014528758765664
+20 0.000140559568535537
+21 0.000146195248817094
+22 0.00014104756701272
+23 0.000138322735438123
+24 0.000131898545078002
+25 0.000141799479024485
+26 0.000143232013215311
+27 0.000154687048052438
+28 0.000134891539346427
+29 0.000142978184157982
+30 0.000134788249852136
+31 0.000115968265163247
+32 0.000129750493215397
+33 0.000138101371703669
+34 0.000114564951218199
+35 0.000147807179018855
+36 0.000140087475301698
+37 0.000138008952490054
+38 0.000142299104481936
+39 0.000137259645271115
+40 0.000137925206217915
+41 0.000151902888319455
+42 0.000100241450127214
+43 0.000147426631883718
+44 0.000140573232783936
+45 0.000158274415298365
+46 0.000137950337375514
+47 0.000110418237454724
+48 0.000140271804411896
+49 0.00016165642591659
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006146411963837121, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006146411963837121, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..6c0711c809931cde9ef437d55939222fc9b973cf
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006146411963837121, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006146411963837121, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006146411963837121, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..31a5fe95d216bb6e228c60959f70b4f8c1428119
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006146411963837121, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.70653921052721e-06, ymax=0.000418621236763344,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000137797498609871
+1 1.60293348017149e-05
+2 3.85464545615832e-06
+3 3.01632212540426e-06
+4 0.000157334972755052
+5 4.06016952183563e-05
+6 2.90585667244159e-05
+7 2.35524239542428e-05
+8 2.08899982681032e-05
+9 1.84823638846865e-05
+10 1.66980535141192e-05
+11 1.51708327393862e-05
+12 1.38664263431565e-05
+13 1.30601847558864e-05
+14 1.21702723845374e-05
+15 1.15474167614593e-05
+16 1.07562154880725e-05
+17 1.03971660792013e-05
+18 9.73578880802961e-06
+19 9.18988007470034e-06
+20 8.95344146556454e-06
+21 8.35267019283492e-06
+22 8.01523128757253e-06
+23 7.78491994424257e-06
+24 7.50697836338077e-06
+25 7.3162905209756e-06
+26 7.08112520442228e-06
+27 6.87135616317391e-06
+28 6.58719227430993e-06
+29 6.2009471548663e-06
+30 6.36012737231795e-06
+31 5.97837060922757e-06
+32 5.85717316425871e-06
+33 5.65752861803048e-06
+34 5.44307204108918e-06
+35 5.38678750672261e-06
+36 5.20996673003538e-06
+37 4.94998630529153e-06
+38 4.87318357045297e-06
+39 4.88017030875199e-06
+40 4.78628589917207e-06
+41 4.60472983832005e-06
+42 4.4903813432029e-06
+43 4.4369025999913e-06
+44 4.3405116230133e-06
+45 4.25052348873578e-06
+46 4.24695645051543e-06
+47 4.26686074206373e-06
+48 3.95077267967281e-06
+49 3.91637922803056e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000159171133418567
+1 1.48472017826862e-05
+2 2.19148864744056e-06
+3 2.26039810513612e-06
+4 0.000148313061799854
+5 3.78411314159166e-05
+6 2.95394311251584e-05
+7 2.74338908639038e-05
+8 1.99029200302903e-05
+9 1.78482168848859e-05
+10 1.5800907931407e-05
+11 1.57088452397147e-05
+12 1.54685385496123e-05
+13 1.24430371215567e-05
+14 1.11786921479506e-05
+15 9.78704792942153e-06
+16 1.05150975286961e-05
+17 8.60169984662207e-06
+18 9.50845333136385e-06
+19 9.46078307606513e-06
+20 7.43810551284696e-06
+21 9.51654055825202e-06
+22 9.08420952328015e-06
+23 7.89869955042377e-06
+24 1.04001901490847e-05
+25 6.82811969454633e-06
+26 6.53245388093637e-06
+27 5.94562743572169e-06
+28 6.25492248218507e-06
+29 7.62403669796186e-06
+30 4.44984607383958e-06
+31 5.9320877880964e-06
+32 5.28078089701012e-06
+33 5.63341473025503e-06
+34 6.00640805714647e-06
+35 4.91899936605478e-06
+36 5.18014439876424e-06
+37 6.26006885795505e-06
+38 5.83529390496551e-06
+39 4.48144055553712e-06
+40 4.20971628045663e-06
+41 4.807873210666e-06
+42 5.0551830099721e-06
+43 4.46070862381021e-06
+44 4.36945947512868e-06
+45 4.08055075240554e-06
+46 3.33364300786343e-06
+47 3.60429658030625e-06
+48 4.28652629125281e-06
+49 3.93286927646841e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000142161705298349
+1 0.000138069401145913
+2 0.000143162222229876
+3 0.000141081371111795
+4 0.000142328513902612
+5 0.000139784504426643
+6 0.000141378768603317
+7 0.000140948613989167
+8 0.000140867006848566
+9 0.000141054639243521
+10 0.000138175804750063
+11 0.000140153977554291
+12 0.000139724768814631
+13 0.000141574506415054
+14 0.000138433562824503
+15 0.000138151706778444
+16 0.000138737625093199
+17 0.000139196883537807
+18 0.000141700118547305
+19 0.000141574913868681
+20 0.0001406346418662
+21 0.000136914153699763
+22 0.000141233598696999
+23 0.000138999705086462
+24 0.000138321629492566
+25 0.000139051306177862
+26 0.000139139650855213
+27 0.000138671879540198
+28 0.000140214542625472
+29 0.000137245428049937
+30 0.000325985514791682
+31 0.000142898730700836
+32 0.000142430188134313
+33 0.000138699804665521
+34 0.000139562122058123
+35 0.000136039350763895
+36 0.000141483586048707
+37 0.000141021111630835
+38 0.00013968360144645
+39 0.00014001943054609
+40 0.000140068485052325
+41 0.000137814015033655
+42 0.000138899995363317
+43 0.000141016149427742
+44 0.000140195246785879
+45 0.000139596828375943
+46 0.000140129472129047
+47 0.000140284828376025
+48 0.000140394884510897
+49 0.000139673313242383
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000119892029033508
+1 0.000157473492436111
+2 0.000113100009912159
+3 0.000129283856949769
+4 0.000129396212287247
+5 0.000143551646033302
+6 0.000129184569232166
+7 0.000130066517158411
+8 0.000131137858261354
+9 0.00013060231867712
+10 0.000155377885675989
+11 0.000140405725687742
+12 0.000144306992297061
+13 0.00012673789751716
+14 0.000154502864461392
+15 0.000165828343597241
+16 0.000152322740177624
+17 0.000147192811709829
+18 0.00012760995014105
+19 0.000127428822452202
+20 0.000135893962578848
+21 0.000167763020726852
+22 0.000128847852465697
+23 0.000149981264257804
+24 0.000154904715600424
+25 0.000148402570630424
+26 0.000148558989167213
+27 0.000155136498506181
+28 0.000136984730488621
+29 0.000163906413945369
+30 0.000134970236103982
+31 0.00011340512719471
+32 0.000117874660645612
+33 0.000151010812260211
+34 0.000142097123898566
+35 0.000172312909853645
+36 0.00012281684030313
+37 0.000129577398183756
+38 0.000147483573528007
+39 0.000138912204420194
+40 0.00013829895760864
+41 0.000156901034642942
+42 0.000150704785482958
+43 0.00013212047633715
+44 0.000137968439958058
+45 0.000145127880387008
+46 0.000137578928843141
+47 0.000138130955747329
+48 0.000137786046252586
+49 0.000143125580507331
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006175635002405535, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006175635002405535, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..1b55c7a99c80ba1e339e64d505db9422af82aeeb
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006175635002405535, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006175635002405535, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006175635002405535, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..99ea18b2a1e3922153bcf516bfa50d127a0ccebd
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006175635002405535, Learning_Process.tex	
@@ -0,0 +1,263 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=5.13359501831054e-07, ymax=0.000211381043141409,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00013150779705029
+1 1.60611743922345e-05
+2 2.85486548818881e-05
+3 1.56922505993862e-05
+4 1.17695753942826e-05
+5 9.13105577637907e-06
+6 7.86987493484048e-06
+7 6.76607851346489e-06
+8 5.79539300815668e-06
+9 5.11498910782393e-06
+10 4.65658149551018e-06
+11 4.18173976868275e-06
+12 3.69957615475869e-06
+13 3.36364996655902e-06
+14 3.17352578349528e-06
+15 2.89938066089235e-06
+16 2.78147581411758e-06
+17 2.47156390287273e-06
+18 2.33524838222365e-06
+19 2.19168987314333e-06
+20 2.0902705273329e-06
+21 1.94147378351772e-06
+22 1.86202009899716e-06
+23 1.77376034571353e-06
+24 1.6945207335084e-06
+25 1.64886012044008e-06
+26 1.56179760324449e-06
+27 1.48431684010575e-06
+28 1.43398688123852e-06
+29 1.37963934321306e-06
+30 1.3045735158812e-06
+31 1.26529630506411e-06
+32 1.22235132948845e-06
+33 1.17171384772519e-06
+34 1.16471380806615e-06
+35 1.1197664662177e-06
+36 1.08106007701281e-06
+37 1.04005584944389e-06
+38 1.01259684015531e-06
+39 9.78990442490613e-07
+40 9.6223880063917e-07
+41 9.52606853843463e-07
+42 9.18349712719646e-07
+43 8.67751566602237e-07
+44 8.64597836880421e-07
+45 8.39872996039048e-07
+46 8.3505375414461e-07
+47 7.90187868915382e-07
+48 7.81536812155537e-07
+49 7.55640883198794e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000104068967630155
+1 1.20565528050065e-05
+2 2.14978699659696e-05
+3 1.41723867272958e-05
+4 1.18615089377272e-05
+5 1.25908381960471e-05
+6 8.08817731012823e-06
+7 6.64029130348354e-06
+8 5.99714758209302e-06
+9 5.22378195455531e-06
+10 3.99076543544652e-06
+11 3.68223481927998e-06
+12 4.01562419938273e-06
+13 3.76933326151629e-06
+14 2.855545744751e-06
+15 2.9516320410039e-06
+16 2.03978538593219e-06
+17 2.91190349344106e-06
+18 2.61937270806811e-06
+19 2.37333256336569e-06
+20 2.15385239243915e-06
+21 2.39557448367123e-06
+22 2.03819877242495e-06
+23 1.90280923106911e-06
+24 1.75643435795791e-06
+25 1.39824624056928e-06
+26 1.47781202031183e-06
+27 1.58604746047786e-06
+28 1.38211601097282e-06
+29 1.35694358505134e-06
+30 1.49320590026036e-06
+31 1.32796947127645e-06
+32 1.29255988667865e-06
+33 1.31656361190835e-06
+34 1.03485945146531e-06
+35 1.06349386896909e-06
+36 1.06563072677091e-06
+37 1.13383919142507e-06
+38 1.03418960861745e-06
+39 1.06083234641119e-06
+40 9.26488610275555e-07
+41 7.4095260060858e-07
+42 8.30591773137712e-07
+43 1.09521010926983e-06
+44 8.22877893824625e-07
+45 8.45132603899401e-07
+46 6.74946079470828e-07
+47 8.82237998212076e-07
+48 8.35021637612954e-07
+49 8.26328516723152e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000128994695842266
+1 0.000128214000142179
+2 0.000127924926346168
+3 0.000128162166220136
+4 0.000130610162159428
+5 0.000129007254145108
+6 0.000131407403387129
+7 0.000129657797515392
+8 0.00013169227167964
+9 0.000131101551232859
+10 0.000126514452858828
+11 0.000130369677208364
+12 0.000129613908939064
+13 0.000126931961858645
+14 0.000129522537463345
+15 0.000131697350298055
+16 0.000127407678519376
+17 0.000128392523038201
+18 0.000130050379084423
+19 0.000131204957142472
+20 0.000130401385831647
+21 0.000127716630231589
+22 0.000128352578030899
+23 0.000130269880173728
+24 0.000128421059343964
+25 0.000129230218590237
+26 0.000127631879877299
+27 0.00012931194214616
+28 0.000127292092656717
+29 0.000131297943880782
+30 0.00013077502080705
+31 0.000131912311189808
+32 0.000127995022921823
+33 0.000127410748973489
+34 0.000129715364892036
+35 0.000130237967823632
+36 0.000129836917039938
+37 0.00012850936036557
+38 0.000130408647237346
+39 0.00012737289944198
+40 0.000127864303067327
+41 0.000129285792354494
+42 0.000129585358081385
+43 0.000129365929751657
+44 0.000126850543892942
+45 0.000128667597891763
+46 0.000128944084281102
+47 0.000129012099932879
+48 0.00012523504847195
+49 0.000129927764646709
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000128638232126832
+1 0.000134938352857716
+2 0.000137397117214277
+3 0.000133445122628473
+4 0.000111891822598409
+5 0.000127629304188304
+6 0.000107158812170383
+7 0.000120893520943355
+8 0.000102946898550726
+9 0.000108070125861559
+10 0.000149531872011721
+11 0.000113704780233093
+12 0.000120202334073838
+13 0.000145968850119971
+14 0.00012240833893884
+15 0.00010264893353451
+16 0.000144279256346636
+17 0.000131493434309959
+18 0.000117011833935976
+19 0.000106737614260055
+20 0.000113810543552972
+21 0.000138255141791888
+22 0.000132991452119313
+23 0.000114895265141968
+24 0.000131446155137382
+25 0.000125502148875967
+26 0.00013872652198188
+27 0.000124016616609879
+28 0.000141554162837565
+29 0.000107576481241267
+30 0.000110790788312443
+31 9.93246794678271e-05
+32 0.000136123955599032
+33 0.000141646902193315
+34 0.000120250486361329
+35 0.00011658291623462
+36 0.000120895994768944
+37 0.000132251225295477
+38 0.00011430362064857
+39 0.000141179290949367
+40 0.000136133894557133
+41 0.000124229030916467
+42 0.000121164906886406
+43 0.000124297774164006
+44 0.000146383172250353
+45 0.000130095591885038
+46 0.00012734484334942
+47 0.000130888816784136
+48 0.000160775016411208
+49 0.000118601717986166
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006188646171435223, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006188646171435223, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..7c0b3d9f8cbba8746c07876b7af2becff3dc90ae
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006188646171435223, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006188646171435223, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006188646171435223, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..32ff17f88f0a6fee99b12b996684b0086a60f8c4
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006188646171435223, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.59599933353501e-08, ymax=0.000447306583704112,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000149326486280188
+1 1.21855009638239e-05
+2 3.40043993674044e-06
+3 1.39101416607446e-06
+4 8.66791708631354e-07
+5 6.25572056378587e-07
+6 4.86837507196469e-07
+7 3.84343621817607e-07
+8 3.1816270507079e-07
+9 2.62709249909676e-07
+10 2.28077453812148e-07
+11 2.02268353177715e-07
+12 1.77146759483549e-07
+13 1.56474996515499e-07
+14 1.4381579660494e-07
+15 1.30667757503033e-07
+16 1.15305297754276e-07
+17 1.05625098001383e-07
+18 9.99835023662854e-08
+19 9.11393769342794e-08
+20 8.52612274115927e-08
+21 8.28877730896238e-08
+22 7.64044969514543e-08
+23 7.48330037936284e-08
+24 6.81117455769709e-08
+25 6.53763265745511e-08
+26 5.98895937287125e-08
+27 5.86522581613735e-08
+28 5.77152121650215e-08
+29 5.57466854900213e-08
+30 5.21980609846651e-08
+31 5.18980520780588e-08
+32 4.7667160885112e-08
+33 4.49191119855641e-08
+34 4.36887823695997e-08
+35 4.34410800664864e-08
+36 4.15356780081311e-08
+37 4.07655136314133e-08
+38 3.90813106321275e-08
+39 3.81981983821333e-08
+40 3.57495935077168e-08
+41 3.5495990147183e-08
+42 3.45081154762283e-08
+43 3.32267084957039e-08
+44 3.14322541328238e-08
+45 3.15741210954457e-08
+46 3.25883249274739e-08
+47 3.05655554200257e-08
+48 2.86037398211647e-08
+49 2.80599543600601e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000116116090794094
+1 9.92746208794415e-06
+2 2.3922257241793e-06
+3 1.21634388960956e-06
+4 8.56535223192623e-07
+5 6.35614185284794e-07
+6 4.65118773718132e-07
+7 4.19762272940716e-07
+8 2.97830666795562e-07
+9 2.76782429864397e-07
+10 2.11908627534285e-07
+11 1.74183000467565e-07
+12 1.71159726392034e-07
+13 1.75975785055016e-07
+14 1.21190055324405e-07
+15 1.03370489057397e-07
+16 1.17083665429618e-07
+17 1.10798218599939e-07
+18 9.26465162365275e-08
+19 9.55861452212048e-08
+20 9.10740425297263e-08
+21 9.22866334462924e-08
+22 9.83681829325178e-08
+23 4.6779877749259e-08
+24 7.20652124641674e-08
+25 5.61613724414656e-08
+26 5.83587898006499e-08
+27 6.47983569024291e-08
+28 4.79433097666515e-08
+29 5.01235888350493e-08
+30 4.59397924146288e-08
+31 5.00296621908092e-08
+32 4.16387244683847e-08
+33 4.58386004709155e-08
+34 4.46966161860018e-08
+35 4.06336155833742e-08
+36 3.74119792923011e-08
+37 4.33215348039084e-08
+38 4.2049318693671e-08
+39 4.07763103282832e-08
+40 4.31975202275225e-08
+41 3.47345512352604e-08
+42 3.86349832126598e-08
+43 4.30726423417127e-08
+44 3.163415485119e-08
+45 3.15434078856924e-08
+46 4.54881181610745e-08
+47 2.5421144300708e-08
+48 2.64799098204094e-08
+49 2.99383522417429e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000145744677865878
+1 0.000144264471600763
+2 0.000143160184961744
+3 0.000146563208545558
+4 0.000143913828651421
+5 0.000146987804328091
+6 0.000147439277498052
+7 0.000146958787809126
+8 0.000145909420098178
+9 0.000143870842293836
+10 0.000141831726068631
+11 0.000146435748320073
+12 0.000145106081617996
+13 0.000144713369081728
+14 0.000147693921462633
+15 0.000149360959767364
+16 0.000149592568050139
+17 0.000147539176396094
+18 0.000144844816531986
+19 0.000145557612995617
+20 0.000148499049828388
+21 0.000146633727126755
+22 0.000143151453812607
+23 0.000143756289617158
+24 0.00014395710604731
+25 0.000149820203660056
+26 0.000146326841786504
+27 0.000147735554492101
+28 0.000146211939863861
+29 0.000147141690831631
+30 0.000143578552524559
+31 0.000148343635373749
+32 0.000145790414535441
+33 0.000148449558764696
+34 0.00014797093172092
+35 0.000144631689181551
+36 0.000149764440720901
+37 0.000147619459312409
+38 0.000142690274515189
+39 0.00014831758744549
+40 0.00014688509691041
+41 0.000147043581819162
+42 0.000142278237035498
+43 0.000147485465276986
+44 0.000145666097523645
+45 0.000147750790347345
+46 0.000145395722938702
+47 0.000141172684379853
+48 0.000146720223710872
+49 0.000145819576573558
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000147309954627417
+1 0.000170787956449203
+2 0.000171298015629873
+3 0.000140017946250737
+4 0.000165257137268782
+5 0.000143689947435632
+6 0.000132068831590004
+7 0.000136695423861966
+8 0.000146140373544767
+9 0.000165434190421365
+10 0.000180326562258415
+11 0.000141036332934164
+12 0.000154496199684218
+13 0.000156676731421612
+14 0.000130041284137405
+15 0.000117638322990388
+16 0.000114782458695117
+17 0.000133573936182074
+18 0.000155972345964983
+19 0.000151527565321885
+20 0.00012193201109767
+21 0.000145422294735909
+22 0.000172940053744242
+23 0.000164552286150865
+24 0.000280829612165689
+25 0.000124396159662865
+26 0.000143365235999227
+27 0.000132325818412937
+28 0.000141995842568576
+29 0.000136727496283129
+30 0.000168392129126005
+31 0.000125284306704998
+32 0.000145744052133523
+33 0.000122822981211357
+34 0.000126128565170802
+35 0.000158732567797415
+36 0.000111907640530262
+37 0.000131612454424612
+38 0.000176975532667711
+39 0.000123482357594185
+40 0.000136675269459374
+41 0.000140406162245199
+42 0.000187794852536172
+43 0.000131398381199688
+44 0.000153490153024904
+45 0.000128261614008807
+46 0.000150389096233994
+47 0.000189714031876065
+48 0.000138771370984614
+49 0.000145247759064659
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006201218814152717, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006201218814152717, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..77b941959f68d89196e95f3c912e6f2942d86292
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006201218814152717, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006201218814152717, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006201218814152717, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..e6d6756c3c00ca70c4b6fafb52efb361ab644185
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006201218814152717, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.52578071509936e-08, ymax=0.000264805656868991,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000140485586598516
+1 2.65127564489376e-05
+2 3.3401699965907e-06
+3 1.50231448969862e-06
+4 8.54966913266253e-07
+5 6.1745799939672e-07
+6 4.62587138372328e-07
+7 3.74076023490488e-07
+8 3.1607800110578e-07
+9 2.52899440056353e-07
+10 2.27559667109745e-07
+11 1.96711667399541e-07
+12 1.75288192849621e-07
+13 1.5373078099401e-07
+14 1.36940897732529e-07
+15 1.30539064002733e-07
+16 1.12572372756858e-07
+17 1.06049427017751e-07
+18 1.00580010098383e-07
+19 8.91404638991844e-08
+20 8.77888552963668e-08
+21 7.72087247469244e-08
+22 7.77104958160635e-08
+23 7.36207610430029e-08
+24 6.77611566857195e-08
+25 6.50919318445631e-08
+26 6.1979598342532e-08
+27 5.96854761170107e-08
+28 5.36801181283408e-08
+29 5.15116482802114e-08
+30 4.91300617966317e-08
+31 4.99766379391531e-08
+32 4.5557097649862e-08
+33 4.32634621461148e-08
+34 4.0854036598148e-08
+35 3.81501195079181e-08
+36 3.79499596192545e-08
+37 3.71956474509716e-08
+38 3.67466554962448e-08
+39 3.44795445528234e-08
+40 3.30087885913599e-08
+41 3.39952741512661e-08
+42 3.23040296734689e-08
+43 3.17385477899279e-08
+44 2.93685502583685e-08
+45 3.0797718153508e-08
+46 2.83030612280299e-08
+47 2.71014926056523e-08
+48 2.57646810553069e-08
+49 2.5117515178863e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000131562395836227
+1 2.05471478693653e-05
+2 3.76221873921168e-06
+3 1.73008845649747e-06
+4 1.0379058039689e-06
+5 6.85234340380703e-07
+6 4.93976529014617e-07
+7 3.95672856257079e-07
+8 2.64728868160091e-07
+9 3.07643148289571e-07
+10 1.87650286420649e-07
+11 2.18163322074361e-07
+12 1.66293304459941e-07
+13 1.68358027963222e-07
+14 1.38405368943495e-07
+15 1.18178903107946e-07
+16 1.38540812599786e-07
+17 1.13632488307758e-07
+18 1.19331886594409e-07
+19 1.2834492224556e-07
+20 7.76529063273301e-08
+21 8.6661053444459e-08
+22 5.7027591537917e-08
+23 6.71233451043918e-08
+24 7.55052127487943e-08
+25 6.73373037329839e-08
+26 6.06867303076797e-08
+27 5.57019461666641e-08
+28 5.11225088928313e-08
+29 5.48579350834189e-08
+30 4.85495945667935e-08
+31 3.98026145376207e-08
+32 4.6028585387603e-08
+33 4.53351134410696e-08
+34 4.55326123471878e-08
+35 4.54848922970541e-08
+36 4.5115253755057e-08
+37 4.58606805864292e-08
+38 2.86615442490756e-08
+39 3.52446356544078e-08
+40 3.56047351601774e-08
+41 2.69484310422285e-08
+42 3.22129061203213e-08
+43 2.58233345817871e-08
+44 2.69827129528721e-08
+45 2.9611284091402e-08
+46 3.02286267128693e-08
+47 2.3779007207736e-08
+48 2.98310460777884e-08
+49 2.45074840421466e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00014132636715658
+1 0.000137182942125946
+2 0.000139975338242948
+3 0.000138316056109034
+4 0.000139204566949047
+5 0.000140211341204122
+6 0.000139309762744233
+7 0.000138125600642525
+8 0.000136424743686803
+9 0.000140448508318514
+10 0.000140273361466825
+11 0.000140445088618435
+12 0.00013867711822968
+13 0.000140351941809058
+14 0.000140486707095988
+15 0.000142580960527994
+16 0.000140842312248424
+17 0.000140054893563502
+18 0.000141146971145645
+19 0.000139102165121585
+20 0.000139469630084932
+21 0.000140046002343297
+22 0.00014105461013969
+23 0.000139482915983535
+24 0.000139645300805569
+25 0.000140689298859797
+26 0.000140592237585224
+27 0.000137272145366296
+28 0.000140439107781276
+29 0.000142159115057439
+30 0.000136829243274406
+31 0.000138173156301491
+32 0.000141348791657947
+33 0.00013914069859311
+34 0.000139073905302212
+35 0.00014027877477929
+36 0.000143450582982041
+37 0.000137966242618859
+38 0.000140244475915097
+39 0.000140455173095688
+40 0.00013903810759075
+41 0.00013873066927772
+42 0.000138571907882579
+43 0.00013747344200965
+44 0.000143679411849007
+45 0.000139841547934338
+46 0.000139452356961556
+47 0.000141090553370304
+48 0.000138177172630094
+49 0.000139488780405372
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.00012554568820633
+1 0.00016234848590102
+2 0.000138262708787806
+3 0.000153293643961661
+4 0.000142904958920553
+5 0.000135801456053741
+6 0.000143974655657075
+7 0.000152729437104426
+8 0.000169912629644386
+9 0.000132396336994134
+10 0.000133993758936413
+11 0.00013110825966578
+12 0.000150210034917109
+13 0.000133147725136951
+14 0.000133626264869235
+15 0.000118032032332849
+16 0.000130331463878974
+17 0.000136773669510148
+18 0.000125043239677325
+19 0.000144705976708792
+20 0.000140897551318631
+21 0.000138641044031829
+22 0.000125610575196333
+23 0.00014254471170716
+24 0.0001408911193721
+25 0.000132574161398225
+26 0.000133907306008041
+27 0.000160706724273041
+28 0.000135632915771566
+29 0.000117112162115518
+30 0.000166035330039449
+31 0.000154873967403546
+32 0.00012470519868657
+33 0.000143333993037231
+34 0.000145433426951058
+35 0.000137238210299984
+36 0.000107358362583909
+37 0.000154210327309556
+38 0.000135302150738426
+39 0.000134356654598378
+40 0.000145711601362564
+41 0.000148395381984301
+42 0.000151228261529468
+43 0.000160646421136335
+44 0.000106686042272486
+45 0.000138241870445199
+46 0.000145538579090498
+47 0.00012868874182459
+48 0.000152633190737106
+49 0.000141731681651436
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006202094921493024, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006202094921493024, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..2a309677ecbface28dfd250b7850eb0c7ec1f7f1
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006202094921493024, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006202094921493024, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006202094921493024, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..f2d821466aabb1a3d4cfe39bf75a2a90298148f0
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006202094921493024, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.60518464564112e-08, ymax=0.00033437433925876,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000147265804116614
+1 1.05681674540392e-05
+2 2.61378750110453e-06
+3 1.32195805235824e-06
+4 8.62016690916789e-07
+5 6.18848730482568e-07
+6 4.76309025998489e-07
+7 3.86903508342584e-07
+8 3.19687757155407e-07
+9 3.09108543206094e-07
+10 2.42176497522451e-07
+11 2.05019759391689e-07
+12 1.84235531719423e-07
+13 1.65624967962685e-07
+14 1.47823314478046e-07
+15 1.36163393449351e-07
+16 1.16144576622901e-07
+17 1.13743418239665e-07
+18 1.04525803124034e-07
+19 1.00145669534868e-07
+20 9.2479183422256e-08
+21 8.83503403770192e-08
+22 7.85469467246003e-08
+23 7.04163838349814e-08
+24 7.04642673099443e-08
+25 6.77667131299131e-08
+26 5.97353988496252e-08
+27 5.7543399378801e-08
+28 5.90672613043353e-08
+29 5.25110941396179e-08
+30 5.28131565147305e-08
+31 4.81531685636583e-08
+32 4.65354652590122e-08
+33 4.37725411472911e-08
+34 4.28382662676086e-08
+35 4.18081675945814e-08
+36 4.03176052543586e-08
+37 3.80112155085044e-08
+38 3.6758631694056e-08
+39 3.66539616436512e-08
+40 3.4137340065854e-08
+41 3.43688064674552e-08
+42 3.15674064665927e-08
+43 3.19232782430845e-08
+44 2.93204269752323e-08
+45 2.91640347427347e-08
+46 2.80035443722682e-08
+47 2.79328915553378e-08
+48 2.8349814940043e-08
+49 2.57873935538555e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000165327335707843
+1 7.68481277191313e-06
+2 2.63347305917705e-06
+3 1.75982734162972e-06
+4 9.79450533122872e-07
+5 5.22935522440093e-07
+6 4.35543881849298e-07
+7 3.54088200538172e-07
+8 3.67718740790224e-07
+9 2.28736425356146e-07
+10 3.24924542383087e-07
+11 2.42080034240644e-07
+12 2.1099099001276e-07
+13 1.70837310520255e-07
+14 1.56144409402259e-07
+15 1.16289690765825e-07
+16 1.82584798835705e-07
+17 1.09917337454135e-07
+18 1.10363963301552e-07
+19 7.88255292150097e-08
+20 7.83030529305506e-08
+21 7.79228486180727e-08
+22 6.76809719379889e-08
+23 9.47306659782043e-08
+24 9.16371973858077e-08
+25 5.83310288959638e-08
+26 6.35685282190934e-08
+27 6.59195080743302e-08
+28 5.8037716854642e-08
+29 5.70981875114285e-08
+30 4.40762342179823e-08
+31 6.2709155201901e-08
+32 4.80039084038708e-08
+33 5.1848939364163e-08
+34 4.38461498220022e-08
+35 4.53234463293484e-08
+36 4.28826538723115e-08
+37 4.36143636761699e-08
+38 3.98637602927465e-08
+39 3.47506627917937e-08
+40 3.27023421675676e-08
+41 3.80297038304889e-08
+42 3.48661295390684e-08
+43 3.34610028573934e-08
+44 3.25646389853773e-08
+45 2.87066423965143e-08
+46 2.95980733255874e-08
+47 2.90007911019075e-08
+48 2.5224926147871e-08
+49 2.84488805846195e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000147843224112876
+1 0.000152128210174851
+2 0.000151445885421708
+3 0.000149564017192461
+4 0.000148072402225807
+5 0.000148059596540406
+6 0.000148016886669211
+7 0.000148194187204354
+8 0.000151022337377071
+9 0.000148250284837559
+10 0.000148525126860477
+11 0.000149060433614068
+12 0.000150708248838782
+13 0.00015108821389731
+14 0.000149037528899498
+15 0.000148981707752682
+16 0.00015310020535253
+17 0.000148959035868756
+18 0.000146438673255034
+19 0.000152047476149164
+20 0.000149747604154982
+21 0.000149483821587637
+22 0.000149442814290524
+23 0.000150601263158023
+24 0.00015136631554924
+25 0.000146909267641604
+26 0.000148687468026765
+27 0.000146455524372868
+28 0.000150622901855968
+29 0.000148093531606719
+30 0.000146889462484978
+31 0.00015234062448144
+32 0.000150262523675337
+33 0.000148162653204054
+34 0.000152538603288122
+35 0.000145352983963676
+36 0.00015029901987873
+37 0.000147188067785464
+38 0.000149807281559333
+39 0.000141499054734595
+40 0.00015094384434633
+41 0.000151265441672876
+42 0.000151124084368348
+43 0.000153282540850341
+44 0.000145822050399147
+45 0.00014442129759118
+46 0.000150084379129112
+47 0.000149892308400013
+48 0.000145866812090389
+49 0.000148692299262621
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000156558802700602
+1 0.000125890524941497
+2 0.000126392187667079
+3 0.000141683456604369
+4 0.000157659087562934
+5 0.000154929584823549
+6 0.000162204974913038
+7 0.000154959503561258
+8 0.00013051531277597
+9 0.000154250781633891
+10 0.000155645640916191
+11 0.000146995022078045
+12 0.000133094188640825
+13 0.000128820916870609
+14 0.000145818296005018
+15 0.000148628896567971
+16 0.000110574001155328
+17 0.000156829482875764
+18 0.000169620310771279
+19 0.000120058830361813
+20 0.000140612290124409
+21 0.000140929201734252
+22 0.000143648256198503
+23 0.000136654052766971
+24 0.000128334941109642
+25 0.000167857433552854
+26 0.000149625600897707
+27 0.000172974541783333
+28 0.000133606954477727
+29 0.00015622416685801
+30 0.000169839942827821
+31 0.000116638140752912
+32 0.000139298310386948
+33 0.000154500288772397
+34 0.000112814617750701
+35 0.000182275995030068
+36 0.00014111764903646
+37 0.000165778896189295
+38 0.000139210125780664
+39 0.000212778642890044
+40 0.000128358107758686
+41 0.000128658910398372
+42 0.000127391656860709
+43 0.000110575500002597
+44 0.000176298242877237
+45 0.000185737750143744
+46 0.000135070629767142
+47 0.000141105061629787
+48 0.000175988927367143
+49 0.00014770295820199
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006212999084655287, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006212999084655287, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..c1aa806d2091fa4d779ec66f986b9a0e2ca68df7
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006212999084655287, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006212999084655287, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006212999084655287, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..b20c24befc118c1dc27b78bb816444589968ab7f
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006212999084655287, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.13055282957245e-08, ymax=0.000261220825184064,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00012963346671313
+1 1.26757777252351e-05
+2 3.48798675986473e-06
+3 1.84575014827715e-06
+4 1.2806924587494e-06
+5 9.12969881028403e-07
+6 7.07036292624252e-07
+7 5.64592653518048e-07
+8 4.88753187255497e-07
+9 4.13896856343854e-07
+10 3.40666559850433e-07
+11 3.18443198921159e-07
+12 2.64600515720304e-07
+13 2.44238947288977e-07
+14 2.16670429153965e-07
+15 1.95175061890041e-07
+16 1.77294268155492e-07
+17 1.71460996511996e-07
+18 1.58769964286876e-07
+19 1.45918448879456e-07
+20 1.35292935965481e-07
+21 1.21487602200432e-07
+22 1.20100750677921e-07
+23 1.11030672655943e-07
+24 1.06225257923143e-07
+25 1.00766406774255e-07
+26 9.13008406655536e-08
+27 8.79219683724841e-08
+28 8.66406111299511e-08
+29 8.040591126246e-08
+30 7.52293942696269e-08
+31 7.65193419738353e-08
+32 7.28921136783356e-08
+33 6.92733195251094e-08
+34 6.71515607564288e-08
+35 6.14781043850599e-08
+36 6.06228596211622e-08
+37 5.73883198740077e-08
+38 5.7179246226724e-08
+39 5.48101937170031e-08
+40 5.02690049586363e-08
+41 5.10756557048353e-08
+42 4.89661999836244e-08
+43 4.59348683534699e-08
+44 4.60808777802413e-08
+45 4.45297558826496e-08
+46 4.2971898039923e-08
+47 4.34652420722159e-08
+48 4.06156530630142e-08
+49 3.97244619421144e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000124705009511672
+1 1.00166607808205e-05
+2 3.71255237041623e-06
+3 2.00580939235806e-06
+4 1.0897248330366e-06
+5 1.06948505163018e-06
+6 7.47036210668739e-07
+7 6.88396880832443e-07
+8 4.10400474493144e-07
+9 3.99942479134552e-07
+10 4.08177498911755e-07
+11 2.73331892230999e-07
+12 3.13800967433053e-07
+13 2.30882392315834e-07
+14 2.41091299812979e-07
+15 2.05010252329885e-07
+16 2.16361655702713e-07
+17 1.51296134731638e-07
+18 1.24852931548958e-07
+19 1.40045202101646e-07
+20 1.14697016329046e-07
+21 1.4759559974209e-07
+22 1.10505290251695e-07
+23 1.10890702842426e-07
+24 1.05295100638614e-07
+25 8.97648391173789e-08
+26 9.95670106362923e-08
+27 9.99503626530895e-08
+28 7.75993527213359e-08
+29 6.87745043137511e-08
+30 7.96243284639786e-08
+31 7.59181872922454e-08
+32 5.86141730707368e-08
+33 6.1665041073411e-08
+34 5.16062144129137e-08
+35 6.07321268830674e-08
+36 5.0364651116297e-08
+37 6.08101018428897e-08
+38 5.06625177365549e-08
+39 5.25411927299047e-08
+40 6.20910896032001e-08
+41 4.75304027247603e-08
+42 4.7265057645518e-08
+43 5.12724227519357e-08
+44 4.23993569143022e-08
+45 4.4268983145912e-08
+46 5.05952186813374e-08
+47 4.22463948268614e-08
+48 3.85934342261862e-08
+49 3.26839035835746e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000129474850837141
+1 0.000127102175611071
+2 0.000130014581372961
+3 0.000130404863739386
+4 0.000128451065393165
+5 0.000129470048705116
+6 0.000131880995468237
+7 0.000128920117276721
+8 0.000129828011267819
+9 0.000128158964798786
+10 0.000128661180497147
+11 0.000128266823594458
+12 0.000130873886519112
+13 0.000129148073028773
+14 0.000129291889606975
+15 0.000130495202029124
+16 0.00012764307030011
+17 0.000128378931549378
+18 0.000126899642054923
+19 0.000130716871353798
+20 0.000131760854856111
+21 0.000128565938211977
+22 0.000129344538436271
+23 0.00012911728117615
+24 0.000130330809042789
+25 0.000130931803141721
+26 0.000130518630612642
+27 0.000129177366034128
+28 0.000128940242575482
+29 0.000132126981043257
+30 0.000124329468235373
+31 0.000128803585539572
+32 0.00013004508218728
+33 0.000126016413560137
+34 0.000128806743305176
+35 0.00012840933050029
+36 0.000126985934912227
+37 0.000130856409668922
+38 0.000128065294120461
+39 0.000131307344418019
+40 0.000129182924865745
+41 0.000128309009596705
+42 0.00012851991050411
+43 0.000126004058984108
+44 0.000128427738673054
+45 0.000129755819216371
+46 0.000130789456306957
+47 0.000129211242892779
+48 0.000130491476738825
+49 0.000129300708067603
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000125822029076517
+1 0.000147040482261218
+2 0.000120857803267427
+3 0.000116947448987048
+4 0.000134499379782937
+5 0.000125586448120885
+6 0.000104996608570218
+7 0.000131418753881007
+8 0.000122443583677523
+9 0.000137405528221279
+10 0.000134542147861794
+11 0.000137471273774281
+12 0.000113090711238328
+13 0.00013116050104145
+14 0.000127063409308903
+15 0.000116076087579131
+16 0.000142000746564008
+17 0.000135908980155364
+18 0.000148792008985765
+19 0.000116324321425054
+20 0.000105892846477218
+21 0.000135694863274693
+22 0.000126716098748147
+23 0.000128819970996119
+24 0.000118462114187423
+25 0.00011213469406357
+26 0.000116954346594866
+27 0.000129021354950964
+28 0.000130768705275841
+29 0.000101228790299501
+30 0.000170280996826477
+31 0.000132889821543358
+32 0.000120523189252708
+33 0.000156303984113038
+34 0.000131308261188678
+35 0.000136861184728332
+36 0.000147415412357077
+37 0.00011358054325683
+38 0.0001384273491567
+39 0.000109718232124578
+40 0.00012897394481115
+41 0.000135887166834436
+42 0.000134173009428196
+43 0.000157493122969754
+44 0.000135053720441647
+45 0.00012329216406215
+46 0.000113938083813991
+47 0.000129723455756903
+48 0.00011731346603483
+49 0.000127731225802563
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006237930615717636, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006237930615717636, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..c2b655ae5b7aca753196ae1b9187ad898af6fe4a
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006237930615717636, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006237930615717636, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006237930615717636, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..b157a3aa8386003bcf133f9525b3112d9737d5a2
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006237930615717636, Learning_Process.tex	
@@ -0,0 +1,258 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.02847096537965e-06, ymax=244295.152210837,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-06,0.0001,0.01,1,100,10000,1000000,100000000},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{0}}\),
+  \(\displaystyle {10^{2}}\),
+  \(\displaystyle {10^{4}}\),
+  \(\displaystyle {10^{6}}\),
+  \(\displaystyle {10^{8}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000126646613352932
+1 1.98587604245404e-05
+2 9.65043582255021e-05
+3 5.51304474356584e-05
+4 0.00342186074703932
+5 0.0192602537572384
+6 0.00797399785369635
+7 0.898897409439087
+8 0.99647581577301
+9 0.312134176492691
+10 0.353492319583893
+11 0.357883602380753
+12 0.356587439775467
+13 0.346575289964676
+14 0.35329681634903
+15 0.349897146224976
+16 0.373247504234314
+17 0.3498714864254
+18 0.356605678796768
+19 0.363006353378296
+20 0.352778643369675
+21 0.355789452791214
+22 0.367730885744095
+23 0.356036484241486
+24 0.354266762733459
+25 0.368113547563553
+26 0.367454797029495
+27 0.36249178647995
+28 0.351681679487228
+29 0.360051810741425
+30 0.364008396863937
+31 0.355925917625427
+32 0.352509379386902
+33 0.351059824228287
+34 0.366454869508743
+35 0.349101126194
+36 0.359535187482834
+37 0.352793663740158
+38 0.364253401756287
+39 0.355464041233063
+40 0.366750866174698
+41 0.34211528301239
+42 0.360428333282471
+43 0.361381590366364
+44 0.3597232401371
+45 0.360837996006012
+46 0.357773214578629
+47 0.364040553569794
+48 0.363000750541687
+49 0.355743318796158
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000136425383971073
+1 2.45897190325195e-05
+2 3.38275344802241e-06
+3 7.56107619963586e-05
+4 3.94053022318985e-05
+5 0.0216943603008986
+6 0.00285825482569635
+7 74273.953125
+8 2934.20092773438
+9 0.308697193861008
+10 0.615930378437042
+11 0.381196349859238
+12 146.249633789062
+13 362.123382568359
+14 0.408893972635269
+15 146.029937744141
+16 0.251540333032608
+17 65.3986434936523
+18 0.335077971220016
+19 0.338699281215668
+20 370.316253662109
+21 0.338016957044601
+22 0.302315145730972
+23 382.680236816406
+24 0.355641216039658
+25 0.299367159605026
+26 0.29177913069725
+27 0.324769794940948
+28 137.758590698242
+29 0.302399486303329
+30 0.328350812196732
+31 1.20358037948608
+32 133.088760375977
+33 167.736221313477
+34 0.306285560131073
+35 134.681625366211
+36 0.34606745839119
+37 0.340024590492249
+38 0.329436391592026
+39 0.33213147521019
+40 0.301104456186295
+41 0.466846436262131
+42 0.282013803720474
+43 0.281091123819351
+44 0.3128741979599
+45 0.300149172544479
+46 20.556676864624
+47 0.320063918828964
+48 259.495452880859
+49 0.41365310549736
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000128883038996719
+1 0.000127725696074776
+2 0.00012995935685467
+3 0.000127122330013663
+4 0.000125797159853391
+5 0.000127492254250683
+6 0.000128142535686493
+7 0.00012890572543256
+8 0.000124986909213476
+9 0.000127092527691275
+10 0.000126359242131002
+11 0.000128808140289038
+12 0.000131158245494589
+13 0.00012934060941916
+14 0.000129270207253285
+15 0.000126800485304557
+16 0.00012968311784789
+17 0.000130562970298342
+18 0.000127018662169576
+19 0.000125612408737652
+20 0.000126067476230673
+21 0.000126215469208546
+22 0.000127298859297298
+23 0.000125619990285486
+24 0.000126085622468963
+25 0.000127600855194032
+26 0.00012821244308725
+27 0.000127015286125243
+28 0.000129851614474319
+29 0.000128870902699418
+30 0.000128639003378339
+31 0.000127020713989623
+32 0.000128361672977917
+33 0.000129042295156978
+34 0.000127787759993225
+35 0.000126454775454476
+36 0.00012741242244374
+37 0.00012907046766486
+38 0.000130554908537306
+39 0.000126237908261828
+40 0.000126889979583211
+41 0.000127266364870593
+42 0.000128084488096647
+43 0.000124111291370355
+44 0.000130861168145202
+45 0.000126510669360869
+46 0.000126632032333873
+47 0.000127546125440858
+48 0.000127209816128016
+49 0.000127175895613618
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.00011644796904875
+1 0.000126672020996921
+2 0.000106082086858805
+3 0.000132722940179519
+4 0.000143481287523173
+5 0.000131322580273263
+6 0.000121248936920892
+7 0.000118083800771274
+8 0.000152691965922713
+9 0.000132234272314236
+10 0.00013853661948815
+11 0.000116922652523499
+12 9.8747514130082e-05
+13 0.000111223096610047
+14 0.000111673572973814
+15 0.000132904082420282
+16 0.000107219289930072
+17 0.000100336466857698
+18 0.000133289649966173
+19 0.000145352052641101
+20 0.000141576092573814
+21 0.000141958007588983
+22 0.000128690298879519
+23 0.000144927922519855
+24 0.000141770651680417
+25 0.000127463354147039
+26 0.000121810378914233
+27 0.000132612796733156
+28 0.000108527441625483
+29 0.000114519687485881
+30 0.000117439209134318
+31 0.00013338215649128
+32 0.000119266856927425
+33 0.000115832481242251
+34 0.000124509810120799
+35 0.000139247902552597
+36 0.000128390252939425
+37 0.000116034112579655
+38 9.91105698631145e-05
+39 0.000138852963573299
+40 0.000133626905153506
+41 0.000129221501993015
+42 0.000125382022815756
+43 0.000159159390022978
+44 9.79765245574526e-05
+45 0.000137856230139732
+46 0.000136779897729866
+47 0.000126702376292087
+48 0.000131842185510322
+49 0.000130822387291119
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00624412277406641, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00624412277406641, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..3443d10dd77c70edaf1d619eb5f9a18fbbad20d5
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00624412277406641, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00624412277406641, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00624412277406641, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..030bc3dc2fb92a2434fa86b3b5c23d78167d5443
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00624412277406641, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.33143262813985e-08, ymax=0.000266713424563121,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000120099204650614
+1 1.0206379556621e-05
+2 2.31929470828618e-06
+3 1.19489880034962e-06
+4 7.55503265281732e-07
+5 5.39806933375075e-07
+6 3.9879293467493e-07
+7 3.31130280528669e-07
+8 2.67427736844184e-07
+9 2.3742201449295e-07
+10 2.03132174192433e-07
+11 1.78287805852051e-07
+12 1.60384146852266e-07
+13 1.40398881853798e-07
+14 1.29298044271309e-07
+15 1.22962134696536e-07
+16 1.15930006927556e-07
+17 1.02100351284662e-07
+18 8.96575045317149e-08
+19 8.70906262662174e-08
+20 8.22351111651187e-08
+21 7.69040013892663e-08
+22 7.07491025764284e-08
+23 6.57188437003242e-08
+24 6.42748645418578e-08
+25 6.07741696967423e-08
+26 6.29599128387781e-08
+27 5.29219299494343e-08
+28 4.95277880929734e-08
+29 4.87992828368533e-08
+30 4.62305962400933e-08
+31 4.32856488430389e-08
+32 4.32597886401709e-08
+33 4.22650074938247e-08
+34 3.96867037011361e-08
+35 3.67819019686522e-08
+36 3.67735886186438e-08
+37 3.30995568731396e-08
+38 3.25910747278613e-08
+39 3.26082272295025e-08
+40 3.10232763922613e-08
+41 2.86454309161854e-08
+42 2.82436278808973e-08
+43 3.09522789621042e-08
+44 2.74262674793135e-08
+45 3.01155012039089e-08
+46 2.63485393503515e-08
+47 2.5106730916491e-08
+48 2.5404430559206e-08
+49 2.52311274095973e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000125251681311056
+1 1.10631253846805e-05
+2 2.79237906397611e-06
+3 1.27864632304409e-06
+4 1.15218540486239e-06
+5 4.24361047635102e-07
+6 3.65588647355253e-07
+7 3.73338906456411e-07
+8 3.46328960176834e-07
+9 2.18674955476672e-07
+10 1.97937751522659e-07
+11 2.30369693099419e-07
+12 1.62750751542262e-07
+13 1.4157762961986e-07
+14 1.16842059583178e-07
+15 1.37845788117374e-07
+16 9.40827931117383e-08
+17 9.83102026452798e-08
+18 1.16303532138318e-07
+19 8.00230637310051e-08
+20 9.11751030230334e-08
+21 1.81593662773594e-07
+22 5.72215768102069e-08
+23 8.33678583944675e-08
+24 4.53627144736402e-08
+25 5.27993755383704e-08
+26 7.16119643584534e-08
+27 4.98782704028145e-08
+28 5.64663764635043e-08
+29 4.81562345555631e-08
+30 4.85505893266236e-08
+31 4.76076991162699e-08
+32 3.35265291084852e-08
+33 3.72887001276467e-08
+34 4.49724630868786e-08
+35 3.827539529766e-08
+36 3.22365742988495e-08
+37 4.07816962422203e-08
+38 2.7065349073041e-08
+39 3.15696659924924e-08
+40 4.0467938333677e-08
+41 3.02432248133755e-08
+42 3.14566896975066e-08
+43 3.09025054434642e-08
+44 2.5132269598771e-08
+45 2.59615600128882e-08
+46 2.2086000583954e-08
+47 2.80313550149458e-08
+48 2.08858512706911e-08
+49 2.1705112374093e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000121216005936731
+1 0.000121169920021202
+2 0.000118526004371233
+3 0.000119431351777166
+4 0.000124659869470634
+5 0.00012067383795511
+6 0.000121545315778349
+7 0.000120066302770283
+8 0.000118097668746486
+9 0.000124085927382112
+10 0.000121515018690843
+11 0.00012310323654674
+12 0.000120459786558058
+13 0.00011970626655966
+14 0.000119385134894401
+15 0.000118831390864216
+16 0.000123714606161229
+17 0.000120571465231478
+18 0.000118597527034581
+19 0.000122189216199331
+20 0.000122008204925805
+21 0.000118465541163459
+22 0.000122628072858788
+23 0.000121649318316486
+24 0.000119045420433395
+25 0.000122819765238091
+26 0.000125647682580166
+27 0.000120269593026023
+28 0.000121737852168735
+29 0.000122058292618021
+30 0.000122305500553921
+31 0.000121204393508378
+32 0.000120707802125253
+33 0.000124798025353812
+34 0.000120920813060366
+35 0.000114848269731738
+36 0.000118514857604168
+37 0.000120873351988848
+38 0.00012144583160989
+39 0.000122302837553434
+40 0.000120052500278689
+41 0.000117651085020043
+42 0.000123345482279547
+43 0.000121875462355092
+44 0.000122134282719344
+45 0.000124788537505083
+46 0.000120681113912724
+47 0.000118826770631131
+48 0.000118975920486264
+49 0.000121164055599365
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000116305382107385
+1 0.000116903640446253
+2 0.000139575844514184
+3 0.000129742475110106
+4 8.44500536913984e-05
+5 0.000117653144116048
+6 0.000114508999104146
+7 0.00012448919005692
+8 0.000149566141772084
+9 9.18906371225603e-05
+10 0.000113655754830688
+11 0.000100594967079815
+12 0.000121062294056173
+13 0.000129857115098275
+14 0.000130502070533112
+15 0.000149695828440599
+16 9.25825297599658e-05
+17 0.000121919343655463
+18 0.000137722745421343
+19 0.000107831256173085
+20 0.000109968023025431
+21 0.000138801246066578
+22 0.000105135019111913
+23 0.00011216241546208
+24 0.000134992093080655
+25 9.92581408354454e-05
+26 0.000128343308460899
+27 0.00012288753350731
+28 0.000110322311229538
+29 0.0001067821867764
+30 0.000104008533526212
+31 0.000114459682663437
+32 0.000119810014439281
+33 8.49904390634038e-05
+34 0.000116674804303329
+35 0.000170024650287814
+36 0.000139520736411214
+37 0.000118383031804115
+38 0.000114849433884956
+39 0.000104917518910952
+40 0.000129607782582752
+41 0.000146646678331308
+42 9.60217439569533e-05
+43 0.000108773718238808
+44 0.00011053877096856
+45 8.29567361506633e-05
+46 0.000119137148431037
+47 0.000136377639137208
+48 0.000138476068968885
+49 0.000116252282168716
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00625877687333787, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00625877687333787, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..6ed61f815516fbd76a239948ee09e500b40eae81
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00625877687333787, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00625877687333787, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00625877687333787, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..ea69733d185d44883f4572e0b5076c7e77b06161
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00625877687333787, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.198194127502e-08, ymax=0.000274509136890445,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000143318029586226
+1 1.45019293995574e-05
+2 2.46063154918374e-06
+3 1.21404502806399e-06
+4 7.71242810060357e-07
+5 5.6626362265888e-07
+6 4.4482035832516e-07
+7 3.6112788848186e-07
+8 3.06692697904509e-07
+9 2.59890526876916e-07
+10 2.34828206657767e-07
+11 1.98825205188768e-07
+12 1.74293589338959e-07
+13 1.60838695251186e-07
+14 1.36562746888558e-07
+15 1.20314552987111e-07
+16 1.17287598300209e-07
+17 1.07480154554196e-07
+18 1.00856254903192e-07
+19 9.40150925998751e-08
+20 8.77120882591953e-08
+21 8.41363174686194e-08
+22 7.75180666323649e-08
+23 7.4589074472442e-08
+24 6.97768527402332e-08
+25 3.40010814170455e-07
+26 6.40855262190598e-08
+27 5.78739580703314e-08
+28 5.45119007711037e-08
+29 5.17005318556585e-08
+30 4.8964125198836e-08
+31 4.86611106964574e-08
+32 4.4300506374384e-08
+33 4.45862617937109e-08
+34 4.16968326533151e-08
+35 4.10550669016629e-08
+36 3.85009286674176e-08
+37 4.04863982339521e-08
+38 3.68151269469763e-08
+39 3.5363758144058e-08
+40 3.40168817558606e-08
+41 3.54041844730091e-08
+42 3.20801305520035e-08
+43 3.02647471528417e-08
+44 3.20885291671402e-08
+45 2.93472872670009e-08
+46 2.87714918556503e-08
+47 2.64217874246242e-08
+48 2.67905715389816e-08
+49 2.54582026570915e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000138516843435355
+1 1.70063121913699e-05
+2 2.10360076380312e-06
+3 1.00819090675941e-06
+4 8.07536196134606e-07
+5 5.76410798203142e-07
+6 4.49036321015228e-07
+7 4.02448989689219e-07
+8 3.17627609547344e-07
+9 2.14645524465595e-07
+10 1.92861534742406e-07
+11 1.998370464662e-07
+12 1.7028196452884e-07
+13 1.48525799659183e-07
+14 1.79267075850476e-07
+15 1.729537615347e-07
+16 1.19471138759764e-07
+17 1.00632910005061e-07
+18 9.70307638681334e-08
+19 1.03975779097709e-07
+20 9.0526249607592e-08
+21 8.05753117560926e-08
+22 8.67718128461092e-08
+23 9.58812833573575e-08
+24 6.81041214534162e-08
+25 4.9404299318212e-08
+26 6.41726032313272e-08
+27 6.35078478694595e-08
+28 5.70977256586502e-08
+29 5.60055930520775e-08
+30 5.01171726341454e-08
+31 4.53424497948163e-08
+32 7.89262131206669e-08
+33 3.86517129413733e-08
+34 4.07778308897377e-08
+35 4.27595168162043e-08
+36 3.68578660925323e-08
+37 3.82681335509005e-08
+38 3.62564769318396e-08
+39 3.23016777770135e-08
+40 2.64393520410522e-08
+41 3.40429373579809e-08
+42 2.3079390842895e-08
+43 2.89277419796008e-08
+44 3.23120232792462e-08
+45 2.96903106544733e-08
+46 2.82789276440099e-08
+47 2.99380147339434e-08
+48 2.44839846175182e-08
+49 1.8910819576945e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000142811026307754
+1 0.000142145348945633
+2 0.000145631551276892
+3 0.00014336861204356
+4 0.000141024196636863
+5 0.000140661228215322
+6 0.000143373923492618
+7 0.000143096447573043
+8 0.00014324723451864
+9 0.000144141071359627
+10 0.000141105469083413
+11 0.000144654914038256
+12 0.000141925178468227
+13 0.000142801640322432
+14 0.000147182479850017
+15 0.000142287419294007
+16 0.000143010242027231
+17 0.000141428332426585
+18 0.000144170320709236
+19 0.000145529236760922
+20 0.000143503231811337
+21 0.000145442856592126
+22 0.000145002748467959
+23 0.000143854020279832
+24 0.000142026576213539
+25 0.000145644036820158
+26 0.000145121215609834
+27 0.000140907781315036
+28 0.000143944824230857
+29 0.000141939672175795
+30 0.000144677615026012
+31 0.00014240997552406
+32 0.00014223215111997
+33 0.000144333796924911
+34 0.000141382100991905
+35 0.000142132892506197
+36 0.00014594396634493
+37 0.000143548939377069
+38 0.000142979115480557
+39 0.000142736855195835
+40 0.00014142032887321
+41 0.000146879217936657
+42 0.000144063393236138
+43 0.000141605880344287
+44 0.000145751255331561
+45 0.000143155353725888
+46 0.000139335752464831
+47 0.000142039119964465
+48 0.000143018754897639
+49 0.000139463227242231
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000145241559948772
+1 0.00015122935292311
+2 0.000119967189675663
+3 0.000140035146614537
+4 0.000160889103426598
+5 0.000168929298524745
+6 0.000142968186992221
+7 0.000143951023346744
+8 0.000139049137942493
+9 0.000134502464788966
+10 0.000162084368639626
+11 0.000131836786749773
+12 0.000156704583787359
+13 0.000146344464155845
+14 0.000105727231130004
+15 0.000151587693835609
+16 0.000142276301630773
+17 0.000158938055392355
+18 0.000131436114315875
+19 0.000121219723951072
+20 0.000138630319270305
+21 0.000122962897876278
+22 0.000130039741634391
+23 0.00013593201583717
+24 0.000153784494614229
+25 0.00012364043504931
+26 0.000126473343698308
+27 0.000162009018822573
+28 0.000133162247948349
+29 0.000152693173731677
+30 0.000131265973323025
+31 0.000146799997310154
+32 0.000151427680975758
+33 0.000130987013108097
+34 0.00015926593914628
+35 0.000150843756273389
+36 0.000121434160973877
+37 0.000140689007821493
+38 0.000142725213663653
+39 0.000146867780131288
+40 0.000159216040628962
+41 0.000163633594638668
+42 0.000133150635519996
+43 0.000157668910105713
+44 0.000119746895506978
+45 0.000143260025652125
+46 0.000173929656739347
+47 0.000152744454680942
+48 0.000144795383675955
+49 0.000173446140252054
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006263998055508332, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006263998055508332, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..cdb19a089ad658a41088bfcc7300b329c9f1fcd7
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006263998055508332, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006263998055508332, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006263998055508332, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..02b7c64e5024e800c6f24a58c13467c7ae206df4
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006263998055508332, Learning_Process.tex	
@@ -0,0 +1,259 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.21701318464745e-08, ymax=0.0263694580245187,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000156715628691018
+1 1.32433578983182e-05
+2 2.80153813037032e-06
+3 1.44223668030463e-06
+4 9.50151616052608e-07
+5 6.63737068862247e-07
+6 5.68947825740906e-07
+7 4.60157764337055e-07
+8 4.65666118998342e-07
+9 3.32628530941292e-07
+10 2.88941151893596e-07
+11 2.58196706681701e-07
+12 2.2455280657141e-07
+13 1.96145208519738e-07
+14 1.81143576583054e-07
+15 1.60003381211027e-07
+16 1.53276829450988e-07
+17 1.27706556440899e-07
+18 1.34323855149887e-07
+19 1.20191558039551e-07
+20 1.06980749592367e-07
+21 1.02761774201099e-07
+22 9.9020489585655e-08
+23 9.53134886572116e-08
+24 8.48867216518556e-08
+25 8.02179727088514e-08
+26 7.35268912421816e-08
+27 7.94062415820918e-08
+28 6.71272459840111e-08
+29 6.38493276028385e-08
+30 6.17377935441255e-08
+31 6.01456164872616e-08
+32 5.77477550223193e-08
+33 5.38829425522636e-08
+34 5.23962349063822e-08
+35 5.2330968003389e-08
+36 4.95232974628834e-08
+37 4.84109001774868e-08
+38 4.58728521834928e-08
+39 4.51239046128649e-08
+40 4.3394518201012e-08
+41 4.17223127158195e-08
+42 4.01226714075165e-08
+43 3.97074693125887e-08
+44 3.82834066670057e-08
+45 3.55759830483748e-08
+46 3.7604028335636e-08
+47 3.33554268650005e-08
+48 3.39781145441975e-08
+49 3.27981979353353e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000144072153489105
+1 1.33201874632505e-05
+2 2.90946172754047e-06
+3 1.6537371720915e-06
+4 9.79188257588248e-07
+5 1.04084506347135e-06
+6 4.40878665131095e-07
+7 4.3944382355221e-07
+8 3.59273485628364e-07
+9 2.60875054891585e-07
+10 2.75880893241265e-07
+11 2.25725699465329e-07
+12 3.06299284602574e-07
+13 1.96779112116019e-07
+14 1.78222776980874e-07
+15 1.75766771803865e-07
+16 1.32313445533327e-07
+17 1.73397481262327e-07
+18 1.22740999586313e-07
+19 7.27509643638768e-08
+20 1.11967096927401e-07
+21 1.08328030989924e-07
+22 9.3973703485517e-08
+23 6.51724363365247e-08
+24 8.32341129353154e-08
+25 8.79061516911861e-08
+26 7.05823950397644e-08
+27 6.95968935815472e-08
+28 7.28753306589169e-08
+29 6.35909955803982e-08
+30 6.14369497498046e-08
+31 6.66255814962824e-08
+32 4.81251909434377e-08
+33 5.86931143686797e-08
+34 5.8041145223342e-08
+35 3.8934196311402e-08
+36 5.45253904249421e-08
+37 5.40479234700797e-08
+38 4.90524705298867e-08
+39 4.05247639889694e-08
+40 4.38296474669642e-08
+41 3.6320503937759e-08
+42 3.94257639868556e-08
+43 4.40006289181838e-08
+44 3.15482644452914e-08
+45 4.35172253787641e-08
+46 3.38256533893855e-08
+47 3.04356788660698e-08
+48 3.97458350676061e-08
+49 2.36203572256954e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000149771600263193
+1 0.000154804365593009
+2 0.000157596135977656
+3 0.000153704793774523
+4 0.000156082649482414
+5 0.000156829511979595
+6 0.000153923116158694
+7 0.000156170324771665
+8 0.00015631434507668
+9 0.000157806440256536
+10 0.000157522692461498
+11 0.000156745736603625
+12 0.000155825895490125
+13 0.000153305009007454
+14 0.000158673239639029
+15 0.000159177943714894
+16 0.0135865760967135
+17 0.000153669359860942
+18 0.000151846383232623
+19 0.000154926543473266
+20 0.00015350105240941
+21 0.000154498920892365
+22 0.000153126835357398
+23 0.000155925168655813
+24 0.000154809269588441
+25 0.000156620008056052
+26 0.000157233749632724
+27 0.000156416237587109
+28 0.000154974200995639
+29 0.000157202870468609
+30 0.000156449896167032
+31 0.00015522915055044
+32 0.000157452290295623
+33 0.000154344437760301
+34 0.000153513421537355
+35 0.000157326707267202
+36 0.000156549867824651
+37 0.000155292334966362
+38 0.000153636952745728
+39 0.000156873546075076
+40 0.00015639144112356
+41 0.000155908492160961
+42 0.000159373783390038
+43 0.000158574810484424
+44 0.000156616544700228
+45 0.000150746433064342
+46 0.000155459594679996
+47 0.000152726745000109
+48 0.000157277143443935
+49 0.000158575785462745
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000197220637346618
+1 0.000163150718435645
+2 0.000141918193548918
+3 0.00017164989549201
+4 0.000151602900587022
+5 0.000135301423142664
+6 0.000168245504028164
+7 0.000154066612594761
+8 0.000144874255056493
+9 0.000132030516397208
+10 0.000137395443744026
+11 0.000145090321893804
+12 0.000151251879287884
+13 0.000170591622008942
+14 0.000121817807666957
+15 0.000121804674563464
+16 0.000111156972707249
+17 0.000174407658050768
+18 0.00018480145081412
+19 0.00016114920435939
+20 0.000175512876012363
+21 0.000161852687597275
+22 0.000179382841452025
+23 0.000150327177834697
+24 0.000162633994477801
+25 0.000142159246024676
+26 0.000139975440106355
+27 0.000146614154800773
+28 0.000158850874868222
+29 0.000139480849611573
+30 0.000147907921927981
+31 0.000154090652358718
+32 0.000138719158712775
+33 0.000169534047017805
+34 0.000174525193870068
+35 0.000139927185955457
+36 0.000146346574183553
+37 0.000156389767653309
+38 0.000169232793268748
+39 0.000139917217893526
+40 0.000144696023198776
+41 0.000150267878780141
+42 0.000118525444122497
+43 0.000127147592138499
+44 0.000145158424857073
+45 0.000196976005099714
+46 0.000151905958773568
+47 0.000181737399543636
+48 0.000137208568048663
+49 0.000126749320770614
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006273800515196047, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006273800515196047, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..9d8cfaf05e9d2a75966e89f82016b511807b5b9f
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006273800515196047, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006273800515196047, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006273800515196047, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..e0472c382c0cdb9679052f2fe11f4bc9b5e43bc0
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006273800515196047, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.36059431475053e-08, ymax=0.000329318181085703,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000141946686198935
+1 1.01080349850236e-05
+2 2.24285054173379e-06
+3 1.06778122699325e-06
+4 6.56012105082482e-07
+5 4.86263559196232e-07
+6 3.67231706377424e-07
+7 3.00049492807375e-07
+8 5.09404117110535e-07
+9 2.07899958581947e-07
+10 1.81286182510121e-07
+11 1.59515067821303e-07
+12 1.41116956342557e-07
+13 1.23568511867234e-07
+14 1.17028378099349e-07
+15 1.06735555505111e-07
+16 9.24975722682575e-08
+17 8.8245464269221e-08
+18 7.93434011825411e-08
+19 7.18669426191809e-08
+20 6.88164689677251e-08
+21 6.71076563207862e-08
+22 6.28077572173424e-08
+23 5.6096794764926e-08
+24 5.32012585097164e-08
+25 5.12900868443467e-08
+26 4.79388013729931e-08
+27 5.02523924694742e-08
+28 4.49906032429226e-08
+29 4.36089848676602e-08
+30 4.06774951500211e-08
+31 3.94926011892949e-08
+32 3.68991095456295e-08
+33 3.65911354549553e-08
+34 3.3988694525533e-08
+35 3.29620277739195e-08
+36 3.36890373375809e-08
+37 3.30197273967769e-08
+38 3.07228766871503e-08
+39 2.88071007048529e-08
+40 2.80251004625143e-08
+41 2.76183609315694e-08
+42 2.65446562508487e-08
+43 2.73978422171695e-08
+44 2.57119001645378e-08
+45 2.46270257520109e-08
+46 2.38677593245029e-08
+47 2.2134358346193e-08
+48 2.43859616944064e-08
+49 2.20351665802809e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000136786766233854
+1 1.0941844266199e-05
+2 3.16460113936046e-06
+3 1.23752636227437e-06
+4 8.9422081828161e-07
+5 4.64159541024856e-07
+6 4.19255741235247e-07
+7 2.69365500571439e-07
+8 2.30992171168509e-07
+9 1.70312830505281e-07
+10 1.64682944614469e-07
+11 1.46709496107178e-07
+12 1.39630245143962e-07
+13 1.66812753832346e-07
+14 1.22025653581659e-07
+15 8.85374404901995e-08
+16 1.02088009157342e-07
+17 7.00868483249906e-08
+18 7.78597524231373e-08
+19 8.22442132175638e-08
+20 6.87777159669167e-08
+21 6.69197675051691e-08
+22 6.89843133727663e-08
+23 6.95007287276894e-08
+24 5.52258505592818e-08
+25 5.39535065513519e-08
+26 5.69146330064996e-08
+27 5.07096231672222e-08
+28 4.15443146550842e-08
+29 3.34897691800506e-08
+30 4.97700973767223e-08
+31 4.10903453484934e-08
+32 3.42471047076742e-08
+33 3.79786655457792e-08
+34 3.29172245017162e-08
+35 3.02100104931924e-08
+36 2.80479639513942e-08
+37 3.7404436881161e-08
+38 2.9338337981244e-08
+39 3.21161586214203e-08
+40 2.74424536428342e-08
+41 3.22498117100167e-08
+42 2.82855356914524e-08
+43 2.1527631233198e-08
+44 2.33132446680884e-08
+45 2.43956499446085e-08
+46 2.39321824579974e-08
+47 5.4520480574638e-08
+48 2.30266721246153e-08
+49 2.50566678516861e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000134126647026278
+1 0.000143095065141097
+2 0.000139828523970209
+3 0.000144421166623943
+4 0.000140700358315371
+5 0.000139748211950064
+6 0.000142796794534661
+7 0.000143058743560687
+8 0.00014248643128667
+9 0.000140870994073339
+10 0.000143672426929697
+11 0.000139569907332771
+12 0.00014139358245302
+13 0.000143109820783138
+14 0.000141649172292091
+15 0.000139102266984992
+16 0.000143246637890115
+17 0.000138082570629194
+18 0.00013935606693849
+19 0.000142229342600331
+20 0.000145788479130715
+21 0.000141315103974193
+22 0.000142902179504745
+23 0.000139488693093881
+24 0.000141432872624137
+25 0.000140911346534267
+26 0.000145774669363163
+27 0.00014064485731069
+28 0.000140415533678606
+29 0.000141028314828873
+30 0.000140263917273842
+31 0.000139893061714247
+32 0.000144425604958087
+33 0.000141171462018974
+34 0.000142287521157414
+35 0.000142910546856001
+36 0.000140194038976915
+37 0.000145619982504286
+38 0.000140436386573128
+39 0.000141317403176799
+40 0.00014100231055636
+41 0.000142009492265061
+42 0.000137672424898483
+43 0.000141687196446583
+44 0.000141839729622006
+45 0.000138627830892801
+46 0.000143724857480265
+47 0.000143323835800402
+48 0.000141609067213722
+49 0.000141035037813708
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000208136436413042
+1 0.000123152742162347
+2 0.000153751039761119
+3 0.000115989590995014
+4 0.000147405808093026
+5 0.000155655274284072
+6 0.00013090246648062
+7 0.000126539365737699
+8 0.000130163942230865
+9 0.000144624340464361
+10 0.000120529963169247
+11 0.000160384326591156
+12 0.000141593904118054
+13 0.000121481811220292
+14 0.000146646038047038
+15 0.000162549273227341
+16 0.000123517093015835
+17 0.000168403654242866
+18 0.000161897260113619
+19 0.000135658759973012
+20 0.000103461141407024
+21 0.000139200856210664
+22 0.000130473665194586
+23 0.000159495539264753
+24 0.000140769014251418
+25 0.000143718745675869
+26 0.00010213594941888
+27 0.000145723839523271
+28 0.000157484988449141
+29 0.000142939650686458
+30 0.000148777893627994
+31 0.000154048553667963
+32 0.000113380097900517
+33 0.000142955032060854
+34 0.000135572932776995
+35 0.000126214465126395
+36 0.000151227650349028
+37 0.000103480320831295
+38 0.000150744599523023
+39 0.000140073636430316
+40 0.000144083867780864
+41 0.000131611348479055
+42 0.000174449000041932
+43 0.000140678064781241
+44 0.000152868116856553
+45 0.000166373560205102
+46 0.000122811135952361
+47 0.000124107740703039
+48 0.000163795659318566
+49 0.000143892670166679
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006276654239763172, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006276654239763172, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..d998f098d9756dc5279ca472e27c951748ffaec3
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006276654239763172, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006276654239763172, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006276654239763172, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..6aca10d87b93711dba78f29160cc5be87dff48da
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006276654239763172, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.63960440230483e-08, ymax=0.000302502700613701,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000143800891237333
+1 1.57302201841958e-05
+2 2.52735389949521e-06
+3 1.30774083118013e-06
+4 8.50770845772786e-07
+5 6.45457475911826e-07
+6 5.19368143159227e-07
+7 3.92769010204574e-07
+8 3.47103622289069e-07
+9 2.93249087235381e-07
+10 2.59265647173379e-07
+11 2.29216524871845e-07
+12 1.93712438090188e-07
+13 1.79544258571696e-07
+14 1.6554689352688e-07
+15 1.45042321264555e-07
+16 1.29351150235379e-07
+17 1.3118561525971e-07
+18 1.11435049632291e-07
+19 1.0816629725241e-07
+20 9.79105863052609e-08
+21 9.42837843354027e-08
+22 8.83445210320133e-08
+23 8.23956654016911e-08
+24 7.69246852883043e-08
+25 7.24414022101882e-08
+26 6.93089745595898e-08
+27 6.90639083700262e-08
+28 6.14462152270789e-08
+29 5.84506096856785e-08
+30 5.63632873706865e-08
+31 5.55908847843511e-08
+32 5.14806792750733e-08
+33 5.06293673652181e-08
+34 4.90010307885314e-08
+35 4.68056100544345e-08
+36 4.34425260209537e-08
+37 4.25909725265683e-08
+38 4.16216856535812e-08
+39 4.08026146203611e-08
+40 3.94585129015468e-08
+41 3.89983796367233e-08
+42 3.7354375592713e-08
+43 3.54033318217262e-08
+44 3.64605377001226e-08
+45 3.28622782319599e-08
+46 3.24001590001899e-08
+47 3.17796988724695e-08
+48 3.08886605182579e-08
+49 2.99895965838459e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000121209028293379
+1 1.66770332725719e-05
+2 2.82889095615246e-06
+3 1.12833220100583e-06
+4 1.00712793482671e-06
+5 6.36556364952412e-07
+6 3.92551243066919e-07
+7 4.21334789280081e-07
+8 2.53106946956905e-07
+9 2.48524287371765e-07
+10 2.26989186558058e-07
+11 2.23900570972546e-07
+12 1.81448612579516e-07
+13 2.43409630229507e-07
+14 1.42925543400452e-07
+15 1.26204028561006e-07
+16 1.64763392263012e-07
+17 1.27902566759985e-07
+18 1.19182303137677e-07
+19 1.16327150578854e-07
+20 8.55966035828715e-08
+21 9.20369203072369e-08
+22 8.26358430572327e-08
+23 9.94827402678311e-08
+24 7.73667920839216e-08
+25 8.33992146453966e-08
+26 6.58490719729343e-08
+27 6.40503330373576e-08
+28 5.94398912312499e-08
+29 6.71172202260095e-08
+30 5.98409641838771e-08
+31 4.97058643134096e-08
+32 5.29075236954668e-08
+33 5.95919225077068e-08
+34 3.86651741735022e-08
+35 4.14857375119482e-08
+36 4.49666934798643e-08
+37 3.39722845410506e-08
+38 4.36290541472317e-08
+39 3.32245129186504e-08
+40 4.28511981453994e-08
+41 3.19419051209024e-08
+42 4.26690682786557e-08
+43 3.07104315311335e-08
+44 2.68007749326671e-08
+45 3.50828486261889e-08
+46 2.78652105833999e-08
+47 2.81915699673618e-08
+48 3.30190772501737e-08
+49 2.56240468843316e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000140926887979731
+1 0.000142079094075598
+2 0.000138374249218032
+3 0.000141933414852247
+4 0.000142579359817319
+5 0.000139170748298056
+6 0.000141534372232854
+7 0.00013999710790813
+8 0.000143443976412527
+9 0.000139551673782989
+10 0.0001394761929987
+11 0.00014383475354407
+12 0.000137382667162456
+13 0.000144344827276655
+14 0.000141963435453363
+15 0.000142749006045051
+16 0.00013912508438807
+17 0.000142752047395334
+18 0.000137873386847787
+19 0.000143202414619736
+20 0.000141484240884893
+21 0.000144532299600542
+22 0.000143126439070329
+23 0.00014261704927776
+24 0.000146045145811513
+25 0.000142399570904672
+26 0.000145651880302466
+27 0.0001391394471284
+28 0.000139954820042476
+29 0.000141810509376228
+30 0.000145103767863475
+31 0.00013785861665383
+32 0.000145396203151904
+33 0.000142847580718808
+34 0.000140880540129729
+35 0.00014325110532809
+36 0.000144322810228914
+37 0.000141253272886388
+38 0.000142112417961471
+39 0.000140246032970026
+40 0.000142924924148247
+41 0.000145504454849288
+42 0.000143641431350261
+43 0.000139445706736296
+44 0.000135913491249084
+45 0.000138758536195382
+46 0.000143059733090922
+47 0.000140386517159641
+48 0.000143335331813432
+49 0.000143696830491535
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000149589774082415
+1 0.000137390641612001
+2 0.000172729138284922
+3 0.000137749579153024
+4 0.000132776243845001
+5 0.000167199919815175
+6 0.000145607977174222
+7 0.000158507958985865
+8 0.000126228129374795
+9 0.000160221752594225
+10 0.000163465272635221
+11 0.000124720871099271
+12 0.000181895738933235
+13 0.000119985539640766
+14 0.000138437550049275
+15 0.000133793088025413
+16 0.000162910728249699
+17 0.000135136768221855
+18 0.000176777728484012
+19 0.000132130982819945
+20 0.000143757031764835
+21 0.00011839484795928
+22 0.000133143665152602
+23 0.000132008834043518
+24 0.000104583989013918
+25 0.000136826929519884
+26 0.000105647581222001
+27 0.000160839757882059
+28 0.000159969538799487
+29 0.000139699113788083
+30 0.000113509559014346
+31 0.000174952670931816
+32 0.00010852995183086
+33 0.000133702895254828
+34 0.000150366380694322
+35 0.000126994549646042
+36 0.000118364689114969
+37 0.000146351521834731
+38 0.000139208743348718
+39 0.000156690890435129
+40 0.000131238746689633
+41 0.000109396620246116
+42 0.000127056380733848
+43 0.000159550851094536
+44 0.000193562227650546
+45 0.000171289226273075
+46 0.000131485794554465
+47 0.000153370943735354
+48 0.000128324711113237
+49 0.000127410909044556
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006286522471275468, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006286522471275468, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..b964f56465bcb22845b5de061eb650bebf4f088d
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006286522471275468, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006286522471275468, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006286522471275468, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..47869949c740c1cf4295883e92631ff5a41dd209
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006286522471275468, Learning_Process.tex	
@@ -0,0 +1,263 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.35929136231838e-07, ymax=0.000558932021171644,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000123469682876021
+1 0.000323473184835166
+2 1.30631578940665e-05
+3 1.34606161736883e-05
+4 1.00503621069947e-05
+5 7.95018968346994e-06
+6 6.60536670693546e-06
+7 5.60908165425644e-06
+8 4.88723935632152e-06
+9 3.97460826206952e-06
+10 3.69562576452154e-06
+11 3.32801664626459e-06
+12 2.89016475107928e-06
+13 2.65698190560215e-06
+14 2.4697549179109e-06
+15 2.30074260798574e-06
+16 2.16039575207105e-06
+17 1.99684018298285e-06
+18 1.83162615030596e-06
+19 1.70168164004281e-06
+20 1.57579529513896e-06
+21 1.469612470828e-06
+22 1.35390905597887e-06
+23 1.36293658670184e-06
+24 1.26481631923525e-06
+25 1.14841952836287e-06
+26 1.13028227133327e-06
+27 1.11264102997666e-06
+28 1.05355138657615e-06
+29 9.92049990600208e-07
+30 9.58058535616146e-07
+31 9.062547405847e-07
+32 8.81112896422565e-07
+33 8.5949881167835e-07
+34 7.96171036654414e-07
+35 7.96916594936192e-07
+36 7.60543230171606e-07
+37 7.32391129076859e-07
+38 7.23755306353269e-07
+39 6.94259256306395e-07
+40 6.97118423431675e-07
+41 6.50156891879305e-07
+42 6.47204501547094e-07
+43 6.11824077623169e-07
+44 6.0078059505031e-07
+45 5.76838658616907e-07
+46 5.58290309982112e-07
+47 5.78263779971167e-07
+48 5.40475753041392e-07
+49 5.29579381236545e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000125125152408145
+1 0.000398974225390702
+2 2.07118027901743e-05
+3 1.45884760058834e-05
+4 1.01877622000757e-05
+5 7.43519649404334e-06
+6 6.38942947261967e-06
+7 4.60560795545462e-06
+8 4.01023771701148e-06
+9 5.75691547055612e-06
+10 3.53818177245557e-06
+11 2.96289181278553e-06
+12 3.71877808902354e-06
+13 3.16481896334153e-06
+14 2.65865401161136e-06
+15 2.07788684747356e-06
+16 1.56144267293712e-06
+17 1.43600959745527e-06
+18 1.61541026955092e-06
+19 1.62708874995587e-06
+20 1.70390671883069e-06
+21 1.71878457422281e-06
+22 1.84622911092447e-06
+23 1.08663823539246e-06
+24 1.22968572213722e-06
+25 1.63423226240411e-06
+26 1.24178961868893e-06
+27 9.25668985019001e-07
+28 9.54823804022453e-07
+29 1.04033995285135e-06
+30 8.95869220585155e-07
+31 1.00254453627713e-06
+32 9.4743757017568e-07
+33 7.31778413864959e-07
+34 1.03211732493946e-06
+35 6.81845335748221e-07
+36 7.79792969751725e-07
+37 7.71256964071654e-07
+38 6.0084693132012e-07
+39 6.41201154394366e-07
+40 4.70610729053078e-07
+41 7.01300848504616e-07
+42 5.27286601936794e-07
+43 7.37075595225178e-07
+44 5.75331739582907e-07
+45 6.47641741124971e-07
+46 6.77888522204739e-07
+47 5.9625784842865e-07
+48 6.06366313604667e-07
+49 4.72519161576201e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000124543148558587
+1 0.000123065983643755
+2 0.000122855009976774
+3 0.00012403646542225
+4 0.000124805417726748
+5 0.000121605160529725
+6 0.000126416300190613
+7 0.000122014003864024
+8 0.000120425058412366
+9 0.000123533420264721
+10 0.000124894169857726
+11 0.000124193655210547
+12 0.000124661499285139
+13 0.000126290164189413
+14 0.000126451937831007
+15 0.000123898294987157
+16 0.000123356818221509
+17 0.000123075064038858
+18 0.000125476493849419
+19 0.000124863916425966
+20 0.000120878823508974
+21 0.000122323224786669
+22 0.000123561461805366
+23 0.00012679462088272
+24 0.000121903052786365
+25 0.000123037694720551
+26 0.000126771483337507
+27 0.0001258952106582
+28 0.000125928534544073
+29 0.000118849966384005
+30 0.000121152443171013
+31 0.000124833473819308
+32 0.000124014157336205
+33 0.00012506908387877
+34 0.000121711156680249
+35 0.000122689540148713
+36 0.00012470135698095
+37 0.000121917102660518
+38 0.000124982194392942
+39 0.000125385064166039
+40 0.000124388301628642
+41 0.000122035533422604
+42 0.000125022124848329
+43 0.000123312362120487
+44 0.000123153076856397
+45 0.000120702512504067
+46 0.000125816994113848
+47 0.000124026628327556
+48 0.000123891237308271
+49 0.000122127472423017
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000114841051981784
+1 0.000129610052681528
+2 0.000131161956232972
+3 0.000121124554425478
+4 0.000114660964754876
+5 0.000140450472827069
+6 9.99923358904198e-05
+7 0.000142739285365678
+8 0.000152825450641103
+9 0.00012735508789774
+10 0.000112639791041147
+11 0.000118538329843432
+12 0.000113712965685409
+13 9.95851005427539e-05
+14 9.76612791419029e-05
+15 0.000122121346066706
+16 0.000127206658362411
+17 0.000127963241538964
+18 0.00010818427108461
+19 0.000112047418951988
+20 0.000150170802953653
+21 0.000137675859150477
+22 0.000125277045299299
+23 9.72112902672961e-05
+24 0.000139501978992485
+25 0.000127898339997046
+26 9.57025913521647e-05
+27 0.000102659629192203
+28 0.00010481511708349
+29 0.000166475816513412
+30 0.000148150706081651
+31 0.000114309536002111
+32 0.000121135461085942
+33 0.00010897059837589
+34 0.000141359501867555
+35 0.000133377805468626
+36 0.000114424132334534
+37 0.000139298805152066
+38 0.000112553381768521
+39 0.000106856743514072
+40 0.000115987473691348
+41 0.000138027942739427
+42 0.000111938454210758
+43 0.000127003164379857
+44 0.000127040999359451
+45 0.000149980813148431
+46 0.000103732105344534
+47 0.000119831645861268
+48 0.000121273384138476
+49 0.000137117604026571
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006287318594115248, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006287318594115248, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..4271b2214728b29af730047f703a282c75532294
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006287318594115248, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006287318594115248, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006287318594115248, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..907fdf82608ffc76b88b0979f65358e6227a21d5
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006287318594115248, Learning_Process.tex	
@@ -0,0 +1,265 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.03,0.97)},
+  anchor=north west,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=4.12003390016078e-07, ymax=0.01804560046292,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000144249206641689
+1 2.57391275226837e-05
+2 0.0002070628979709
+3 2.70362743322039e-05
+4 1.60304007295053e-05
+5 1.28985784613178e-05
+6 9.77194576989859e-06
+7 8.58912881085416e-06
+8 7.32815988158109e-06
+9 6.49120875095832e-06
+10 5.57227531317039e-06
+11 4.80276230518939e-06
+12 4.45182604380534e-06
+13 4.10406528317253e-06
+14 3.6098090276937e-06
+15 3.38946961164766e-06
+16 3.10949667436944e-06
+17 2.86535146187816e-06
+18 2.69702809418959e-06
+19 2.49273398367222e-06
+20 2.3341683572653e-06
+21 2.16877469938481e-06
+22 2.10601137951016e-06
+23 1.98523616745661e-06
+24 1.83016925348056e-06
+25 1.76664104856172e-06
+26 1.66258905665018e-06
+27 1.50499920437142e-06
+28 1.51008543980424e-06
+29 1.43668648888706e-06
+30 1.38897098622692e-06
+31 1.32662557916774e-06
+32 1.2588288882398e-06
+33 1.21858522561524e-06
+34 1.17962690637796e-06
+35 1.15512557385955e-06
+36 1.12245504624298e-06
+37 1.08851850200153e-06
+38 1.05456138044246e-06
+39 1.03525542272109e-06
+40 9.82894334811135e-07
+41 9.2972175025352e-07
+42 9.15684381652682e-07
+43 8.82065478435834e-07
+44 8.36524691294471e-07
+45 8.451865483039e-07
+46 8.02792101239902e-07
+47 8.14591658127028e-07
+48 7.74195939357014e-07
+49 7.39493771106936e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000130524975247681
+1 2.01568800548557e-05
+2 0.000175434339325875
+3 2.55930408457061e-05
+4 1.91440249182051e-05
+5 1.01368877949426e-05
+6 1.33738230942981e-05
+7 8.15469957160531e-06
+8 7.53298581912532e-06
+9 4.81961751575e-06
+10 5.38187077836483e-06
+11 6.72272608426283e-06
+12 4.44192437498714e-06
+13 3.55846054844733e-06
+14 4.08689675168716e-06
+15 3.12419592773949e-06
+16 2.94957249025174e-06
+17 2.87972238766088e-06
+18 2.14835790757206e-06
+19 2.58831255450787e-06
+20 2.38275674746546e-06
+21 2.08133928936149e-06
+22 1.5717954511274e-06
+23 1.52951349718933e-06
+24 1.73741045728093e-06
+25 1.42442490869144e-06
+26 1.67735743161757e-06
+27 2.07792254514061e-06
+28 1.38770406010735e-06
+29 1.39206838412065e-06
+30 1.38255006731924e-06
+31 1.25929614114284e-06
+32 1.35492973640794e-06
+33 1.3719348999075e-06
+34 1.15964019187231e-06
+35 1.08278140942275e-06
+36 9.79470200945798e-07
+37 9.3359784614222e-07
+38 8.18479747977108e-07
+39 7.30424574157951e-07
+40 7.37504763037578e-07
+41 1.09499524114653e-06
+42 8.66535003751778e-07
+43 8.97814345535153e-07
+44 1.03541822227271e-06
+45 7.48218269563949e-07
+46 8.83583822997025e-07
+47 6.69694486532535e-07
+48 7.04656656580482e-07
+49 8.63616605784046e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000140797506901436
+1 0.00014131203352008
+2 0.000145436933962628
+3 0.000139639800181612
+4 0.000145202066050842
+5 0.000142709133797325
+6 0.000142553180921823
+7 0.000143101438879967
+8 0.000142854260047898
+9 0.00014369998825714
+10 0.000144868114148267
+11 0.000142087490530685
+12 0.00014171507791616
+13 0.000142235701787286
+14 0.000147294646012597
+15 0.000142238612170331
+16 0.000143012541229837
+17 0.000142933684401214
+18 0.00014453825133387
+19 0.000143890007166192
+20 0.000142768854857422
+21 0.000143809025757946
+22 0.000143055993248709
+23 0.000140741292852908
+24 0.000141698139486834
+25 0.000148481878568418
+26 0.000139653086080216
+27 0.000146987978951074
+28 0.000137349226861261
+29 0.00014434423064813
+30 0.000144738558446988
+31 0.000140939868288115
+32 0.000143733937875368
+33 0.000142796387081034
+34 0.00014219839067664
+35 0.0111018512398005
+36 0.000145366750075482
+37 0.000136823480715975
+38 0.000146650490933098
+39 0.000145333353430033
+40 0.000140382704557851
+41 0.000143608238431625
+42 0.000146460413816385
+43 0.000144412872032262
+44 0.000145063473610207
+45 0.000145691781654023
+46 0.000139514668262564
+47 0.000144288234878331
+48 0.000142015007440932
+49 0.000144963400089182
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000162014446686953
+1 0.00016376914572902
+2 0.000114648013550323
+3 0.000175469467649236
+4 0.000119214462756645
+5 0.000140196338179521
+6 0.000147661325172521
+7 0.000137632363475859
+8 0.000140335454489104
+9 0.000125275881146081
+10 0.000128992251120508
+11 0.000158427195856348
+12 0.000149710103869438
+13 0.000147787854075432
+14 0.000102266923931893
+15 0.000147311569890007
+16 0.000146043166751042
+17 0.000140623189508915
+18 0.000134221772896126
+19 0.000138416638947092
+20 0.000147490631206892
+21 0.00013362753088586
+22 0.000146276666782796
+23 0.000159391449415125
+24 0.000154868437675759
+25 9.63770435191691e-05
+26 0.000172709434991702
+27 0.000104855105746537
+28 0.000192416831851006
+29 0.000135154186864384
+30 0.000126850834931247
+31 0.000156759124365635
+32 0.000144481819006614
+33 0.000141545475344174
+34 0.00015700222866144
+35 0.000122483455925249
+36 0.000119963769975584
+37 0.000200984577531926
+38 0.000128247615066357
+39 0.000118863295938354
+40 0.000164631710504182
+41 0.00013834515993949
+42 0.000118173986265901
+43 0.000126547878608108
+44 0.00012227582919877
+45 0.000116210430860519
+46 0.000173680164152756
+47 0.00013277334801387
+48 0.000151974658365361
+49 0.000122974015539512
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006289110684057258, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006289110684057258, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..cf95ad8332e6e66996eae626bc6f49a90a000eff
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006289110684057258, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006289110684057258, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006289110684057258, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..0fac68bdef69daf4cd67ede0720111ea0b040721
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006289110684057258, Learning_Process.tex	
@@ -0,0 +1,265 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=8.96357922483165e-09, ymax=0.000295291400134935,
+ymode=log,
+ytick style={color=black},
+ytick={1e-10,1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-10}}\),
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000120224227430299
+1 1.10261635200004e-05
+2 2.07349671654811e-06
+3 9.77464992502064e-07
+4 4.79504365102912e-07
+5 3.26949788131969e-07
+6 2.62133539763454e-07
+7 2.12517633713105e-07
+8 1.64112776701586e-07
+9 1.40526779546235e-07
+10 1.2422533757217e-07
+11 1.08220525874003e-07
+12 9.79881704665786e-08
+13 8.71271268465534e-08
+14 8.22981647274901e-08
+15 7.46643635807231e-08
+16 6.56083329886314e-08
+17 5.91621471812687e-08
+18 5.63496911354378e-08
+19 5.05223702873536e-08
+20 4.97767764784385e-08
+21 4.55668214272009e-08
+22 4.27294253313448e-08
+23 3.95115975493354e-08
+24 3.88892651415063e-08
+25 3.50230209278379e-08
+26 3.45791342226676e-08
+27 3.32861525009776e-08
+28 3.0971250453149e-08
+29 2.98752986793716e-08
+30 2.87743358029502e-08
+31 2.75953073725077e-08
+32 2.60771493287848e-08
+33 2.57919978707832e-08
+34 2.39554740488757e-08
+35 2.36181225687915e-08
+36 2.23480540739729e-08
+37 2.23532765630807e-08
+38 2.17793925116894e-08
+39 2.0455820148868e-08
+40 1.97535303669838e-08
+41 1.88104962717262e-08
+42 1.87307858112717e-08
+43 1.8006236501833e-08
+44 1.74721090928642e-08
+45 1.71200937870708e-08
+46 1.73008753989734e-08
+47 1.6493764576353e-08
+48 1.56860373579093e-08
+49 1.53190953255944e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000142508870339952
+1 1.24685457194573e-05
+2 1.45582805544109e-06
+3 8.73327394401713e-07
+4 5.42682187187893e-07
+5 3.86459390711025e-07
+6 2.079150362988e-07
+7 1.76105444893437e-07
+8 2.07717093303472e-07
+9 1.62285346050339e-07
+10 1.13969690573867e-07
+11 1.16361505320128e-07
+12 9.20060543307955e-08
+13 8.20720558181165e-08
+14 5.89464512756877e-08
+15 7.95920698237751e-08
+16 6.69440893830142e-08
+17 6.79402845094046e-08
+18 5.60769670698846e-08
+19 6.97211248734675e-08
+20 4.83986006827308e-08
+21 4.70816807762731e-08
+22 4.09973033299593e-08
+23 5.02676016367332e-08
+24 3.69962762647447e-08
+25 4.46244392549033e-08
+26 3.55225218129362e-08
+27 3.6484092191813e-08
+28 3.32697567273499e-08
+29 1.24107188526068e-07
+30 3.46883801682907e-08
+31 2.62787978044798e-08
+32 2.63973998215761e-08
+33 2.54046508274541e-08
+34 2.47466971359245e-08
+35 2.49717917455428e-08
+36 2.39052297956732e-08
+37 2.16915196915579e-08
+38 1.78661192506979e-08
+39 1.85640658401098e-08
+40 2.29768879478343e-08
+41 2.21417373325039e-08
+42 1.80708461527956e-08
+43 1.75580066041903e-08
+44 1.67135425499509e-08
+45 1.43825076293069e-08
+46 1.55615449415336e-08
+47 1.76897092529771e-08
+48 1.51813228654873e-08
+49 1.54375818794961e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000122067125630565
+1 0.000121478777145967
+2 0.000121973469504155
+3 0.000122408047900535
+4 0.000119743293907959
+5 0.000122331766760908
+6 0.000125268721603788
+7 0.000123780249850824
+8 0.000121403798402753
+9 0.000122152938274667
+10 0.000119564807391725
+11 0.000126433253171854
+12 0.000123152887681499
+13 0.000123232166515663
+14 0.000122822966659442
+15 0.000121081393444911
+16 0.000125216320157051
+17 0.000120079537737183
+18 0.000122564306366257
+19 0.000120671109471004
+20 0.000123644131235778
+21 0.000123236401122995
+22 0.000115841598017141
+23 0.00012491486268118
+24 0.000121000390208792
+25 0.000122983910841867
+26 0.000122514538816176
+27 0.000124556056107394
+28 0.000123869904200546
+29 0.000119967509817798
+30 0.000125475882668979
+31 0.000122229947010055
+32 0.000124112222692929
+33 0.000121800221677404
+34 0.000120968972623814
+35 0.000124603539006785
+36 0.000124386817333288
+37 0.000124929356388748
+38 0.000123425459605642
+39 0.000125131919048727
+40 0.000120895936561283
+41 0.000122802157420665
+42 0.000126197395729832
+43 0.000122448065667413
+44 0.000124475482152775
+45 0.000122213095892221
+46 0.000124782818602398
+47 0.000123882011394016
+48 0.000117801362648606
+49 0.000119966956845019
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000130734973936342
+1 0.000133155845105648
+2 0.000129561318317428
+3 0.000124646699987352
+4 0.000149854487972334
+5 0.000126951650599949
+6 9.940085146809e-05
+7 0.000111061344796326
+8 0.00013311360089574
+9 0.000130619489937089
+10 0.000149194194818847
+11 8.96501005627215e-05
+12 0.000118142648716457
+13 0.000117743365990464
+14 0.000119893455121201
+15 0.000135470574605279
+16 0.0001014746594592
+17 0.000146733611472882
+18 0.000126259095850401
+19 0.0001386630901834
+20 0.000115810209535994
+21 0.000120400705782231
+22 0.000184033822733909
+23 0.000102729558420833
+24 0.000138282528496347
+25 0.000119669712148607
+26 0.000123559046187438
+27 0.000107184110675007
+28 0.000110049171780702
+29 0.000146686026710086
+30 9.84806611086242e-05
+31 0.000127779552713037
+32 0.000111341920273844
+33 0.000129382329760119
+34 0.000137848925078288
+35 0.000104515442217235
+36 0.000108047635876574
+37 0.000102341713500209
+38 0.000114244168798905
+39 9.93335415842012e-05
+40 0.000138038158183917
+41 0.000119595300930087
+42 9.14282500161789e-05
+43 0.000123879755847156
+44 0.000106302264612168
+45 0.000127810082631186
+46 0.00010310723882867
+47 0.000109954526124056
+48 0.0001665865565883
+49 0.000146284539368935
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006289564495231045, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006289564495231045, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..2fda4418e5e6b39c3aab113e436f1603856f3efc
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006289564495231045, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006289564495231045, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006289564495231045, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..ec400753e9d751db3df944f1d774bfa8ab6c1cce
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006289564495231045, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.2942924606705e-08, ymax=0.000252937279099992,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000130913162138313
+1 1.43207689689007e-05
+2 6.33746003586566e-06
+3 3.90530021832092e-06
+4 2.07448033506807e-06
+5 1.41989028179523e-06
+6 1.07339963051345e-06
+7 8.37551908716705e-07
+8 7.26313089671748e-07
+9 6.10448353199899e-07
+10 5.1875974804716e-07
+11 4.72252594363454e-07
+12 4.18976725313769e-07
+13 3.54546187963933e-07
+14 3.4680266480791e-07
+15 2.98935646014797e-07
+16 2.77077162991191e-07
+17 2.51757029445798e-07
+18 2.29231275739039e-07
+19 2.23221420014852e-07
+20 2.03814735755259e-07
+21 1.94334830894149e-07
+22 1.80508635594379e-07
+23 1.7108258987264e-07
+24 1.51969430817189e-07
+25 1.55180003957867e-07
+26 1.44006136792996e-07
+27 1.36980517595475e-07
+28 1.30815863030875e-07
+29 1.25640895021206e-07
+30 1.19335069825866e-07
+31 1.13631422493654e-07
+32 1.08243980889711e-07
+33 1.09413761606447e-07
+34 9.95855415908409e-08
+35 9.71605160771105e-08
+36 9.29599011101345e-08
+37 9.0247219475259e-08
+38 8.82773036892104e-08
+39 8.17604970393404e-08
+40 8.06793138963258e-08
+41 7.74847350726304e-08
+42 7.82921034669926e-08
+43 7.30532434545239e-08
+44 7.12247825163104e-08
+45 7.07727636495292e-08
+46 6.88082550936997e-08
+47 6.58334826653117e-08
+48 6.63348131979546e-08
+49 6.0438622995207e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000124475671327673
+1 1.31356591737131e-05
+2 4.43161434304784e-06
+3 2.93088783109852e-06
+4 2.2123083454062e-06
+5 1.40717702379334e-06
+6 1.1536052397787e-06
+7 9.67209189184359e-07
+8 6.18970545929187e-07
+9 5.91255627568898e-07
+10 5.9794041362693e-07
+11 3.37708939923687e-07
+12 3.54210243358466e-07
+13 4.04597273018226e-07
+14 2.78871453929241e-07
+15 2.93892611580304e-07
+16 2.88647669322017e-07
+17 2.91017585141162e-07
+18 2.79655040458238e-07
+19 2.49307362309992e-07
+20 2.35797969594387e-07
+21 1.54873802671318e-07
+22 1.47905353742317e-07
+23 1.59429959012414e-07
+24 1.56708324539068e-07
+25 1.27619003364998e-07
+26 1.45647618410294e-07
+27 1.53013658632517e-07
+28 1.08750782601419e-07
+29 1.40177846219558e-07
+30 1.2595982923358e-07
+31 1.11923874612785e-07
+32 1.08181964719734e-07
+33 1.11355937804092e-07
+34 1.31175923456794e-07
+35 1.24209918794804e-07
+36 1.0241755177276e-07
+37 8.96260345939481e-08
+38 6.56000906928966e-08
+39 1.01110138928107e-07
+40 8.51908126264789e-08
+41 7.15269194984103e-08
+42 7.82672699983777e-08
+43 8.1462403045407e-08
+44 6.65578667735645e-08
+45 4.94725682642638e-08
+46 6.17580582229493e-08
+47 6.56963194956006e-08
+48 5.81752850337125e-08
+49 7.24081701264367e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000131230801343918
+1 0.000128202809719369
+2 0.000129201973322779
+3 0.000133199355332181
+4 0.000130296612042002
+5 0.000129959429614246
+6 0.000131164095364511
+7 0.000131276130559854
+8 0.000129684965941124
+9 0.000130534026538953
+10 0.000132463566842489
+11 0.000131080247228965
+12 0.000129922816995531
+13 0.000131259177578613
+14 0.000130805390654132
+15 0.000128954925457947
+16 0.000130482716485858
+17 0.000131037682876922
+18 0.000128642190247774
+19 0.000125954553368501
+20 0.000131013075588271
+21 0.000129905020003207
+22 0.000130912216263823
+23 0.000128832063637674
+24 0.000129573149024509
+25 0.000131159758893773
+26 0.000134458008687943
+27 0.000128347310237586
+28 0.000131898457766511
+29 0.000132919900352135
+30 0.000129613865283318
+31 0.000130560365505517
+32 0.00013086041144561
+33 0.000131563036120497
+34 0.000129723193822429
+35 0.000127032675663941
+36 0.000131065404275432
+37 0.000132616143673658
+38 0.000132032975670882
+39 0.000130930769955739
+40 0.000129163076053374
+41 0.00012901084846817
+42 0.00013016679440625
+43 0.000129392035887577
+44 0.000130200322018936
+45 0.000130560118122958
+46 0.000127998559037223
+47 0.000129663589177653
+48 0.00013004794891458
+49 0.000131543725728989
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.00012450733629521
+1 0.00014974879741203
+2 0.000140150135848671
+3 0.000104855978861451
+4 0.00012912304373458
+5 0.000134300687932409
+6 0.000122660450870171
+7 0.000120272386993747
+8 0.000136146656586789
+9 0.000129061663756147
+10 0.000113157693704125
+11 0.000124250291264616
+12 0.000134920046548359
+13 0.000121786215458997
+14 0.000127241743030027
+15 0.000139941519591957
+16 0.000129765408928506
+17 0.000124167199828662
+18 0.000145901198266074
+19 0.00016842654440552
+20 0.000124059253721498
+21 0.000133841749629937
+22 0.000125632839626633
+23 0.000146513906656764
+24 0.000137102892040275
+25 0.000123616468044929
+26 9.48491433518939e-05
+27 0.000148661245475523
+28 0.000115749382530339
+29 0.000109344546217471
+30 0.00013603494153358
+31 0.000128341489471495
+32 0.000124858415802009
+33 0.000119332180474885
+34 0.000135708090965636
+35 0.000162088341312483
+36 0.000124336671433412
+37 0.00010758620192064
+38 0.000112658737634774
+39 0.00012638105545193
+40 0.000140596283017658
+41 0.000141255630296655
+42 0.000131305918330327
+43 0.000138451621751301
+44 0.000131397726363502
+45 0.000129127627587877
+46 0.00015036592958495
+47 0.000137597337015904
+48 0.000133232504595071
+49 0.000119446427561343
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006291772771053553, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006291772771053553, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..57185d0c1f0d38e24db1963fe149655e2e079900
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006291772771053553, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006291772771053553, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006291772771053553, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..10d32204d97195991b3c751b447d8f3e2bb0eb9a
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006291772771053553, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=5.76651700097826e-08, ymax=0.000248212419547203,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000139958399813622
+1 1.53317996591795e-05
+2 9.02543069969397e-06
+3 6.81331630403292e-06
+4 3.33524667439633e-06
+5 2.02308456209721e-06
+6 1.48153549162089e-06
+7 1.14937824946537e-06
+8 9.97701363303349e-07
+9 8.51403626711544e-07
+10 7.03652233369212e-07
+11 6.05372406425886e-07
+12 5.262763806968e-07
+13 4.88679177124141e-07
+14 4.18557704051636e-07
+15 4.02439212621175e-07
+16 3.44624197623489e-07
+17 3.13346447455842e-07
+18 2.8794096351703e-07
+19 2.74178347581255e-07
+20 2.53519687021253e-07
+21 2.32460664051359e-07
+22 2.25937796471953e-07
+23 2.13572604934598e-07
+24 2.05674226094743e-07
+25 1.91570634910931e-07
+26 1.82926044089982e-07
+27 1.73914386891738e-07
+28 1.63049904244872e-07
+29 1.56540679085992e-07
+30 1.5330540747982e-07
+31 1.45671307905104e-07
+32 1.36965212504947e-07
+33 1.57132731715137e-07
+34 1.30367340034354e-07
+35 1.26460889759983e-07
+36 1.1938873001327e-07
+37 1.18119494629809e-07
+38 1.12509027871965e-07
+39 1.09521373303778e-07
+40 1.06097054697329e-07
+41 1.00958665427697e-07
+42 9.86900232646803e-08
+43 9.657711075306e-08
+44 9.94535795939555e-08
+45 9.31819599259143e-08
+46 8.87116797798626e-08
+47 8.87603377464075e-08
+48 8.47168735162995e-08
+49 8.43512069081953e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000135002876049839
+1 1.43296583701158e-05
+2 4.8565011638857e-06
+3 7.62228000894538e-06
+4 2.70305667982029e-06
+5 1.97132612811401e-06
+6 1.37866766181105e-06
+7 1.2180435078335e-06
+8 1.17024808332644e-06
+9 7.38882533823926e-07
+10 6.25857637714944e-07
+11 4.89898127398192e-07
+12 4.82379789445986e-07
+13 4.16743574760403e-07
+14 4.21791128246696e-07
+15 2.96833576385325e-07
+16 3.50156682316083e-07
+17 3.58982930492857e-07
+18 3.82077644189849e-07
+19 3.1724059113003e-07
+20 2.64808363681368e-07
+21 2.83566123471246e-07
+22 2.39207565755351e-07
+23 2.07853261713353e-07
+24 2.01017130052605e-07
+25 1.71286401950965e-07
+26 1.75402533386659e-07
+27 1.61228953743375e-07
+28 2.10446941650844e-07
+29 1.60825791795105e-07
+30 1.58845509190542e-07
+31 1.6323410534369e-07
+32 1.58721761067682e-07
+33 1.43626337489877e-07
+34 1.43821466735972e-07
+35 1.19980413160192e-07
+36 1.36939434014494e-07
+37 1.01999695800714e-07
+38 1.1365982999223e-07
+39 1.01008303943217e-07
+40 1.055283291862e-07
+41 1.21387060403322e-07
+42 1.0268325212337e-07
+43 1.01537374064264e-07
+44 9.96028219901746e-08
+45 8.99763961115241e-08
+46 8.76025438856232e-08
+47 9.39964550639161e-08
+48 8.94670506568218e-08
+49 9.98266500573664e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000139703872264363
+1 0.000141009149956517
+2 0.000143591896630824
+3 0.000139693322125822
+4 0.000138086499646306
+5 0.000135687383590266
+6 0.000137773342430592
+7 0.000138148068799637
+8 0.000138019167934544
+9 0.000138874442200176
+10 0.000140757241751999
+11 0.00013905405648984
+12 0.000142936638440005
+13 0.000140751668368466
+14 0.000140190008096397
+15 0.000141227326821536
+16 0.000137461815029383
+17 0.000140180825837888
+18 0.000140518328407779
+19 0.000136671791551635
+20 0.000140865508001298
+21 0.000141806711326353
+22 0.000138908580993302
+23 0.000139761905302294
+24 0.000138506540679373
+25 0.000138803443405777
+26 0.000138182876980864
+27 0.000139462659717537
+28 0.000136875343741849
+29 0.000142278397106566
+30 0.00013761683658231
+31 0.000137211056426167
+32 0.000138790666824207
+33 0.00014052668120712
+34 0.00013936853792984
+35 0.000142243457958102
+36 0.000139378797030076
+37 0.000138474948471412
+38 0.0001402685593348
+39 0.000141241194796748
+40 0.000140857533551753
+41 0.000140575430123135
+42 0.000140830219606869
+43 0.000140546355396509
+44 0.000141141979838721
+45 0.000139869502163492
+46 0.000139055744512007
+47 0.000137860552058555
+48 0.000138819930725731
+49 0.000138664938276634
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000133001783979125
+1 0.000120726435852703
+2 9.99779440462589e-05
+3 0.000132430679514073
+4 0.000153251137817279
+5 0.000169685910805129
+6 0.000152447479194961
+7 0.000147413229569793
+8 0.000150266147102229
+9 0.000144471283419989
+10 0.000125571299577132
+11 0.000143867990118451
+12 0.000111321300209966
+13 0.000125004764413461
+14 0.000129671461763792
+15 0.000124645433970727
+16 0.000155431422172114
+17 0.000137248935061507
+18 0.000126574450405315
+19 0.0001640332484385
+20 0.00012222386430949
+21 0.000116288945719134
+22 0.000142465331009589
+23 0.000134140660520643
+24 0.000147481463500299
+25 0.000147959901369177
+26 0.000156181034981273
+27 0.000138251765747555
+28 0.000160986222908832
+29 0.000110248736746144
+30 0.000156648689880967
+31 0.000157890186528675
+32 0.000145624668220989
+33 0.000126812723465264
+34 0.000137896480737254
+35 0.00011031608300982
+36 0.000138262403197587
+37 0.000145149868330918
+38 0.000131543944007717
+39 0.000121929566375911
+40 0.000126448037917726
+41 0.000135391019284725
+42 0.00012636135215871
+43 0.000127254752442241
+44 0.000122720361105166
+45 0.000136264352477156
+46 0.000141303753480315
+47 0.00015214504674077
+48 0.000141735887154937
+49 0.000143709141411819
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006312662833588038, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006312662833588038, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..e9b52a2b4a6c74d6297bb88833f239bfc459b10f
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006312662833588038, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006312662833588038, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006312662833588038, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..d74de522c66b3406f78d7847b77e5ad8479b57bb
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006312662833588038, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=5.00868294699693e-08, ymax=0.000378575598131123,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000169957231264561
+1 1.47982073031017e-05
+2 6.37438461126294e-06
+3 3.90940203942591e-06
+4 2.73629461844394e-06
+5 2.07947800845432e-06
+6 1.53804580804717e-06
+7 1.2737847328026e-06
+8 1.03337970358552e-06
+9 8.71749136877042e-07
+10 7.54452798901184e-07
+11 6.67848667035287e-07
+12 6.14084740391263e-07
+13 5.38795575266704e-07
+14 4.65428939833146e-07
+15 4.27959633952923e-07
+16 3.83519534352672e-07
+17 3.59149396444991e-07
+18 3.29166056189933e-07
+19 3.08613664401491e-07
+20 2.87890912886724e-07
+21 2.6958801413457e-07
+22 2.53013297424332e-07
+23 2.49738036472991e-07
+24 2.22887024392548e-07
+25 2.16319151036259e-07
+26 2.01341805450284e-07
+27 1.99935684008778e-07
+28 1.82381214131055e-07
+29 1.75434337279512e-07
+30 1.6028789673328e-07
+31 1.64586694495483e-07
+32 1.4497446443329e-07
+33 1.5274480347216e-07
+34 1.36962242436311e-07
+35 1.3359571937599e-07
+36 1.31539536596392e-07
+37 1.27925986248556e-07
+38 1.16704015340474e-07
+39 1.18669213122757e-07
+40 1.13479011076834e-07
+41 1.0897439750579e-07
+42 1.03212570934375e-07
+43 1.01377437999872e-07
+44 9.89402195727962e-08
+45 9.53493852762222e-08
+46 9.42421252148051e-08
+47 9.15964051273477e-08
+48 9.22617715559682e-08
+49 8.86121114263005e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000127044608234428
+1 1.34520132633043e-05
+2 6.41276437818306e-06
+3 4.81070765090408e-06
+4 2.80033236776944e-06
+5 1.80278368588915e-06
+6 1.53668668190221e-06
+7 1.26408292544511e-06
+8 1.07222820133757e-06
+9 1.0301017709935e-06
+10 6.86258715631993e-07
+11 5.63236767447961e-07
+12 4.56271266102704e-07
+13 5.08665095821925e-07
+14 4.79464858926804e-07
+15 3.63481859722015e-07
+16 4.66450813974006e-07
+17 3.03682611502154e-07
+18 3.01451052564516e-07
+19 3.05669033195954e-07
+20 3.16820774060034e-07
+21 2.76692588840888e-07
+22 1.97031454263197e-07
+23 2.12739095672987e-07
+24 2.49444013888933e-07
+25 1.81776911745146e-07
+26 1.84988635965055e-07
+27 1.84069932629427e-07
+28 1.75076564801202e-07
+29 1.64140104175203e-07
+30 2.1627472790442e-07
+31 1.35279194068971e-07
+32 1.58917316639418e-07
+33 1.39494076734081e-07
+34 1.65964507914396e-07
+35 1.43718679623817e-07
+36 1.14431166764462e-07
+37 1.14711816934232e-07
+38 1.29211457533529e-07
+39 1.08396434939095e-07
+40 1.2826234296881e-07
+41 1.19271504672724e-07
+42 1.1002824606976e-07
+43 9.95373881096384e-08
+44 1.1984830905476e-07
+45 9.55701793259323e-08
+46 9.19339768756799e-08
+47 9.93283819639146e-08
+48 9.80561694063908e-08
+49 7.51650190977671e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000168831335031427
+1 0.00016773868992459
+2 0.000166809390066192
+3 0.000164143624715507
+4 0.000166591897141188
+5 0.000165472782100551
+6 0.000165684003150091
+7 0.0001657948596403
+8 0.000163276767125353
+9 0.000168158658198081
+10 0.000167124890140258
+11 0.000167964812135324
+12 0.000165844612638466
+13 0.000166044061188586
+14 0.000168424026924185
+15 0.000169386155903339
+16 0.000166105339303613
+17 0.000167880687513389
+18 0.000166836907737888
+19 0.000161972464411519
+20 0.000164539451361634
+21 0.000160815863637254
+22 0.00016382773173973
+23 0.000165836565429345
+24 0.000162408032338135
+25 0.000163432327099144
+26 0.000166890589753166
+27 0.000170770086697303
+28 0.000164786848472431
+29 0.000162367621669546
+30 0.000164988494361751
+31 0.000166229321621358
+32 0.000168514277902432
+33 0.000163918652106076
+34 0.000166821278980933
+35 0.000165646211826243
+36 0.000166576995979995
+37 0.000168130558449775
+38 0.000161205884069204
+39 0.000164327313541435
+40 0.000166147961863317
+41 0.000162213254952803
+42 0.000165278470376506
+43 0.000165718956850469
+44 0.000164246535860002
+45 0.000160650030011311
+46 0.000165127450600266
+47 0.000163437245646492
+48 0.000169681137776934
+49 0.000156190566485748
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000137749753776006
+1 0.000147973987623118
+2 0.000156148569658399
+3 0.00018047851335723
+4 0.000159001210704446
+5 0.000168721962836571
+6 0.000164723242050968
+7 0.000163909906405024
+8 0.000186025616130792
+9 0.000141874494147487
+10 0.000153270186274312
+11 0.000146022430271842
+12 0.000169173639733344
+13 0.000163511649589054
+14 0.000140441305120476
+15 0.000135131558636203
+16 0.000161821299116127
+17 0.000145799465826713
+18 0.000154218796524219
+19 0.000203904739464633
+20 0.000174992979736999
+21 0.000208939614822157
+22 0.000182383198989555
+23 0.000161788469995372
+24 0.000194933250895701
+25 0.000184251955943182
+26 0.000150830775965005
+27 0.00012089100346202
+28 0.000176492714672349
+29 0.000196036184206605
+30 0.000170144659932703
+31 0.000156822890858166
+32 0.000143491386552341
+33 0.000179815586307086
+34 0.000175445878994651
+35 0.00017843721434474
+36 0.000159684757818468
+37 0.000151826912770048
+38 0.000204857773496769
+39 0.000181590978172608
+40 0.000159470000653528
+41 0.000197253102669492
+42 0.000167387435794808
+43 0.000165757708600722
+44 0.000180490867933258
+45 0.000209085555979982
+46 0.0001717203122098
+47 0.000185899043572135
+48 0.000125576683785766
+49 0.000252266967436299
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0063639786956843775, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0063639786956843775, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..6265ada5ac4f7f8c06cf4c5b62f6249c08a09c1e
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0063639786956843775, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0063639786956843775, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0063639786956843775, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..7ed769899e869e0a6a0e71602d73ecdd55d54512
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0063639786956843775, Learning_Process.tex	
@@ -0,0 +1,263 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.01525994973773e-07, ymax=0.000288221226984153,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000155467030708678
+1 3.13173113681842e-05
+2 1.39090607262915e-05
+3 9.65232811722672e-06
+4 6.79096956446301e-06
+5 5.0573921726027e-06
+6 4.02526893594768e-06
+7 3.25686414726079e-06
+8 2.81380926026031e-06
+9 2.3468783183489e-06
+10 2.07861626222439e-06
+11 1.77978211013397e-06
+12 1.62076491960761e-06
+13 1.45751141644723e-06
+14 1.30012381305278e-06
+15 1.22522590118024e-06
+16 1.1438443152656e-06
+17 1.03927698091866e-06
+18 9.46512273003464e-07
+19 8.80393486113462e-07
+20 8.44318094550545e-07
+21 8.07192975571525e-07
+22 7.49112473386049e-07
+23 6.95674998496543e-07
+24 6.78929495734337e-07
+25 6.40406256025017e-07
+26 6.06546450399037e-07
+27 5.68584198390454e-07
+28 5.54213329451159e-07
+29 5.41903773410013e-07
+30 5.07754918999126e-07
+31 4.88921614305582e-07
+32 4.77574644719425e-07
+33 4.50344145974668e-07
+34 4.4333935989016e-07
+35 4.11555220125592e-07
+36 3.97272657437497e-07
+37 3.98704941062533e-07
+38 3.89969017078329e-07
+39 3.60162630386185e-07
+40 3.64862955848366e-07
+41 3.35886682023556e-07
+42 3.40408689680771e-07
+43 3.34748477825997e-07
+44 3.21542927395058e-07
+45 3.08733632436997e-07
+46 3.02430436249779e-07
+47 2.91030943344595e-07
+48 3.00935198538355e-07
+49 2.80387155271455e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.00016065539966803
+1 2.97514034173219e-05
+2 1.75438926817151e-05
+3 7.20452953828499e-06
+4 5.28877899341751e-06
+5 5.26702660863521e-06
+6 3.6802412068937e-06
+7 3.46125466421654e-06
+8 2.30382329391432e-06
+9 2.52533004641009e-06
+10 1.74261083429883e-06
+11 1.7777095990823e-06
+12 1.4741817722097e-06
+13 1.61125569775322e-06
+14 1.52992163293675e-06
+15 1.10973746814125e-06
+16 9.49368768488057e-07
+17 9.77668150881073e-07
+18 9.40119207371026e-07
+19 9.40112101943669e-07
+20 6.4721018588898e-07
+21 5.94451364577253e-07
+22 7.30821341221599e-07
+23 7.25303777926456e-07
+24 6.61703325022245e-07
+25 5.9117473938386e-07
+26 6.44589420062402e-07
+27 5.43256930995994e-07
+28 4.98597614750906e-07
+29 4.3141821493009e-07
+30 5.50100537566323e-07
+31 5.26462031302799e-07
+32 4.25586051733262e-07
+33 5.05715092913306e-07
+34 3.62116281849012e-07
+35 3.68900657576887e-07
+36 3.73848735080173e-07
+37 3.88475939416821e-07
+38 3.4798426895577e-07
+39 3.79275093109754e-07
+40 3.44699742527155e-07
+41 5.64529955227044e-07
+42 2.80815669384538e-07
+43 3.23703801541342e-07
+44 2.80778152728089e-07
+45 3.38889037720946e-07
+46 3.0927739658182e-07
+47 3.02677761965242e-07
+48 3.15460454203276e-07
+49 3.15804783213025e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000155514338985085
+1 0.000155965302838013
+2 0.000158768918481655
+3 0.000158878610818647
+4 0.000152856315253302
+5 0.000151447151438333
+6 0.000158079288667068
+7 0.000160458715981804
+8 0.000157109316205606
+9 0.000153569999383762
+10 0.000153588465764187
+11 0.000158045091666281
+12 0.00015473757230211
+13 0.000157999907969497
+14 0.000157535207108594
+15 0.00015379476826638
+16 0.000156675116159022
+17 0.00015644621453248
+18 0.000158215669216588
+19 0.00015953416004777
+20 0.000157966598635539
+21 0.000154393914272077
+22 0.000156981113832444
+23 0.00015959216398187
+24 0.000157546455739066
+25 0.000156986483489163
+26 0.000156199545017444
+27 0.000155968882609159
+28 0.000158040304086171
+29 0.000150309075252153
+30 0.000156978610903025
+31 0.000156843772856519
+32 0.00015547864313703
+33 0.000155855945195071
+34 0.000156987342052162
+35 0.000156341659021564
+36 0.000159059345605783
+37 0.000159955263370648
+38 0.000157260976266116
+39 0.000154185545397922
+40 0.000159779854584485
+41 0.000154930603457615
+42 0.000157503134687431
+43 0.000158033071784303
+44 0.000156312176841311
+45 0.000159304254339077
+46 0.000154321314767003
+47 0.000156847992911935
+48 0.0001558038929943
+49 0.00015402895223815
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000162664902745746
+1 0.000157500748173334
+2 0.000129985943203792
+3 0.000131370412418619
+4 0.000184984717634507
+5 0.000195493834326044
+6 0.000135744936414994
+7 0.000116001050628256
+8 0.000145556710776873
+9 0.000177035253727809
+10 0.000178716043592431
+11 0.000137401555548422
+12 0.000170458341017365
+13 0.000139169016620144
+14 0.000142748875077814
+15 0.000175426554051228
+16 0.000150592954014428
+17 0.000152030755998567
+18 0.000136720307637006
+19 0.000128752857563086
+20 0.00013621270773001
+21 0.000168312224559486
+22 0.000147908038343303
+23 0.000124021200463176
+24 0.000139967232826166
+25 0.000146484075230546
+26 0.000154164488776587
+27 0.000155875983182341
+28 0.000135580587084405
+29 0.000207156670512632
+30 0.000144856152473949
+31 0.000148140752571635
+32 0.000160117415362038
+33 0.000156338472152129
+34 0.000149629253428429
+35 0.000152557200635783
+36 0.000129478823509999
+37 0.000123852893011644
+38 0.00014496072253678
+39 0.000171866369782947
+40 0.000122227051178925
+41 0.000165706835105084
+42 0.000150474123074673
+43 0.000135344293084927
+44 0.000172550964634866
+45 0.000125443664728664
+46 0.000171935636899434
+47 0.000147670667502098
+48 0.000159178176545538
+49 0.000179794762516394
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006377587218151902, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006377587218151902, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..9f5462c0c5b62f21fc13b027c2e4946fbbb7eac2
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006377587218151902, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006377587218151902, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006377587218151902, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..39582522909e4156419b678ce9235d7ee63718c5
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006377587218151902, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.05542195152704e-08, ymax=0.000303377197773475,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000145392419653945
+1 9.85909628070658e-06
+2 2.60535625784541e-06
+3 1.076717126125e-06
+4 6.00534008299292e-07
+5 4.35542915511178e-07
+6 3.20991603075527e-07
+7 2.62223835534314e-07
+8 2.07351220637975e-07
+9 1.76571489873822e-07
+10 1.54244375494272e-07
+11 1.45527863537609e-07
+12 1.24862751249566e-07
+13 1.11611434761016e-07
+14 9.52212886318193e-08
+15 8.78161188211379e-08
+16 7.95161412270318e-08
+17 7.19302022389456e-08
+18 6.83539553847368e-08
+19 6.3142671535843e-08
+20 5.75706877725679e-08
+21 5.42755387300531e-08
+22 5.13576274840943e-08
+23 4.73479602192128e-08
+24 4.64481182405052e-08
+25 4.30040678622845e-08
+26 4.41536336381887e-08
+27 3.94209109799704e-08
+28 3.77137645557468e-08
+29 3.435459561274e-08
+30 3.52339171172389e-08
+31 3.29600702286825e-08
+32 3.07616971895186e-08
+33 3.16167643177323e-08
+34 2.90392616619783e-08
+35 2.79603327157929e-08
+36 2.73959059882145e-08
+37 2.68322697394296e-08
+38 2.57701593397996e-08
+39 2.40491786485109e-08
+40 2.41165718506409e-08
+41 2.42083171286822e-08
+42 2.27402079389094e-08
+43 2.16597584312694e-08
+44 2.19359872488667e-08
+45 2.0636122144424e-08
+46 2.01516989761785e-08
+47 1.9925014527189e-08
+48 1.96816909436848e-08
+49 1.85844211131325e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.00014456243661698
+1 7.70901533542201e-06
+2 2.58978320744063e-06
+3 8.74353133895056e-07
+4 6.22727668542211e-07
+5 3.99102390247208e-07
+6 3.55775085836285e-07
+7 2.31754810897655e-07
+8 2.67272383780437e-07
+9 2.43282528344935e-07
+10 1.77992077965428e-07
+11 1.75744006014611e-07
+12 9.59949701950791e-08
+13 1.01897263959927e-07
+14 1.12298280896539e-07
+15 9.40560411777369e-08
+16 8.68133724907239e-08
+17 8.34124520565638e-08
+18 6.2737449013639e-08
+19 5.46286003100249e-08
+20 5.97020104464718e-08
+21 5.68820262003555e-08
+22 4.80168758087984e-08
+23 5.09409368021352e-08
+24 4.7848391915295e-08
+25 4.11284091228481e-08
+26 4.93529697109807e-08
+27 4.0744346563315e-08
+28 3.6049680574024e-08
+29 4.69047343187867e-08
+30 2.52973233472176e-08
+31 3.24810649487972e-08
+32 3.7156919319159e-08
+33 3.16847419412625e-08
+34 2.87663350917455e-08
+35 3.19349595656604e-08
+36 2.83154406588437e-08
+37 2.31106334069864e-08
+38 2.71046385336149e-08
+39 2.75304046226665e-08
+40 2.31182450960432e-08
+41 2.23117861963829e-08
+42 2.28854997175176e-08
+43 2.27106866645954e-08
+44 2.35566464112935e-08
+45 1.96503009419757e-08
+46 1.89461371036259e-08
+47 2.13908233348548e-08
+48 1.68301426128892e-08
+49 2.66549822214301e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00014630556688644
+1 0.000142052740557119
+2 0.000146453487104736
+3 0.000141598822665401
+4 0.000142946737469174
+5 0.000145890822750516
+6 0.000142139921081252
+7 0.000149278828757815
+8 0.000149443585542031
+9 0.000146718142786995
+10 0.00014534909860231
+11 0.000149191051605158
+12 0.000146904421853833
+13 0.000141870317747816
+14 0.000143903307616711
+15 0.000146132544614375
+16 0.000145421567140147
+17 0.000145288708154112
+18 0.000143693032441661
+19 0.000143907353049144
+20 0.000140400879899971
+21 0.000142458724440075
+22 0.00014267374353949
+23 0.000147005514008924
+24 0.000144977791933343
+25 0.000145702855661511
+26 0.000142216144013219
+27 0.000145144324051216
+28 0.000146649603266269
+29 0.000141847995109856
+30 0.000146596081322059
+31 0.000145532641909085
+32 0.000144070683745667
+33 0.00014155640383251
+34 0.000144520861795172
+35 0.000146018937812187
+36 0.000146813530591317
+37 0.000144600024214014
+38 0.000143357276101597
+39 0.000146691323607229
+40 0.000141938056913204
+41 0.000147038619616069
+42 0.000142744975164533
+43 0.000144294754136354
+44 0.000145823694765568
+45 0.000145954909385182
+46 0.000141693148179911
+47 0.000144735327921808
+48 0.000142841468914412
+49 0.000145055557368323
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000130360349430703
+1 0.000169677543453872
+2 0.000130684376927093
+3 0.000174049579072744
+4 0.000161245246999897
+5 0.000134006870212033
+6 0.000167886901181191
+7 0.000105973762401845
+8 0.000102480364148505
+9 0.000128935425891541
+10 0.000140208503580652
+11 0.000102022953797132
+12 0.000124236088595353
+13 0.000171132691320963
+14 0.000152066510054283
+15 0.000133415102027357
+16 0.000139628740726039
+17 0.000141935175633989
+18 0.000154555731569417
+19 0.000151922926306725
+20 0.000185205935849808
+21 0.000163446224178188
+22 0.000165385004947893
+23 0.000126802624436095
+24 0.000145283338497393
+25 0.000136249989736825
+26 0.000165991223184392
+27 0.000140106873004697
+28 0.000130234548123553
+29 0.000170466970303096
+30 0.000126437545986846
+31 0.000139974872581661
+32 0.000152512249769643
+33 0.000172433079569601
+34 0.000150914827827364
+35 0.000134789268486202
+36 0.000130043408717029
+37 0.000147296319482848
+38 0.00015643410733901
+39 0.000129970139823854
+40 0.00017011103045661
+41 0.000123314122902229
+42 0.000162989759701304
+43 0.000151022759382613
+44 0.000134424408315681
+45 0.000133310139062814
+46 0.000190248509170488
+47 0.000144183766678907
+48 0.000163690143381245
+49 0.000142291071824729
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006381914768006597, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006381914768006597, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..53eb3a6318e65e92abbd75a02ae5f5b0a1d275df
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006381914768006597, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006381914768006597, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006381914768006597, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..056681eccba51d2727fda6fce196851c859b75e2
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006381914768006597, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.19638037468587e-08, ymax=0.000281525355368841,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000137233742862009
+1 8.1415128079243e-06
+2 2.51779738391633e-06
+3 1.13245096144965e-06
+4 6.772078791073e-07
+5 4.69876937359004e-07
+6 3.62865279157631e-07
+7 2.93871551093616e-07
+8 2.40789177041734e-07
+9 2.06522202006454e-07
+10 1.79930623289692e-07
+11 1.60140004368259e-07
+12 1.34827374154156e-07
+13 1.30738953885157e-07
+14 1.11875912978121e-07
+15 1.001178873139e-07
+16 9.0807127151038e-08
+17 8.30204953672364e-08
+18 7.99984363197837e-08
+19 7.19877490951149e-08
+20 6.73020323915807e-08
+21 6.58208278991879e-08
+22 5.65585978051786e-08
+23 5.6785737001519e-08
+24 5.19825817946185e-08
+25 5.21557979027421e-08
+26 4.81094986071184e-08
+27 4.5718895336222e-08
+28 4.38519336398713e-08
+29 4.01015540774097e-08
+30 3.82234546236759e-08
+31 3.67981307647369e-08
+32 3.64740664338115e-08
+33 3.42701440558812e-08
+34 3.28495701751308e-08
+35 3.34124585776863e-08
+36 2.98015088162629e-08
+37 2.9888898467334e-08
+38 2.85659584875475e-08
+39 2.85113106457402e-08
+40 2.64603841060307e-08
+41 2.61465906703506e-08
+42 2.46432190209589e-08
+43 2.31019043894776e-08
+44 2.37395632041171e-08
+45 2.47949891729604e-08
+46 2.16692672694307e-08
+47 2.23289777778746e-08
+48 2.07673167551548e-08
+49 1.94061247071886e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000121933386253659
+1 9.17295164981624e-06
+2 1.88496130704152e-06
+3 1.14448630483821e-06
+4 7.25447364402498e-07
+5 5.59082877771289e-07
+6 4.03980351393329e-07
+7 3.21055352969779e-07
+8 2.81865965234829e-07
+9 2.15702456785039e-07
+10 2.16702872535279e-07
+11 1.67184936117337e-07
+12 1.36424475272179e-07
+13 1.21405150821374e-07
+14 1.21029685828944e-07
+15 1.05152615503812e-07
+16 9.93726985143439e-08
+17 9.00384264923559e-08
+18 7.2119071603538e-08
+19 7.34561567128367e-08
+20 6.75104629976886e-08
+21 5.63885365068018e-08
+22 7.29476639094173e-08
+23 4.666169317602e-08
+24 5.87339847868407e-08
+25 4.72109320526215e-08
+26 5.15545721668786e-08
+27 5.68540734491307e-08
+28 4.38438796379614e-08
+29 3.88985732513447e-08
+30 4.31366409259226e-08
+31 3.40931904929676e-08
+32 3.40139152399388e-08
+33 3.09049923430393e-08
+34 3.03168086190908e-08
+35 3.00990166124393e-08
+36 3.3441573066284e-08
+37 2.55411123362137e-08
+38 3.15927586314046e-08
+39 2.11759108026399e-08
+40 3.02463334378444e-08
+41 2.74363696206592e-08
+42 2.69508273476049e-08
+43 2.86894081824585e-08
+44 2.17840732119612e-08
+45 2.3080131583697e-08
+46 2.2511796871072e-08
+47 1.99539424983186e-08
+48 1.89051689858388e-08
+49 2.80378635864054e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000136913426104002
+1 0.000137698618345894
+2 0.000132734654471278
+3 0.000138519229949452
+4 0.000134062662255019
+5 0.000135131092974916
+6 0.000131953042000532
+7 0.000135468260850757
+8 0.000138450574013405
+9 0.000134337926283479
+10 0.000134926493046805
+11 0.000135551585117355
+12 0.000134411457111128
+13 0.000135435140691698
+14 0.000138619769131765
+15 0.000133450172143057
+16 0.000138260744279251
+17 0.000135601090732962
+18 0.000137974639073946
+19 0.000134199974127114
+20 0.000138038754812442
+21 0.000131731692817993
+22 0.000137475959490985
+23 0.000135132810100913
+24 0.000132012632093392
+25 0.000135849259095266
+26 0.000131160151795484
+27 0.000136145201395266
+28 0.000136199159896933
+29 0.000136806120281108
+30 0.000134055560920388
+31 0.000136297778226435
+32 0.000134614849230275
+33 0.000137716328026727
+34 0.000133992871269584
+35 0.000132740577100776
+36 0.000134554749820381
+37 0.000137081398861483
+38 0.000135631882585585
+39 0.000137138165882789
+40 0.000135776397655718
+41 0.000136882008519024
+42 0.000135929090902209
+43 0.000131028980831616
+44 0.000133688721689396
+45 0.000134857808006927
+46 0.000137592054670677
+47 0.000131709137349389
+48 0.00013336080883164
+49 0.000138674498884939
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000121940349345095
+1 0.000116687362606172
+2 0.000160783107276075
+3 0.000116248105769046
+4 0.000149518891703337
+5 0.000139086667331867
+6 0.000168264203239232
+7 0.000136547765578143
+8 0.000110919376311358
+9 0.000146398815559223
+10 0.000141839220304973
+11 0.000136103932163678
+12 0.00014522485435009
+13 0.00013572332682088
+14 0.000108889762486797
+15 0.000154492139699869
+16 0.000111405948700849
+17 0.000135311318445019
+18 0.000114025657239836
+19 0.000148734121466987
+20 0.000113443355076015
+21 0.000171320905792527
+22 0.000119195610750467
+23 0.000139790921821259
+24 0.000167337289894931
+25 0.000132624933030456
+26 0.000173577180248685
+27 0.000135948168463074
+28 0.000128999992739409
+29 0.000123876612633467
+30 0.000157801070599817
+31 0.000128840358229354
+32 0.000143609970109537
+33 0.000116168615932111
+34 0.000163161821546964
+35 0.000160929645062424
+36 0.000145867161336355
+37 0.000121713477710728
+38 0.000133651061332785
+39 0.000121017219498754
+40 0.000132871893583797
+41 0.00012455957767088
+42 0.000132373388623819
+43 0.000178158370545134
+44 0.000154047927935608
+45 0.000141868440550752
+46 0.000116960683953948
+47 0.000170973828062415
+48 0.000156213689479046
+49 0.000107873231172562
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006383534415189716, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006383534415189716, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..716cf80a1a6f17bde2a0b99ebfdf07a45b3c1786
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006383534415189716, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006383534415189716, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006383534415189716, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..632a59e4cf16e6fe1637627d0dd95cd30090c58e
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006383534415189716, Learning_Process.tex	
@@ -0,0 +1,266 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.03,0.97)},
+  anchor=north west,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=5.59265227516193e-08, ymax=30812991314.9739,
+ymode=log,
+ytick style={color=black},
+ytick={1e-11,1e-08,1e-05,0.01,10,10000,10000000,10000000000,10000000000000,1e+16},
+yticklabels={
+  \(\displaystyle {10^{-11}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{1}}\),
+  \(\displaystyle {10^{4}}\),
+  \(\displaystyle {10^{7}}\),
+  \(\displaystyle {10^{10}}\),
+  \(\displaystyle {10^{13}}\),
+  \(\displaystyle {10^{16}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000144744641147554
+1 1.32722889247816e-05
+2 5.02568445881479e-06
+3 2.61016270997061e-06
+4 1.73399951108877e-06
+5 1.31250806134631e-06
+6 1.12795135009947e-06
+7 8.26945665721723e-07
+8 6.83844973536907e-07
+9 5.49826438600576e-07
+10 4.81525887607859e-07
+11 4.46828522626674e-07
+12 3.70677582850476e-07
+13 3.58122974830621e-07
+14 0.998266458511353
+15 1
+16 1
+17 1
+18 1
+19 1
+20 1
+21 1
+22 1
+23 1
+24 1
+25 1
+26 1
+27 1
+28 1
+29 1
+30 1
+31 1
+32 1
+33 1
+34 1
+35 1
+36 1
+37 1
+38 1
+39 1
+40 1
+41 1
+42 1
+43 1
+44 1
+45 1
+46 1
+47 1
+48 1
+49 1
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000125052858493291
+1 1.68101669260068e-05
+2 7.23233961252845e-06
+3 3.29421823153098e-06
+4 1.89860475074966e-06
+5 9.36287619879295e-07
+6 1.01492241810774e-06
+7 7.70352585277578e-07
+8 5.7298137789985e-07
+9 5.92046546898928e-07
+10 5.6376273960268e-07
+11 4.04466675263393e-07
+12 5.55455187623011e-07
+13 4.17150573639447e-07
+14 384047.5625
+15 4811932160
+16 880484672
+17 619419328
+18 327940000
+19 164161936
+20 188859088
+21 157257680
+22 112279424
+23 151711984
+24 95820192
+25 93946128
+26 61960412
+27 65539584
+28 116802456
+29 62564200
+30 56189608
+31 40400156
+32 80414392
+33 54042460
+34 75124608
+35 29927718
+36 35976476
+37 57167276
+38 51063704
+39 41536108
+40 28447222
+41 18956066
+42 37064328
+43 58150016
+44 24468502
+45 16848826
+46 20455770
+47 18872980
+48 23215120
+49 26909434
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000142489079735242
+1 0.000142274016980082
+2 0.000139728290378116
+3 0.000139386160299182
+4 0.000144179779454134
+5 0.000142919379868545
+6 0.000146034639328718
+7 0.000144225210533477
+8 0.000147509519592859
+9 0.000141457974677905
+10 0.000141008727950975
+11 0.000146639969898388
+12 0.000144329998875037
+13 0.000145353333209641
+14 0.000143540819408372
+15 0.000136397866299376
+16 0.000139968004077673
+17 0.000144058984005824
+18 0.000142606397275813
+19 0.000141480632009916
+20 0.000143549972563051
+21 0.00014271390682552
+22 0.000141881959279999
+23 0.00014370575081557
+24 0.000140003743581474
+25 0.000145166384754702
+26 0.000139347670483403
+27 0.000143736193422228
+28 0.000146239952300675
+29 0.000143656507134438
+30 0.000142917910125107
+31 0.000146618825965561
+32 0.000140902295242995
+33 0.000146796330227517
+34 0.000141251672175713
+35 0.000139481096994132
+36 0.000146820195368491
+37 0.000138140807393938
+38 0.000137649039970711
+39 0.00013706210302189
+40 0.000140273594297469
+41 0.000142607095767744
+42 0.000140244548674673
+43 0.000145713042002171
+44 0.000142299133585766
+45 0.000144713107147254
+46 0.000145057987538166
+47 0.00014298026508186
+48 0.000145291196531616
+49 0.000138764895382337
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000149172919918783
+1 0.000148200299008749
+2 0.000170904633705504
+3 0.000173266031197272
+4 0.000135812515509315
+5 0.000147931219544262
+6 0.000116964991320856
+7 0.000132991146529093
+8 0.000103523780126125
+9 0.00015551844262518
+10 0.000157667105668224
+11 0.000109437409264501
+12 0.000131680848426186
+13 0.000123653429909609
+14 0.000135104448418133
+15 0.000200158727238886
+16 0.00017222469614353
+17 0.00013452282291837
+18 0.000149305022205226
+19 0.000155446658027358
+20 0.000139330732054077
+21 0.000147443483001553
+22 0.000153866174514405
+23 0.000138141142087989
+24 0.00017133480287157
+25 0.000125971739180386
+26 0.000173412307049148
+27 0.000145883284858428
+28 0.000135795096866786
+29 0.000137495342642069
+30 0.000143967830808833
+31 0.000111039938929025
+32 0.000162236538017169
+33 0.000110605848021805
+34 0.000159564660862088
+35 0.000177052366780117
+36 0.0001157362057711
+37 0.000187960584298708
+38 0.000192572886589915
+39 0.000197341243620031
+40 0.000168675149325281
+41 0.000152489825268276
+42 0.000169479986652732
+43 0.000122437297250144
+44 0.000150117208249867
+45 0.00012710620649159
+46 0.000125486985780299
+47 0.000148455146700144
+48 0.000121036580821965
+49 0.000181006893399172
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006401758126059949, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006401758126059949, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..98ab3de0a85531f8e282de60c4af8da1c64e374f
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006401758126059949, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006401758126059949, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006401758126059949, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..80473b41e5c243ae8cbb2df6f0a33c1b07580b42
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006401758126059949, Learning_Process.tex	
@@ -0,0 +1,255 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.46061531279146e-05, ymax=0.00111890182226318,
+ymode=log,
+ytick style={color=black},
+ytick={1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000122839395771734
+1 1.77903239091393e-05
+2 8.04443843662739e-05
+3 9.96163144009188e-05
+4 0.000918637088034302
+5 0.000478989735711366
+6 0.000382256606826559
+7 0.000313794444082305
+8 0.000266567512881011
+9 0.000231306985369883
+10 0.000210960919503123
+11 0.000191886691027321
+12 0.000167805003002286
+13 0.000157197355292737
+14 0.00014556864334736
+15 0.000134198169689626
+16 0.000125801321701147
+17 0.000118908144941088
+18 0.000110093984403647
+19 0.000104293547337875
+20 9.97493916656822e-05
+21 9.27130749914795e-05
+22 8.40698412503116e-05
+23 8.09357588877901e-05
+24 7.62799609219655e-05
+25 7.5112831837032e-05
+26 7.22687182133086e-05
+27 6.97635332471691e-05
+28 6.65468978695571e-05
+29 6.36164768366143e-05
+30 5.99125196458772e-05
+31 5.98518308834173e-05
+32 5.65414520679042e-05
+33 5.81109925406054e-05
+34 5.40239525435027e-05
+35 5.14792664034758e-05
+36 4.91551436425652e-05
+37 4.812912811758e-05
+38 4.47433412773535e-05
+39 4.34788489656057e-05
+40 4.41613883594982e-05
+41 4.31512635259423e-05
+42 4.2187821236439e-05
+43 3.90646819141693e-05
+44 3.88252665288746e-05
+45 3.83281112590339e-05
+46 3.67269822163507e-05
+47 3.57741955667734e-05
+48 3.44885265803896e-05
+49 3.41098711942323e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000142341174068861
+1 1.99724545382196e-05
+2 7.83502982812934e-05
+3 9.52284899540246e-05
+4 0.000252034602453932
+5 0.000437154056271538
+6 0.000369806424714625
+7 0.000352832139469683
+8 0.000320178805850446
+9 0.000292147567961365
+10 0.000246591953327879
+11 0.000195310087292455
+12 0.000231224446906708
+13 0.00019286283350084
+14 0.000167189267813228
+15 0.000151133848703466
+16 0.00012990772665944
+17 0.000105395796708763
+18 0.000103337042673957
+19 9.21051178011112e-05
+20 7.56743829697371e-05
+21 8.126933244057e-05
+22 0.000106070125184488
+23 9.6341005701106e-05
+24 9.54249626374803e-05
+25 7.19016243238002e-05
+26 7.58035021135584e-05
+27 6.61491867504083e-05
+28 5.88125803915318e-05
+29 6.74951734254137e-05
+30 6.83440812281333e-05
+31 5.59635591343977e-05
+32 7.93099970906042e-05
+33 5.08246375829913e-05
+34 4.90807469759602e-05
+35 5.02731891174335e-05
+36 4.52934109489433e-05
+37 4.20862161263358e-05
+38 5.41591725777835e-05
+39 5.04487543366849e-05
+40 4.64495606138371e-05
+41 4.221767449053e-05
+42 3.67885913874488e-05
+43 5.08647426613607e-05
+44 3.81207792088389e-05
+45 3.24655557051301e-05
+46 3.49847796314862e-05
+47 3.23829444823787e-05
+48 3.61325764970388e-05
+49 2.93947177851805e-05
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000125357444630936
+1 0.000124245823826641
+2 0.000127089311718009
+3 0.000122994722914882
+4 0.000121555502119008
+5 0.000125285048852675
+6 0.0001252755173482
+7 0.000125812613987364
+8 0.000123322039144114
+9 0.000125877777463757
+10 0.000127060906379484
+11 0.000123914898722433
+12 0.000125993086840026
+13 0.000125975697301328
+14 0.000123260353575461
+15 0.000124448168207891
+16 0.000125880629639141
+17 0.000123179619549774
+18 0.000122074750834145
+19 0.000123699908726849
+20 0.00012278878421057
+21 0.00012564095959533
+22 0.000119993695989251
+23 0.000121774566650856
+24 0.00012482974852901
+25 0.000124344645882957
+26 0.000122932106023654
+27 0.000127967476146296
+28 0.000125932288938202
+29 0.000126369646750391
+30 0.000125584338093176
+31 0.000126886734506115
+32 0.000123809339129366
+33 0.000125368213048205
+34 0.000123913036077283
+35 0.00012295953638386
+36 0.000123939898912795
+37 0.000123628560686484
+38 0.000126076745800674
+39 0.000124445912661031
+40 0.000123788646305911
+41 0.00012350274482742
+42 0.000123055709991604
+43 0.000125480306451209
+44 0.000123328631161712
+45 0.000127741455798969
+46 0.000125054648378864
+47 0.000126131446450017
+48 0.000126244645798579
+49 0.000122364945127629
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000119403026474174
+1 0.000130573447677307
+2 0.00010415416181786
+3 0.000138852818054147
+4 0.000153318498632871
+5 0.000120492091809865
+6 0.000119471245852765
+7 0.000117805459012743
+8 0.000135757829411887
+9 0.000113042049633805
+10 0.000104662045487203
+11 0.000134883259306662
+12 0.000116218056064099
+13 0.000115356546302792
+14 0.000143340337672271
+15 0.000130259490106255
+16 0.000115643502795137
+17 0.000137457071105018
+18 0.000146392951137386
+19 0.00013624427083414
+20 0.000143948185723275
+21 0.000120750388305169
+22 0.000167779304319993
+23 0.00015205611998681
+24 0.000121827135444619
+25 0.000126189814181998
+26 0.000140320844366215
+27 9.64662540354766e-05
+28 0.000113482659799047
+29 0.000106322419014759
+30 0.000119017022370826
+31 0.000104041588201653
+32 0.000134810601593927
+33 0.000121297736768611
+34 0.000132600893266499
+35 0.000140271251439117
+36 0.000133551395265386
+37 0.000135149108245969
+38 0.000113282214442734
+39 0.000129605221445672
+40 0.000133907466079108
+41 0.000138007570058107
+42 0.000138301242259331
+43 0.000117873067210894
+44 0.000136611794005148
+45 0.000100299766927492
+46 0.000124646219774149
+47 0.00011401304800529
+48 0.000114867892989423
+49 0.000145748708746396
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006412361287727093, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006412361287727093, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..4567811aaef4778ee9e6380ca3dd5d4ee3c747c8
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006412361287727093, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006412361287727093, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006412361287727093, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..b99b378b57c3f608d60565e50dd16095b88ba0a8
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006412361287727093, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.13579117095886e-08, ymax=0.000255781284731244,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000122539480798878
+1 1.51275171447196e-05
+2 3.15573947773373e-06
+3 1.7472698345955e-06
+4 7.52506252865714e-07
+5 4.4986850866735e-07
+6 3.40823447686489e-07
+7 2.6111828788089e-07
+8 2.19030539483356e-07
+9 1.883989284579e-07
+10 1.5294588706638e-07
+11 1.35636184950272e-07
+12 1.19907909379435e-07
+13 1.02894027520506e-07
+14 9.47545970575447e-08
+15 8.71240359856529e-08
+16 8.53631334507554e-08
+17 7.54538689307083e-08
+18 6.98654218922456e-08
+19 6.58839311995507e-08
+20 5.83432679945872e-08
+21 5.90974629233187e-08
+22 5.37120143917491e-08
+23 4.87488058809049e-08
+24 4.5964842598778e-08
+25 4.20067749473674e-08
+26 4.25674144821642e-08
+27 3.87443890303985e-08
+28 3.75883608683125e-08
+29 3.62376191276326e-08
+30 3.43242234634999e-08
+31 3.38574430713834e-08
+32 3.48893216539636e-08
+33 7.84538497100584e-06
+34 3.05747747120222e-08
+35 2.92156236980645e-08
+36 2.68494506627803e-08
+37 2.61193235928658e-08
+38 2.65463881987671e-08
+39 2.48152698389958e-08
+40 2.56846384161236e-08
+41 2.40231337045316e-08
+42 2.26206271491947e-08
+43 2.23907594687489e-08
+44 2.15021369598389e-08
+45 2.17075264430378e-08
+46 2.13370245916167e-08
+47 2.02874907984096e-08
+48 2.03067340720509e-08
+49 1.96724929679704e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000131701657664962
+1 1.11024783109315e-05
+2 3.00505848827015e-06
+3 1.70561804679892e-06
+4 7.3011523227251e-07
+5 5.24243830568594e-07
+6 2.78571178569109e-07
+7 2.71082257086164e-07
+8 2.2761700790852e-07
+9 1.25001790252099e-07
+10 1.56119241978558e-07
+11 1.3496490680609e-07
+12 1.27729038013058e-07
+13 1.12418163666916e-07
+14 1.08721408764723e-07
+15 8.59034727795915e-08
+16 6.76872460303457e-08
+17 7.3408038758771e-08
+18 5.47356826530176e-08
+19 5.26716519289039e-08
+20 5.63549633625371e-08
+21 6.50940705781977e-08
+22 4.83398494566245e-08
+23 4.72926231509518e-08
+24 4.0518795429989e-08
+25 5.31963557648396e-08
+26 3.94663182134991e-08
+27 4.62153586511249e-08
+28 3.92444938768222e-08
+29 3.39860228848465e-08
+30 3.37977610342932e-08
+31 3.04627931768664e-08
+32 2.85503585217839e-08
+33 2.62481645307844e-08
+34 3.68397898853345e-08
+35 2.67402473497214e-08
+36 2.65435602386788e-08
+37 3.4156951045361e-08
+38 2.40644819626823e-08
+39 2.75784213243924e-08
+40 2.55639900359483e-08
+41 2.74818070522542e-08
+42 2.23252101250182e-08
+43 2.1681398010287e-08
+44 1.83043482593348e-08
+45 2.32349020024003e-08
+46 1.79119385990134e-08
+47 2.02762784340393e-08
+48 1.93774933876512e-08
+49 1.8694747083714e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000125594830024056
+1 0.00012583943316713
+2 0.000122296696645208
+3 0.000126891580293886
+4 0.000123300225823186
+5 0.000123563266242854
+6 0.000123205012641847
+7 0.000125817794469185
+8 0.000124930302263238
+9 0.000125854086945765
+10 0.000123331439681351
+11 0.000125249236589298
+12 0.000125586680951528
+13 0.00012446305481717
+14 0.000128078841953538
+15 0.00012463670282159
+16 0.00012515505659394
+17 0.000122955141705461
+18 0.000123545076348819
+19 0.000123634454212151
+20 0.000121444340038579
+21 0.000123689940664917
+22 0.000136213522637263
+23 0.000123533420264721
+24 0.000126100829220377
+25 0.000120760603749659
+26 0.000122921774163842
+27 0.000126141181681305
+28 0.000123042176710442
+29 0.000122758021461777
+30 0.00012276231427677
+31 0.000125922655570321
+32 0.000125167702208273
+33 0.000122186393127777
+34 0.000126884362543933
+35 0.000124070254969411
+36 0.000120049160614144
+37 0.000122245386592112
+38 0.000124619269627146
+39 0.000124673868413083
+40 0.000123677120427601
+41 0.000121288219816051
+42 0.000122045581520069
+43 0.000123168982099742
+44 0.000124005775433034
+45 0.000119463315058965
+46 0.000123114601592533
+47 0.000124765210784972
+48 0.000127387917018496
+49 0.000122159282909706
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000107603780634236
+1 0.000102851008705329
+2 0.000135116613819264
+3 9.50550820562057e-05
+4 0.00012582766066771
+5 0.000123595047625713
+6 0.00013027701061219
+7 0.000107064319308847
+8 0.000111026594822761
+9 0.000101793571957387
+10 0.000128632789710537
+11 0.000109220614831429
+12 0.000104868493508548
+13 0.000118041258247104
+14 8.71486045070924e-05
+15 0.000114225724246353
+16 0.000112550238554832
+17 0.000127235980471596
+18 0.000124179685371928
+19 0.000125571241369471
+20 0.000142476739711128
+21 0.00012356077786535
+22 0.000116119583253749
+23 0.000127058345242403
+24 9.95116060948931e-05
+25 0.000149592509842478
+26 0.000129235908389091
+27 0.000101184275990818
+28 0.000133732028189115
+29 0.000132896515424363
+30 0.000132556160679087
+31 0.000108169682789594
+32 0.000111421919427812
+33 0.000138571835123003
+34 9.41304169828072e-05
+35 0.000120790289656725
+36 0.00015525748312939
+37 0.000136359754833393
+38 0.000116474671813194
+39 0.000116023235023022
+40 0.000126971455756575
+41 0.000145790851092897
+42 0.000139692696393467
+43 0.000125636448501609
+44 0.00012188742402941
+45 0.000162190219270997
+46 0.000129440202726983
+47 0.000110797489469405
+48 8.78311111591756e-05
+49 0.000139192838105373
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006424454443387069, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006424454443387069, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..637b7b4d4b0a82ab3740408a8934d8d623f7a283
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006424454443387069, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006424454443387069, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006424454443387069, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..ae7ded82c492dbcd89ea0876eb0ab082008d4d27
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006424454443387069, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.42050613581943e-08, ymax=0.000290165592832601,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000143864075653255
+1 1.22688934425241e-05
+2 2.42886403611919e-06
+3 1.26924066989886e-06
+4 1.04912510323629e-06
+5 6.38571634681284e-07
+6 4.52523437388663e-07
+7 3.42249933282801e-07
+8 2.88793586378233e-07
+9 2.39022597270377e-07
+10 2.06074588504634e-07
+11 1.84588827778498e-07
+12 1.57365505515372e-07
+13 1.42335665032078e-07
+14 1.36932428063119e-07
+15 1.23298164567132e-07
+16 1.1024554424921e-07
+17 1.00971668359762e-07
+18 9.08859689729979e-08
+19 8.56422488482167e-08
+20 7.95173846768193e-08
+21 7.48188213606227e-08
+22 6.87499195350938e-08
+23 6.33812646810838e-08
+24 5.83284140986962e-08
+25 6.09159371833812e-08
+26 5.46804947987312e-08
+27 5.11738917907678e-08
+28 4.84467541639333e-08
+29 4.62778793064444e-08
+30 4.5703565376698e-08
+31 4.44405614530297e-08
+32 4.30481748026068e-08
+33 4.0453016936226e-08
+34 3.62981786850014e-08
+35 3.78840745440812e-08
+36 3.74971733663187e-08
+37 3.47289059732248e-08
+38 3.71537502985575e-08
+39 3.1756542284711e-08
+40 3.26770681624566e-08
+41 3.10952117388297e-08
+42 2.87016934663598e-08
+43 2.8932916507074e-08
+44 2.69181796852536e-08
+45 2.61311114968521e-08
+46 2.62370374315424e-08
+47 2.50389078360058e-08
+48 2.53537972838558e-08
+49 2.42881625922564e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000142628618050367
+1 1.75534787558718e-05
+2 2.47540560849302e-06
+3 1.7006701682476e-06
+4 9.30721057557093e-07
+5 5.26324583915994e-07
+6 3.97795162143666e-07
+7 4.12365551483163e-07
+8 2.88832978867504e-07
+9 2.50124912781757e-07
+10 1.9596971867486e-07
+11 1.53970276528526e-07
+12 1.62659745228666e-07
+13 1.38315428444002e-07
+14 1.26767503161318e-07
+15 1.31881051856908e-07
+16 1.17511035568896e-07
+17 9.3660418087893e-08
+18 9.14216542469148e-08
+19 8.365963566348e-08
+20 6.7426462635467e-08
+21 7.47161266190233e-08
+22 6.68761330757661e-08
+23 6.03415841737842e-08
+24 8.0743298269681e-08
+25 5.90323914195778e-08
+26 6.21037870018881e-08
+27 5.87780846217356e-08
+28 6.21585556359605e-08
+29 5.24393044543103e-08
+30 3.96205450670095e-08
+31 4.62134934764435e-08
+32 3.95044672529821e-08
+33 4.62202542905743e-08
+34 1.05053139520805e-07
+35 3.33548371145298e-08
+36 2.72652709298882e-08
+37 4.78205208764848e-08
+38 3.84714553547383e-08
+39 3.06999758947768e-08
+40 3.65618255671052e-08
+41 3.19414823479747e-08
+42 3.76567008686379e-08
+43 2.5835403150154e-08
+44 2.47264324571006e-08
+45 3.29756062455999e-08
+46 2.55673580085158e-08
+47 2.83430221514891e-08
+48 2.57769610101377e-08
+49 2.23029044121859e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000145565660204738
+1 0.000145783924381249
+2 0.000142944467370398
+3 0.000145013371366076
+4 0.000145061669172719
+5 0.000142956836498342
+6 0.000143516706884839
+7 0.000149070023326203
+8 0.000144403660669923
+9 0.000148582374094985
+10 0.000141153112053871
+11 0.000140453339554369
+12 0.000145449957926758
+13 0.000145189245813526
+14 0.000139115378260612
+15 0.000145416852319613
+16 0.000143427387229167
+17 0.000142787568620406
+18 0.000147154220030643
+19 0.00014572188956663
+20 0.000144744175486267
+21 0.000147518410813063
+22 0.000145332276588306
+23 0.000145909129059874
+24 0.000145154757774435
+25 0.000143758225021884
+26 0.000146159582072869
+27 0.000142939898069017
+28 0.000147474929690361
+29 0.00014584741438739
+30 0.000146410675370134
+31 0.000142684511956759
+32 0.000145356723805889
+33 0.000146192935062572
+34 0.000144957055454142
+35 0.000144400473800488
+36 0.000145613419590518
+37 0.00014477594231721
+38 0.000144031248055398
+39 0.000145498488564044
+40 0.000143979967106134
+41 0.00014643081522081
+42 0.000145166151924059
+43 0.000144525576615706
+44 0.000146083169966005
+45 0.000144236953929067
+46 0.000146850477904081
+47 0.000143956873216666
+48 0.000143258148455061
+49 0.000145771395182237
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000132220637169667
+1 0.000127872786833905
+2 0.000154527253471315
+3 0.000133786074002273
+4 0.000148000704939477
+5 0.000153803106513806
+6 0.000151562227983959
+7 0.000131227759993635
+8 0.000139178693643771
+9 0.000113778798549902
+10 0.000172504136571661
+11 0.000179688810021617
+12 0.000130305561469868
+13 0.000143482771818526
+14 0.000184810909559019
+15 0.000141177821205929
+16 0.000151879852637649
+17 0.000150318213854916
+18 0.0001147923321696
+19 0.000128290892462246
+20 0.0001390241086483
+21 0.000111130641016643
+22 0.000134394664200954
+23 0.000131362743559293
+24 0.000134530171635561
+25 0.000143897443194874
+26 0.000123892590636387
+27 0.000152129679918289
+28 0.000135020862217061
+29 0.000129093590658158
+30 0.000121109791507479
+31 0.000153689557919279
+32 0.000130775733850896
+33 0.000135684676934034
+34 0.000134764122776687
+35 0.000142569449963048
+36 0.00014505090075545
+37 0.000134945454192348
+38 0.000151499596540816
+39 0.000135306429001503
+40 0.000141220283694565
+41 0.000122738550999202
+42 0.000130952292238362
+43 0.000139357362058945
+44 0.000123110134154558
+45 0.000144853751407936
+46 0.000125724865938537
+47 0.000156591209815815
+48 0.00014878467482049
+49 0.000126773767988198
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006426463547836494, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006426463547836494, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..c5044015930f634a10b6f7cd0bd1a6342607f96b
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006426463547836494, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006426463547836494, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006426463547836494, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..c219febdb83fefb3d4cc1c7733bf4f95b7daa385
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006426463547836494, Learning_Process.tex	
@@ -0,0 +1,265 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.03,0.97)},
+  anchor=north west,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.66443892027655e-06, ymax=29473.0901261374,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-06,0.0001,0.01,1,100,10000,1000000,100000000},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{0}}\),
+  \(\displaystyle {10^{2}}\),
+  \(\displaystyle {10^{4}}\),
+  \(\displaystyle {10^{6}}\),
+  \(\displaystyle {10^{8}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000130800923216157
+1 1.2028155651933e-05
+2 1.87250298040453e-05
+3 0.00292285578325391
+4 0.00427930196747184
+5 0.00142044085077941
+6 0.104848548769951
+7 0.995029807090759
+8 0.999384105205536
+9 0.998800992965698
+10 0.997255325317383
+11 1.0021390914917
+12 0.997295320034027
+13 1.00468671321869
+14 1.00540232658386
+15 1.00183773040771
+16 0.996113419532776
+17 0.994663000106812
+18 0.986894249916077
+19 0.993566930294037
+20 0.989529967308044
+21 0.994238317012787
+22 0.988347291946411
+23 0.985520780086517
+24 0.981870889663696
+25 0.99230945110321
+26 0.979843139648438
+27 0.987426698207855
+28 0.983305394649506
+29 0.98527055978775
+30 0.991125583648682
+31 0.987568378448486
+32 0.984659373760223
+33 0.987099230289459
+34 0.988597214221954
+35 0.981373965740204
+36 0.99328225851059
+37 0.985033452510834
+38 0.984277367591858
+39 0.991356015205383
+40 0.989536881446838
+41 0.9867804646492
+42 0.990972757339478
+43 0.992358863353729
+44 0.992109894752502
+45 0.991092681884766
+46 0.98901778459549
+47 0.989748179912567
+48 0.988946378231049
+49 0.992554068565369
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000164456592756324
+1 7.62330046200077e-06
+2 2.60191045526881e-05
+3 8.97304744285066e-06
+4 0.000480440503451973
+5 0.000302606960758567
+6 0.0755388364195824
+7 10301.2138671875
+8 7387.8681640625
+9 7558.03076171875
+10 1372.46618652344
+11 1809.84069824219
+12 1605.65295410156
+13 2572.58081054688
+14 1050.44396972656
+15 2194.8017578125
+16 1613.94836425781
+17 682.840515136719
+18 1197.86535644531
+19 1053.74084472656
+20 944.554504394531
+21 1071.24914550781
+22 495.132965087891
+23 380.494720458984
+24 585.070922851562
+25 548.093688964844
+26 569.328918457031
+27 312.538452148438
+28 931.688659667969
+29 181.01057434082
+30 223.015533447266
+31 204.089141845703
+32 384.568725585938
+33 787.956787109375
+34 159.827087402344
+35 534.12744140625
+36 598.162231445312
+37 599.989440917969
+38 137.706604003906
+39 272.650115966797
+40 374.76171875
+41 648.492065429688
+42 498.040618896484
+43 389.124176025391
+44 590.3525390625
+45 1225.04284667969
+46 457.418609619141
+47 242.39567565918
+48 336.582092285156
+49 281.5224609375
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.0001357178989565
+1 0.000132145927636884
+2 0.000132820350700058
+3 0.000133201727294363
+4 0.000133107503643259
+5 0.00013284879969433
+6 0.000135260881506838
+7 0.000135729947942309
+8 0.000133303576149046
+9 0.00013149059668649
+10 0.000134182162582874
+11 0.000132847722852603
+12 0.000132357294205576
+13 0.000133931680466048
+14 0.000133997615193948
+15 0.000136002461658791
+16 0.000132613640744239
+17 0.000131189415697008
+18 0.000133690977236256
+19 0.000136433300212957
+20 0.000131054926896468
+21 0.000129930282128043
+22 0.000134852714836597
+23 0.000130633998196572
+24 0.000132842964376323
+25 0.000130635206005536
+26 0.000132199245854281
+27 0.000136061236844398
+28 0.000134276400785893
+29 0.000133798122988082
+30 0.00013475377636496
+31 0.000133638124680147
+32 0.00013607922301162
+33 0.000133610345073976
+34 0.000136998030939139
+35 0.000132327288156375
+36 0.000136388989631087
+37 0.000132758941617794
+38 0.00013537346967496
+39 0.000135280919494107
+40 0.000136692760861479
+41 0.000133540175738744
+42 0.000132825167383999
+43 0.000135717913508415
+44 0.000130908752907999
+45 0.000134047717438079
+46 0.000134263624204323
+47 0.000133119596284814
+48 0.000129447289509699
+49 0.000135161521029659
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000120799661090132
+1 0.000148369916132651
+2 0.000145245881867595
+3 0.000143879355164245
+4 0.000143215496791527
+5 0.000144559875479899
+6 0.000122531069791876
+7 0.000119644137157593
+8 0.000139818454044871
+9 0.000157793314429
+10 0.000132824090542272
+11 0.000145145415444858
+12 0.000150699212099425
+13 0.000133997324155644
+14 0.000133784022182226
+15 0.000117965762910899
+16 0.000147624567034654
+17 0.000162278927746229
+18 0.000138697330839932
+19 0.000114603666588664
+20 0.000158212991664186
+21 0.000172257030499168
+22 0.000128925501485355
+23 0.00016405303904321
+24 0.00014371688303072
+25 0.000166078258189373
+26 0.000150691586895846
+27 0.000115084250865038
+28 0.000133589026518166
+29 0.000137128547066823
+30 0.00012683478416875
+31 0.000139042997034267
+32 0.000116576266009361
+33 0.000139492854941636
+34 0.000110817316453904
+35 0.000149044368299656
+36 0.000112855530460365
+37 0.000145011159474961
+38 0.000122871409985237
+39 0.000123817168059759
+40 0.000108266853203531
+41 0.000140159303555265
+42 0.000146220161695965
+43 0.000116248433187138
+44 0.000160128853167407
+45 0.000134647765662521
+46 0.000133102643303573
+47 0.000150917781866156
+48 0.000174643166246824
+49 0.000125111255329102
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006431628622916818, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006431628622916818, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..9b97ea1fa4a4453736fdad77f29a667b264f5221
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006431628622916818, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006431628622916818, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006431628622916818, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..b5e43463de7ffbc1421795ea0485010c82db5337
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006431628622916818, Learning_Process.tex	
@@ -0,0 +1,263 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.21470157715982e-07, ymax=0.000223933511859772,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000120897886517923
+1 1.63681124831783e-05
+2 2.27680247917306e-05
+3 7.67036999604898e-06
+4 5.03870796819683e-06
+5 3.39610915034427e-06
+6 2.73958949037478e-06
+7 2.29584293265361e-06
+8 1.88595845429518e-06
+9 1.57538613621e-06
+10 1.33766047838435e-06
+11 1.25003714401828e-06
+12 1.05029755559372e-06
+13 9.29490454382176e-07
+14 8.61797047946311e-07
+15 7.58043881887716e-07
+16 7.18515480002679e-07
+17 6.48190450647235e-07
+18 6.05138097853342e-07
+19 5.65057860058005e-07
+20 5.24242238952866e-07
+21 4.89395858949138e-07
+22 4.59546100728403e-07
+23 4.70733340307561e-07
+24 4.20465227080058e-07
+25 3.84690650889752e-07
+26 3.78525555788656e-07
+27 4.02341783001248e-07
+28 3.40799488185439e-07
+29 3.4276195037819e-07
+30 3.26398577499276e-07
+31 3.09502837581022e-07
+32 2.80263265040048e-07
+33 2.81801959545191e-07
+34 2.79455946383678e-07
+35 2.67557709321409e-07
+36 2.52287776447702e-07
+37 2.36717582424717e-07
+38 2.2610586825067e-07
+39 2.27808016006747e-07
+40 2.20665214101246e-07
+41 2.10070083994651e-07
+42 2.04200446773939e-07
+43 2.00313934328733e-07
+44 1.99518325416648e-07
+45 2.09411439300311e-07
+46 2.04167434958435e-07
+47 1.93893825439773e-07
+48 1.88376077403518e-07
+49 1.8558641556865e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000101169505796861
+1 1.82203511940315e-05
+2 2.68210915237432e-05
+3 9.4230645117932e-06
+4 4.35320589531329e-06
+5 4.81744109492865e-06
+6 2.65481503447518e-06
+7 1.81510120000894e-06
+8 1.44914974953281e-06
+9 1.33165099214239e-06
+10 1.28715873870533e-06
+11 9.15620717023558e-07
+12 1.0516787369852e-06
+13 1.11119538814819e-06
+14 7.45368367915944e-07
+15 7.23164419014211e-07
+16 6.6418800770407e-07
+17 6.3194238464348e-07
+18 5.68030657177587e-07
+19 5.06837125158199e-07
+20 4.43931412519305e-07
+21 4.98814131333347e-07
+22 4.53293978353031e-07
+23 3.80252060949715e-07
+24 3.49441961589037e-07
+25 4.84586621496419e-07
+26 3.57136087814069e-07
+27 3.77129850903657e-07
+28 3.69145908507562e-07
+29 2.66204665422265e-07
+30 2.50159473580425e-07
+31 3.13328939682833e-07
+32 3.866567226396e-07
+33 3.3859996051433e-07
+34 2.55773386470537e-07
+35 2.36985897572595e-07
+36 2.36447476709145e-07
+37 2.78611423709663e-07
+38 3.07121496234686e-07
+39 2.47509461814843e-07
+40 2.24270294779672e-07
+41 2.66012193606002e-07
+42 2.42696813756993e-07
+43 2.0086395124963e-07
+44 1.96609221347899e-07
+45 1.75674287561378e-07
+46 1.74999811974885e-07
+47 1.70965392953804e-07
+48 1.89913762937977e-07
+49 1.92070146454171e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000120866592624225
+1 0.000118148847832344
+2 0.000118291318358388
+3 0.000116988929221407
+4 0.000118042240501381
+5 0.000117658142698929
+6 0.000117557821795344
+7 0.00012013075320283
+8 0.000118224328616634
+9 0.000118247073260136
+10 0.000120331598736811
+11 0.000120630211313255
+12 0.000122372308396734
+13 0.000118192037916742
+14 0.000114824440970551
+15 0.000119355645438191
+16 0.000118865093099885
+17 0.000119855452794582
+18 0.000117739087727387
+19 0.000120162636449095
+20 0.000120213269838132
+21 0.000115786933747586
+22 0.000118256444693543
+23 0.00011914131755475
+24 0.000118363612273242
+25 0.00011981870920863
+26 0.000117781732114963
+27 0.000117848547233734
+28 0.000117497213068418
+29 0.000119006625027396
+30 0.000121878816571552
+31 0.000120685544970911
+32 0.000114850765385199
+33 0.000119195676234085
+34 0.000119696334877517
+35 0.000115254420961719
+36 0.000118063515401445
+37 0.000119351992907468
+38 0.000120293683721684
+39 0.000116241018986329
+40 0.000120030927064363
+41 0.00011975545930909
+42 0.000118091964395717
+43 0.000119799915410113
+44 0.000119214069854934
+45 0.000118691568786744
+46 0.000118329422548413
+47 0.000122344732517377
+48 0.000117383133328985
+49 0.000118871066661086
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 9.42820115596987e-05
+1 0.000130118132801726
+2 0.000121445511467755
+3 0.000132100802147761
+4 0.00012700525985565
+5 0.000132220113300718
+6 0.00013559398939833
+7 0.000107666295662057
+8 0.000124477141071111
+9 0.000123950376291759
+10 0.000103876867797226
+11 9.86895756796002e-05
+12 8.81770538398996e-05
+13 0.000128846368170343
+14 0.000159103772602975
+15 0.000114871560072061
+16 0.00011822309170384
+17 0.000110980858153198
+18 0.000136291069793515
+19 0.000106471779872663
+20 0.00010763353202492
+21 0.000139643278089352
+22 0.000125037229736336
+23 0.000115365131932776
+24 0.000125561011373065
+25 0.000112292647827417
+26 0.000126895305584185
+27 0.000129878797451966
+28 0.000130016051116399
+29 0.000116135568532627
+30 9.46726795518771e-05
+31 0.000109361557406373
+32 0.000152073291246779
+33 0.000122045319585595
+34 0.000114992821181659
+35 0.000145860089105554
+36 0.000127492705360055
+37 0.000114425260107964
+38 0.000104628736153245
+39 0.000142583347042091
+40 0.000111335531983059
+41 0.000109238950244617
+42 0.000125916194519959
+43 0.000109223743493203
+44 0.000119411000923719
+45 0.000122211204143241
+46 0.000123528516269289
+47 9.08085130504332e-05
+48 0.000131227527162991
+49 0.000117796174890827
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006433385408237334, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006433385408237334, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..78aa6bf5aefb06b02c790dbc5d18a82dad114e71
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006433385408237334, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006433385408237334, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006433385408237334, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..9dc845c4133f34291586e577733b95acc01c88cb
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006433385408237334, Learning_Process.tex	
@@ -0,0 +1,263 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.73974194228588e-07, ymax=0.000289403819261699,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00016315933316946
+1 1.29045120047522e-05
+2 5.39541033504065e-05
+3 1.7069873138098e-05
+4 9.43161467148457e-06
+5 6.50290121484431e-06
+6 5.02811462865793e-06
+7 4.19110119764809e-06
+8 3.49469564753235e-06
+9 2.9091429496475e-06
+10 2.5205883957824e-06
+11 2.2395865926228e-06
+12 2.00871863853536e-06
+13 1.75531238255644e-06
+14 1.54885628944612e-06
+15 1.45776584759005e-06
+16 1.3252134749564e-06
+17 1.21186803880846e-06
+18 1.1746873269658e-06
+19 1.05015817553067e-06
+20 9.77107788457943e-07
+21 9.38420441798371e-07
+22 8.76637159308302e-07
+23 8.1877902857741e-07
+24 7.95136713804823e-07
+25 7.32803584924113e-07
+26 6.95136975537025e-07
+27 6.64202786992973e-07
+28 6.34837931556831e-07
+29 5.85474595027335e-07
+30 5.80869084387814e-07
+31 5.43068324532214e-07
+32 5.20026048889122e-07
+33 5.07724507770035e-07
+34 5.03143098740111e-07
+35 4.66875093252384e-07
+36 4.80854964735045e-07
+37 4.31652352972378e-07
+38 4.21004784811885e-07
+39 4.34397406934295e-07
+40 3.99533234940463e-07
+41 3.77059450329398e-07
+42 3.73011346255225e-07
+43 3.53949957343502e-07
+44 3.55315904698728e-07
+45 3.33302153876502e-07
+46 3.25784810684127e-07
+47 3.34010479718927e-07
+48 3.22890741699666e-07
+49 3.13916956429239e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000147725542774424
+1 1.22428918984951e-05
+2 6.06002540735062e-05
+3 1.58275415742537e-05
+4 8.17356249172008e-06
+5 7.03080513630994e-06
+6 5.76345428271452e-06
+7 3.85092062060721e-06
+8 3.34761284648266e-06
+9 3.25332848660764e-06
+10 2.95948848361149e-06
+11 2.17402339330874e-06
+12 1.87122589068167e-06
+13 1.89456227417395e-06
+14 2.08984397431777e-06
+15 1.48702315527771e-06
+16 1.42343299103231e-06
+17 1.41747466386732e-06
+18 1.13264866286045e-06
+19 1.13406611035316e-06
+20 1.06300944935356e-06
+21 8.07612764219812e-07
+22 8.38103574096749e-07
+23 9.06034244962939e-07
+24 5.77184891881188e-07
+25 7.12426015070378e-07
+26 6.51343952995376e-07
+27 5.99881502694188e-07
+28 5.61544027277705e-07
+29 6.57373675494455e-07
+30 5.65395964713389e-07
+31 5.9676079899873e-07
+32 5.56490874714655e-07
+33 4.85989232856809e-07
+34 4.32559971841329e-07
+35 4.34958081996228e-07
+36 4.12386555126432e-07
+37 4.39742507296614e-07
+38 3.96481766529178e-07
+39 3.7334643820941e-07
+40 3.51329276782053e-07
+41 4.43013476569831e-07
+42 3.50928900161307e-07
+43 3.66891811154346e-07
+44 3.56307651827592e-07
+45 4.21525840010872e-07
+46 4.11023677315825e-07
+47 3.26280400031465e-07
+48 2.92970042892193e-07
+49 2.43722041659566e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000164180819410831
+1 0.00016224205319304
+2 0.000162791169714183
+3 0.000159550254466012
+4 0.000163348187925294
+5 0.00015725483535789
+6 0.000159757488290779
+7 0.00016262567078229
+8 0.000160223615239374
+9 0.000163470860570669
+10 0.000160652562044561
+11 0.000162576106959023
+12 0.00015962979523465
+13 0.000159868111950345
+14 0.000161486241267994
+15 0.000160011011757888
+16 0.000159160423208959
+17 0.000162210053531453
+18 0.000156783105921932
+19 0.000161784642841667
+20 0.000163806296768598
+21 0.000159712115419097
+22 0.000162319265655242
+23 0.000164550467161462
+24 0.000159560950123705
+25 0.000164070152095519
+26 0.00016016123117879
+27 0.000162008072948083
+28 0.000158111710334197
+29 0.000156783775310032
+30 0.000164086857694201
+31 0.000164394223247655
+32 0.000162955053383484
+33 0.000162328229635023
+34 0.000165068238857202
+35 0.000161077899974771
+36 0.000162774114869535
+37 0.000163262011483312
+38 0.00016320330905728
+39 0.000164692988619208
+40 0.000159699397045188
+41 0.000163196658832021
+42 0.000166741869179532
+43 0.000163012562552467
+44 0.000163394361152314
+45 0.000163695804076269
+46 0.00016185239655897
+47 0.000164312543347478
+48 0.000162340729730204
+49 0.000166483223438263
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000140727643156424
+1 0.00015388592146337
+2 0.00014666945207864
+3 0.000178489324753173
+4 0.000145048994454555
+5 0.000203070303541608
+6 0.000178698435775004
+7 0.000156046109623276
+8 0.000171863008290529
+9 0.000147747981827706
+10 0.000170276834978722
+11 0.000152298001921736
+12 0.000178972535650246
+13 0.00017689261585474
+14 0.000160912706633098
+15 0.000174014465301298
+16 0.000183432406629436
+17 0.000154642169945873
+18 0.000206582859391347
+19 0.000156718757352792
+20 0.000139860567287542
+21 0.000176241432200186
+22 0.00015470216749236
+23 0.000134300193167292
+24 0.000180322138476186
+25 0.000139272349770181
+26 0.000170108687598258
+27 0.000153267465066165
+28 0.000196555352886207
+29 0.000202737894142047
+30 0.000139786701765843
+31 0.000156492256792262
+32 0.000149347222759388
+33 0.000153943299665116
+34 0.000133230088977143
+35 0.000164590805070475
+36 0.000150308493175544
+37 0.00014507828745991
+38 0.0001476160105085
+39 0.000130574728245847
+40 0.000178089714609087
+41 0.000148826031363569
+42 0.000116964685730636
+43 0.000147596234455705
+44 0.000147177401231602
+45 0.000139117168146186
+46 0.000160309878992848
+47 0.000138508316013031
+48 0.000154967696289532
+49 0.000118365678645205
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006435477351531939, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006435477351531939, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..c2c08016dc604591a0e87dc6371d12897804d8a3
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006435477351531939, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006435477351531939, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006435477351531939, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..c44a03e89b9bc631835b7c97ce884a46482a22a2
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006435477351531939, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.15673205085342e-08, ymax=0.000254375497135938,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000137602706672624
+1 9.66644165600883e-06
+2 3.66662084161362e-06
+3 1.01605689906137e-06
+4 6.4384505549242e-07
+5 4.41259828676266e-07
+6 3.44169450272602e-07
+7 2.71962193210129e-07
+8 2.20126537442411e-07
+9 1.82817856853035e-07
+10 1.60461127052258e-07
+11 1.55387795075512e-07
+12 1.23519953376672e-07
+13 1.15486834317835e-07
+14 1.00117460988258e-07
+15 9.04850878669095e-08
+16 8.63312408228012e-08
+17 7.6077235178218e-08
+18 7.21876247666842e-08
+19 6.73957458730001e-08
+20 5.8733583330195e-08
+21 5.71168499163832e-08
+22 5.2685752649495e-08
+23 5.3501086227925e-08
+24 4.70753747094932e-08
+25 4.59822331322357e-08
+26 4.2128657895546e-08
+27 4.08407316854209e-08
+28 4.1208224388356e-08
+29 3.88142851193152e-08
+30 3.61676946170064e-08
+31 3.50298705598107e-08
+32 3.54852112138815e-08
+33 3.258502800918e-08
+34 3.04249603289009e-08
+35 3.0016352070561e-08
+36 2.9820398594893e-08
+37 2.86797394721816e-08
+38 2.77750800137255e-08
+39 2.6277723108592e-08
+40 2.54058960535986e-08
+41 2.49709852795377e-08
+42 2.46209914678275e-08
+43 2.36300650158228e-08
+44 2.31238725945104e-08
+45 2.47468214809032e-08
+46 2.11920347936712e-08
+47 2.17819948744591e-08
+48 2.13306332597085e-08
+49 2.11307540354255e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000132347326143645
+1 1.24770103866467e-05
+2 3.47357718055719e-06
+3 1.25978806408966e-06
+4 6.37402195025061e-07
+5 5.4295378504321e-07
+6 3.30495367961703e-07
+7 2.69597791202614e-07
+8 2.15817678395069e-07
+9 2.0586222149177e-07
+10 1.59255549192494e-07
+11 1.23726536571667e-07
+12 1.17125800613849e-07
+13 8.3517228688379e-08
+14 1.021012963065e-07
+15 1.07197386967073e-07
+16 6.32281214052455e-08
+17 7.33704865751861e-08
+18 8.62570814774699e-08
+19 5.19349896421772e-08
+20 7.82900926310504e-08
+21 5.46678506907483e-08
+22 6.04458278985476e-08
+23 5.17356575358008e-08
+24 4.75451109593905e-08
+25 5.98026090870007e-08
+26 5.38796491866833e-08
+27 4.57434303768878e-08
+28 3.74364823585438e-08
+29 3.08921741520862e-08
+30 3.72356332434265e-08
+31 3.26678488704601e-08
+32 3.28979545827224e-08
+33 3.26969562536306e-08
+34 3.08616918687221e-08
+35 2.56127812292561e-08
+36 2.48504932187643e-08
+37 2.91564337118189e-08
+38 2.61788297706289e-08
+39 3.25820330715487e-08
+40 2.84492109869916e-08
+41 2.41071127504711e-08
+42 2.80503975602642e-08
+43 2.25812879506293e-08
+44 1.97560989789736e-08
+45 2.51990801558577e-08
+46 2.57748702381377e-08
+47 1.82224777489637e-08
+48 1.83773671835752e-08
+49 1.99376621878855e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000138170624268241
+1 0.000137070717755705
+2 0.000138684074045159
+3 0.000137166367494501
+4 0.000136180620756932
+5 0.000137635943247005
+6 0.000138540402986109
+7 0.000134400048409589
+8 0.000136680479045026
+9 0.000135624562972225
+10 0.000137447816086933
+11 0.000136222675791942
+12 0.000136975140776485
+13 0.000133975889184512
+14 0.000137160473968834
+15 0.000138715506182052
+16 0.000135706941364333
+17 0.000137550858198665
+18 0.000136216243845411
+19 0.000134188725496642
+20 0.000135211696033366
+21 0.000135473368573003
+22 0.000137019247631542
+23 0.000137675655423664
+24 0.000137807204737328
+25 0.000139221083372831
+26 0.000139928830321878
+27 0.000136087430291809
+28 0.000136946808197536
+29 0.000136848786496557
+30 0.000135859401780181
+31 0.000136850037961267
+32 0.000136727801873349
+33 0.000137117895064875
+34 0.000138224670081399
+35 0.0001348732621409
+36 0.000136970091261901
+37 0.000137721988721751
+38 0.000138786024763249
+39 0.000137558265123516
+40 0.0001344183110632
+41 0.000134930189233273
+42 0.000138181814691052
+43 0.000136763454065658
+44 0.000136748232762329
+45 0.000137353301397525
+46 0.000136919275973924
+47 0.000136736372951418
+48 0.000137664304929785
+49 0.000139748022775166
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000125731792650186
+1 0.000130449567222968
+2 0.000119427335448563
+3 0.000134615111164749
+4 0.000142564691486768
+5 0.000132994246087037
+6 0.00012709123257082
+7 0.000159624541993253
+8 0.000139689480420202
+9 0.000148172621265985
+10 0.000131066990434192
+11 0.000133451612782665
+12 0.000138829636853188
+13 0.000159319752128795
+14 0.000131019842228852
+15 0.000118305259093177
+16 0.000144582605571486
+17 0.000128633109852672
+18 0.000143570883665234
+19 0.00016147326095961
+20 0.000149071463965811
+21 0.000145805868669413
+22 0.000139302996103652
+23 0.000126501035992987
+24 0.000124868805869482
+25 0.000113258211058564
+26 0.000106473758933134
+27 0.000140841177199036
+28 0.000132820539874956
+29 0.000132851288071834
+30 0.000142506891279481
+31 0.000137361566885374
+32 0.000141255906783044
+33 0.000134514513774775
+34 0.000122736237244681
+35 0.000149975836393423
+36 0.000134933943627402
+37 0.000127244231407531
+38 0.000118457530334126
+39 0.000131669265101664
+40 0.000158596332767047
+41 0.000153681408846751
+42 0.000124123864225112
+43 0.000134714995510876
+44 0.000137799375806935
+45 0.00013604381820187
+46 0.00013120828953106
+47 0.000135319525725208
+48 0.000126765444292687
+49 0.000114900023618247
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006454673067018408, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006454673067018408, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..4b96fc05ca07e24284029ebebf6904a52d2a32dd
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006454673067018408, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006454673067018408, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006454673067018408, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..7e887413bc23b7175a96f5c02856a0c1ac51e328
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006454673067018408, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.13611344822525e-08, ymax=0.000285214187796498,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000136336544528604
+1 1.29413756440044e-05
+2 3.54445501216105e-06
+3 9.70938685895817e-07
+4 5.87281704156339e-07
+5 4.09248457344802e-07
+6 3.29633706996901e-07
+7 2.60533852269873e-07
+8 2.27163411636866e-07
+9 1.82745424126551e-07
+10 1.57687168211851e-07
+11 1.36880402124007e-07
+12 1.24436439818965e-07
+13 1.06251903275734e-07
+14 1.02595613782341e-07
+15 9.04843062699001e-08
+16 8.23501125069015e-08
+17 7.44312629308297e-08
+18 7.17505841407728e-08
+19 6.5759174106006e-08
+20 6.22030853492106e-08
+21 5.70434472990655e-08
+22 5.43232623329004e-08
+23 5.08866548898368e-08
+24 4.81384780925964e-08
+25 4.5978325147189e-08
+26 4.4528700726687e-08
+27 4.08491978021175e-08
+28 3.98409483182149e-08
+29 3.70610351296818e-08
+30 3.67286396851796e-08
+31 3.48051614196265e-08
+32 3.47064741390568e-08
+33 3.20794413255499e-08
+34 3.05833722791249e-08
+35 2.91316162304156e-08
+36 2.80294401022729e-08
+37 2.6745604841949e-08
+38 2.71970446164005e-08
+39 2.61090367104089e-08
+40 2.54349501460638e-08
+41 2.45122624420446e-08
+42 2.45782612040557e-08
+43 2.42892319590737e-08
+44 2.27258105667261e-08
+45 2.38943389518909e-08
+46 2.17554401160669e-08
+47 2.08310044769178e-08
+48 2.11708464092908e-08
+49 3.0963462904765e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000105971565062646
+1 1.24651387523045e-05
+2 2.41494649344531e-06
+3 9.76976821220887e-07
+4 6.22099832980894e-07
+5 4.71859721073997e-07
+6 3.37513085924002e-07
+7 2.30983374649441e-07
+8 1.84274412617924e-07
+9 1.70639992802535e-07
+10 1.34302609922088e-07
+11 1.37196025207231e-07
+12 1.09143797999423e-07
+13 1.32804515828866e-07
+14 8.56039221730498e-08
+15 8.27079844611944e-08
+16 8.88003839349949e-08
+17 8.69989307261676e-08
+18 6.45083417794012e-08
+19 6.18899420601338e-08
+20 5.82854475794647e-08
+21 5.87737325474791e-08
+22 4.96969398966485e-08
+23 5.90283555368387e-08
+24 5.31674864134857e-08
+25 4.6781437390564e-08
+26 3.69927946053394e-08
+27 4.94207483825448e-08
+28 3.71036499302591e-08
+29 4.04280271482094e-08
+30 3.34287584280446e-08
+31 3.44923556383492e-08
+32 3.05339717954212e-08
+33 3.68571235753734e-08
+34 3.3457556725125e-08
+35 3.34081313724255e-08
+36 3.69223016605247e-08
+37 3.24197628742695e-08
+38 2.48624587584345e-08
+39 3.42820065668548e-08
+40 3.1696426816552e-08
+41 2.80072338654236e-08
+42 1.90052382720296e-08
+43 2.06729069418543e-08
+44 2.02969161477995e-08
+45 2.00274907768971e-08
+46 2.40877966461994e-08
+47 2.4271210818938e-08
+48 1.80057124765653e-08
+49 2.05710612988241e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000135079404572025
+1 0.000135387614136562
+2 0.000135589521960355
+3 0.000132631743326783
+4 0.000133971800096333
+5 0.000132514978758991
+6 0.00013426406076178
+7 0.000133750218083151
+8 0.000130857661133632
+9 0.000133116685901769
+10 0.000132457338622771
+11 0.000134866422740743
+12 0.000136003523948602
+13 0.000135211113956757
+14 0.000130645756144077
+15 0.000131272914586589
+16 0.000136615039082244
+17 0.000133519308292307
+18 0.000133027468109503
+19 0.000133113353513181
+20 0.000134862217237242
+21 0.000131713328300975
+22 0.000128016821690835
+23 0.000131364155095071
+24 0.000133487323182635
+25 0.000131410473841242
+26 0.000133452995214611
+27 0.00013461904018186
+28 0.000132151442812756
+29 0.000130885600810871
+30 0.000130122862174176
+31 0.000132504996145144
+32 0.000133092282339931
+33 0.000137253300636075
+34 0.000130580578115769
+35 0.000134812842588872
+36 0.000133454683236778
+37 0.000132629997096956
+38 0.000133325302158482
+39 0.000133058696519583
+40 0.000133506633574143
+41 0.000133680456201546
+42 0.000133623849251308
+43 0.000133754583657719
+44 0.000133699344587512
+45 0.000136457369080745
+46 0.000133872992591932
+47 0.000135494643473066
+48 0.000133107372676022
+49 0.000130129614262842
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.00011595953401411
+1 0.000113575093564577
+2 0.000110578046587761
+3 0.000137862007250078
+4 0.000126121609355323
+5 0.000139805721119046
+6 0.000123703779536299
+7 0.000128299507196061
+8 0.000154498353367671
+9 0.000133606561576016
+10 0.000139510870212689
+11 0.000117072275315877
+12 0.000109330008854158
+13 0.000114415823190939
+14 0.000156708803842776
+15 0.000147716942592524
+16 0.000103205667983275
+17 0.000131762615637854
+18 0.000133844310767017
+19 0.000133632711367682
+20 0.000118598167318851
+21 0.000145932761370204
+22 0.000179962706170045
+23 0.000151518266648054
+24 0.00013119624054525
+25 0.000148199454997666
+26 0.000131859909743071
+27 0.00011974844528595
+28 0.000142232383950613
+29 0.000154295397805981
+30 0.000160385694471188
+31 0.000138805044116452
+32 0.000133356574224308
+33 9.79227042989805e-05
+34 0.00015710957814008
+35 0.000118020201625768
+36 0.000131038003019057
+37 0.000136875169118866
+38 0.000132534405565821
+39 0.000133397858007811
+40 0.000163829667144455
+41 0.000130679472931661
+42 0.00012900291767437
+43 0.000128156898426823
+44 0.000129305160953663
+45 0.000104283812106587
+46 0.000127183535369113
+47 0.000112024827103596
+48 0.000132907531224191
+49 0.00016167682770174
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006464791425887222, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006464791425887222, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..0f66e192552492258cea318d5d8b83717b7faf40
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006464791425887222, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006464791425887222, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006464791425887222, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..7fbc0b5043aa7f6f947e3f3ad0c65c36e1e980ae
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006464791425887222, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.43425250815176e-08, ymax=0.000259849043357694,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000124546204460785
+1 1.10160144686233e-05
+2 3.16094792651711e-06
+3 1.34646006699768e-06
+4 8.45056717935222e-07
+5 6.50631363896537e-07
+6 5.17439502800698e-07
+7 4.14878741139546e-07
+8 3.49087315498764e-07
+9 2.95692188956309e-07
+10 2.48887687348542e-07
+11 2.34423794154281e-07
+12 2.03553753408414e-07
+13 1.79947448941675e-07
+14 1.5718322288194e-07
+15 1.49536106164305e-07
+16 1.3700970669106e-07
+17 1.20980914175561e-07
+18 1.15623151941691e-07
+19 1.06435052771303e-07
+20 9.74395462094435e-08
+21 9.31320371932998e-08
+22 9.49441272268814e-08
+23 8.13358909113049e-08
+24 8.61557580833505e-08
+25 7.01447078199635e-08
+26 6.59055316987178e-08
+27 6.37062953501299e-08
+28 5.97100893173774e-08
+29 5.6468358877737e-08
+30 5.51147785188277e-08
+31 5.24744656615894e-08
+32 5.02308168393029e-08
+33 4.83166644471567e-08
+34 4.699176869849e-08
+35 4.2457749316327e-08
+36 4.13598115756031e-08
+37 4.08807352414442e-08
+38 4.11978255954182e-08
+39 3.93859487246573e-08
+40 3.88974434883949e-08
+41 3.59884246847741e-08
+42 3.36413208401609e-08
+43 3.36432641745432e-08
+44 1.03936358186729e-07
+45 3.14856549721299e-08
+46 3.02609599600601e-08
+47 3.06185050646945e-08
+48 2.95005460060338e-08
+49 2.77925717995231e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.00010137273784494
+1 1.08397798612714e-05
+2 2.67639416051679e-06
+3 1.3179205780034e-06
+4 1.17502042940032e-06
+5 6.53512870485429e-07
+6 4.66522664055447e-07
+7 3.67495260888973e-07
+8 3.64575811317991e-07
+9 3.27328336879873e-07
+10 3.22963217058714e-07
+11 1.98496351799804e-07
+12 2.05588435164827e-07
+13 1.87104632232149e-07
+14 1.98703972387193e-07
+15 1.36243329507124e-07
+16 1.20461251640336e-07
+17 1.44869815699167e-07
+18 1.21378477047074e-07
+19 9.20868643561334e-08
+20 9.76310730038676e-08
+21 8.89977087581428e-08
+22 9.07688999518541e-08
+23 7.41188657116254e-08
+24 8.65442331132726e-08
+25 6.3338667644075e-08
+26 7.22621038562465e-08
+27 5.75306060568437e-08
+28 5.35434843129678e-08
+29 6.6894926931127e-08
+30 5.84828967475914e-08
+31 5.17238412101051e-08
+32 5.63173117029692e-08
+33 5.06167445735173e-08
+34 4.73248320531638e-08
+35 4.43898180435554e-08
+36 4.520242313788e-08
+37 4.30777546966965e-08
+38 3.44225377091334e-08
+39 3.2959245999109e-08
+40 3.52322402363825e-08
+41 3.44388588757738e-08
+42 4.31969944258981e-08
+43 3.34476837338116e-08
+44 3.02572402688384e-08
+45 3.2440219399632e-08
+46 2.239625551681e-08
+47 3.20344319959531e-08
+48 2.88157373518061e-08
+49 2.46364120215503e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000123012316180393
+1 0.000124907019198872
+2 0.000123077246826142
+3 0.000123145655379631
+4 0.00012314596096985
+5 0.000119015887321439
+6 0.000121043318358716
+7 0.00012376147788018
+8 0.000122721117804758
+9 0.000124908299767412
+10 0.000122325494885445
+11 0.000121389064588584
+12 0.000120842989417724
+13 0.000125712409499101
+14 0.000125232312711887
+15 0.000124249258078635
+16 0.000119742027891334
+17 0.000122600642498583
+18 0.000122188284876756
+19 0.000122186582302675
+20 0.000124237485579215
+21 0.000125043603475206
+22 0.000118132375064306
+23 0.000121669436339289
+24 0.000122818339150399
+25 0.000125156569993123
+26 0.000121249686344527
+27 0.000123120829812251
+28 0.000119077769340947
+29 0.000120997472549789
+30 0.000122586192446761
+31 0.000126879414892755
+32 0.000123130434076302
+33 0.000125479564303532
+34 0.000121912322356366
+35 0.000120572934974916
+36 0.000120971315482166
+37 0.000124109545140527
+38 0.00012138020247221
+39 0.000121270495583303
+40 0.000118766321975272
+41 0.000121634620882105
+42 0.00011775636812672
+43 0.000124084501294419
+44 0.000124609141494147
+45 0.000120697608508635
+46 0.000123145000543445
+47 0.000123292658827268
+48 0.000126248414744623
+49 0.000122530560474843
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000117087634862401
+1 0.000105455052107573
+2 0.000117850584501866
+3 0.000115004906547256
+4 0.000115048540465068
+5 0.000154720415594056
+6 0.000136283255415037
+7 0.000108040709164925
+8 0.000120446020446252
+9 0.000103280173789244
+10 0.000125991820823401
+11 0.00013286383182276
+12 0.000139638548716903
+13 9.6928073617164e-05
+14 9.82446363195777e-05
+15 0.00010742691665655
+16 0.000148092294693924
+17 0.000122258250485174
+18 0.000126295766676776
+19 0.000126645070849918
+20 0.000106541316199582
+21 9.93631183519028e-05
+22 0.000164629120263271
+23 0.000134176734718494
+24 0.000117980140203144
+25 9.82697165454738e-05
+26 0.000133827794343233
+27 0.000115711358375847
+28 0.000154962806846015
+29 0.000137016366352327
+30 0.00012546191283036
+31 8.64121466293e-05
+32 0.000112553992948961
+33 9.50154426391236e-05
+34 0.00012843674630858
+35 0.000143149416544475
+36 0.000134357062052004
+37 0.00010931115684798
+38 0.000132221801322885
+39 0.000137011331389658
+40 0.000157527189003304
+41 0.00013108248822391
+42 0.00016640689864289
+43 0.000109152686491143
+44 0.000103542835859116
+45 0.000138187664560974
+46 0.000117042996862438
+47 0.000111868292151485
+48 8.75358018674888e-05
+49 0.000121095916256309
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006512244168244376, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006512244168244376, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..4f7d7cd3cbec4dafe1ddb0114f55f5da149a0a33
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006512244168244376, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006512244168244376, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006512244168244376, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..c2bdf2d0a84bb28fc93cccdc05353fbd6b6fa7ae
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006512244168244376, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.33986848879227e-06, ymax=0.000471149293231423,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000130748769151978
+1 1.30943935801042e-05
+2 1.10194196167868e-05
+3 8.94601689651608e-05
+4 0.000360933248884976
+5 5.13386803504545e-05
+6 3.21954175888095e-05
+7 2.30488003580831e-05
+8 1.83226238732459e-05
+9 1.53070886881324e-05
+10 1.31437145682867e-05
+11 1.1186586561962e-05
+12 1.034172692016e-05
+13 9.27857672650134e-06
+14 8.47230603540083e-06
+15 7.85648444434628e-06
+16 7.09853884472977e-06
+17 6.78711285218014e-06
+18 6.17056639384828e-06
+19 5.88695365877356e-06
+20 5.51561561223934e-06
+21 5.10796871822095e-06
+22 4.92018261866178e-06
+23 4.59389821116929e-06
+24 4.3694176383724e-06
+25 4.07215611630818e-06
+26 3.83541782866814e-06
+27 8.41587370814523e-06
+28 3.70418979400711e-06
+29 3.51715925717144e-06
+30 3.45645594279631e-06
+31 3.30803391079826e-06
+32 3.16459340865549e-06
+33 3.11311646328249e-06
+34 3.05566481983988e-06
+35 2.95522727356001e-06
+36 2.79156733995478e-06
+37 2.70620989795134e-06
+38 2.57093893196725e-06
+39 2.5276585802203e-06
+40 2.47733373726078e-06
+41 2.40170652432425e-06
+42 2.38273560171365e-06
+43 2.32298202718084e-06
+44 2.21903746933094e-06
+45 2.17852584682987e-06
+46 2.12952727451921e-06
+47 2.03663989850611e-06
+48 1.99869168682199e-06
+49 1.96572977984033e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000124396334285848
+1 1.34213141791406e-05
+2 5.26997609995306e-06
+3 7.21158585292869e-06
+4 0.000295506615657359
+5 5.73805882595479e-05
+6 2.95169684250141e-05
+7 2.16321695916122e-05
+8 1.75777149706846e-05
+9 1.44042596730287e-05
+10 1.43576035043225e-05
+11 1.47538930832525e-05
+12 1.03270476756734e-05
+13 9.84440521278884e-06
+14 8.94781715032877e-06
+15 7.36411038815277e-06
+16 7.96174299466657e-06
+17 5.57682415092131e-06
+18 7.15646046955953e-06
+19 5.24954884895124e-06
+20 5.12501037519542e-06
+21 5.79775087317103e-06
+22 4.58306112705031e-06
+23 4.96214443046483e-06
+24 5.05698653796571e-06
+25 5.50404183741193e-06
+26 5.83328028369579e-06
+27 4.15819977206411e-06
+28 3.86084593628766e-06
+29 4.0661393541086e-06
+30 3.17377498504356e-06
+31 3.32009403791744e-06
+32 3.84118857255089e-06
+33 3.01426166515739e-06
+34 2.37797848967602e-06
+35 2.30400905820716e-06
+36 2.63152082879969e-06
+37 2.58527552432497e-06
+38 3.00568194688822e-06
+39 2.62297248809773e-06
+40 2.42193596022844e-06
+41 2.43538829636236e-06
+42 1.89871229849814e-06
+43 2.40170061260869e-06
+44 2.11470955946425e-06
+45 1.96397445506591e-06
+46 1.74901617810974e-06
+47 2.07920447792276e-06
+48 2.08666074286157e-06
+49 1.76698529230634e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000128041487187147
+1 0.000132413217215799
+2 0.000131949971546419
+3 0.000130676358821802
+4 0.00012824751320295
+5 0.000127082181279548
+6 0.00013176460925024
+7 0.000131531021906994
+8 0.000130514454212971
+9 0.000132119806949049
+10 0.000130454543977976
+11 0.000131733308080584
+12 0.000131986962514929
+13 0.000131206776131876
+14 0.000130146931041963
+15 0.00012954484554939
+16 0.000131168708321638
+17 0.000132923407363705
+18 0.000129988853586838
+19 0.000129467720398679
+20 0.000131909415358678
+21 0.00013055645104032
+22 0.000129255786305293
+23 0.000128944418975152
+24 0.000131147011416033
+25 0.000128843443235382
+26 0.000133458481286652
+27 0.000129815234686248
+28 0.000130904183606617
+29 0.000130198051920161
+30 0.000127217514091171
+31 0.000128012325149029
+32 0.000129594933241606
+33 0.000133125780848786
+34 0.000127943261759356
+35 0.000127867984701879
+36 0.00012920297740493
+37 0.000129605890833773
+38 0.000128368454170413
+39 0.000130080035887659
+40 0.000132398563437164
+41 0.000126364742754959
+42 0.000129703999846242
+43 0.00013025505177211
+44 0.000131646811496466
+45 0.000128261934150942
+46 0.000133557448862121
+47 0.000134384798002429
+48 0.000130201675347053
+49 0.000131007123854943
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000148716717376374
+1 0.000108858686871827
+2 0.000113733483885881
+3 0.000126703074784018
+4 0.000146743856021203
+5 0.000157492162543349
+6 0.000115653783723246
+7 0.000115759787149727
+8 0.000126943283248693
+9 0.000113313195470255
+10 0.000128542757011019
+11 0.000114303700684104
+12 0.000113525333290454
+13 0.000123106059618294
+14 0.000130398999317549
+15 0.000135224210680462
+16 0.000118304524221458
+17 0.000107066021882929
+18 0.000130467713461258
+19 0.000137375231133774
+20 0.000114188289444428
+21 0.000124369966215454
+22 0.000139660594868474
+23 0.000139607509481721
+24 0.000120787786727306
+25 0.000145447833347134
+26 0.000104595725133549
+27 0.000135316906380467
+28 0.000122717072372325
+29 0.000130460583022796
+30 0.000159697839990258
+31 0.000149112063809298
+32 0.000134377492940985
+33 0.000104121631011367
+34 0.000150237494381145
+35 0.000150674488395452
+36 0.000138607152621262
+37 0.000134315676405095
+38 0.000146081089042127
+39 0.000129776177345775
+40 0.000108259147964418
+41 0.000163833945407532
+42 0.000134691159473732
+43 0.000129939086036757
+44 0.000115865317638963
+45 0.000146650709211826
+46 9.80121767497621e-05
+47 9.37121440074407e-05
+48 0.000128745406982489
+49 0.000120461547339801
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006513530773401262, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006513530773401262, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..e74a88a01e9386ed5a284f1bc04ea872f748741a
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006513530773401262, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006513530773401262, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006513530773401262, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..81ddfdb4741ac9ce7e00f5f4c57e46571ef61f83
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006513530773401262, Learning_Process.tex	
@@ -0,0 +1,265 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.27210131965792e-08, ymax=0.00403533293039976,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000142215751111507
+1 1.3847095942765e-05
+2 2.95933955385408e-06
+3 1.11060978724709e-06
+4 6.70596989493788e-07
+5 5.1061488193227e-07
+6 3.66700902532102e-07
+7 2.96798077670246e-07
+8 2.48391501145306e-07
+9 1.99798122935135e-07
+10 1.75489248022132e-07
+11 3.52632850990631e-05
+12 1.41902376071812e-07
+13 1.30626219174701e-07
+14 1.14336216938682e-07
+15 1.08958012390303e-07
+16 9.94154163436178e-08
+17 9.02691894566487e-08
+18 8.48907006911759e-08
+19 7.91318939263874e-08
+20 7.0889235814775e-08
+21 6.85491627905321e-08
+22 6.82894594206118e-08
+23 6.30244088029031e-08
+24 5.99520362243311e-08
+25 5.50034684465572e-08
+26 5.47347660528885e-08
+27 8.80178490092476e-08
+28 7.05293317082578e-08
+29 4.82643400800953e-08
+30 4.46365859829712e-08
+31 4.906203443511e-08
+32 4.35013589594746e-08
+33 4.18011545377794e-08
+34 3.81900662205226e-08
+35 3.72133257542373e-08
+36 3.54039606520473e-08
+37 3.61019090178161e-08
+38 4.01350384038324e-08
+39 3.16843085101937e-08
+40 2.95903586078339e-08
+41 2.88145596272216e-08
+42 2.88991088837065e-08
+43 2.73820912610745e-08
+44 2.71070206281365e-08
+45 2.58648498174807e-08
+46 2.47038567380287e-08
+47 2.39308164395879e-08
+48 2.401033150079e-08
+49 2.38972877042443e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000120368691568729
+1 1.86170727829449e-05
+2 1.81627217443747e-06
+3 1.25986150578683e-06
+4 5.88250259170309e-07
+5 3.64444986189483e-07
+6 4.25331563747022e-07
+7 2.5227140554307e-07
+8 2.08900274856205e-07
+9 2.58098566519038e-07
+10 2.09618846724879e-07
+11 1.25310407383949e-07
+12 1.21714293754849e-07
+13 1.25159559161148e-07
+14 1.16915423120645e-07
+15 1.04817061696849e-07
+16 8.30245880933944e-08
+17 7.979066651842e-08
+18 8.07116791179396e-08
+19 6.73382984928139e-08
+20 9.13381583700357e-08
+21 8.59848441336908e-08
+22 5.96960987309103e-08
+23 6.32664338695577e-08
+24 5.26603116668412e-08
+25 6.01132725819298e-08
+26 5.24075645103039e-08
+27 4.40430412140813e-08
+28 4.11373086706135e-08
+29 4.80378901102085e-08
+30 4.53188313542796e-08
+31 5.74613530091028e-08
+32 4.93654006561428e-08
+33 3.93799908238179e-08
+34 3.24227009684819e-08
+35 5.07539255067968e-08
+36 3.52583242602122e-08
+37 3.17452695242082e-08
+38 2.64592650012219e-08
+39 3.12834806948104e-08
+40 3.58501459629679e-08
+41 2.66249777780558e-08
+42 2.71831481768459e-08
+43 2.42687292484334e-08
+44 2.52165559544437e-08
+45 3.35706253906665e-08
+46 3.02111793359927e-08
+47 2.26247305334937e-08
+48 3.30617986321613e-08
+49 2.71141740171288e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000139896481414326
+1 0.000141930766403675
+2 0.00014147357433103
+3 0.000141731841722503
+4 0.000137906725285575
+5 0.000140684496727772
+6 0.000139463401865214
+7 0.000142319011501968
+8 0.000140693213324994
+9 0.000137872761115432
+10 0.000141920376336202
+11 0.000141776239615865
+12 0.000138951931148767
+13 0.000139265204779804
+14 0.000731836596969515
+15 0.000138011324452236
+16 0.000138058108859695
+17 0.000140890319016762
+18 0.000139762967592105
+19 0.000139757015858777
+20 0.000139799783937633
+21 0.000139412528369576
+22 0.000139855445013382
+23 0.000134772169985808
+24 0.000143228418892249
+25 0.000139149895403534
+26 0.000137051058118232
+27 0.000138963790959679
+28 0.000140594784170389
+29 0.000142650344059803
+30 0.000143595985719003
+31 0.000143961180583574
+32 0.000140781834488735
+33 0.000142197546665557
+34 0.000142000179039314
+35 0.000143445678986609
+36 0.000142354227136821
+37 0.000142061340739019
+38 0.000140575342811644
+39 0.000133647583425045
+40 0.000138098621391691
+41 0.000139183859573677
+42 0.000135899463202804
+43 0.000139024530653842
+44 0.000140740477945656
+45 0.000140210395329632
+46 0.000141774406074546
+47 0.000140850184834562
+48 0.000140656673465855
+49 0.000141869546496309
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.00226891203783453
+1 0.00012832332868129
+2 0.000132854038383812
+3 0.000153100496390834
+4 0.000163867938681506
+5 0.000143720593769103
+6 0.000152179854921997
+7 0.000124377285828814
+8 0.00014157134864945
+9 0.000167274658451788
+10 0.000129501830087975
+11 0.000128353029140271
+12 0.000158408147399314
+13 0.000151704007294029
+14 0.000121843469969463
+15 0.000165904988534749
+16 0.000172517335158773
+17 0.000137430208269507
+18 0.000148932289448567
+19 0.000146300226333551
+20 0.000144549921969883
+21 0.000160039548063651
+22 0.000153991670231335
+23 0.00018984914640896
+24 0.000137931201606989
+25 0.00015838815306779
+26 0.000176714878762141
+27 0.000153671528096311
+28 0.000140794232720509
+29 0.000118389980343636
+30 0.000121598328405526
+31 0.000113931972009595
+32 0.000138354589580558
+33 0.000128446423332207
+34 0.000124563186545856
+35 0.000115040624223184
+36 0.000126546598039567
+37 0.000131124499603175
+38 0.000145348589285277
+39 0.000199068905203603
+40 0.000161358359036967
+41 0.000155811590957455
+42 0.000184148389962502
+43 0.00015572615666315
+44 0.000138720191898756
+45 0.000144553589052521
+46 0.000126907296362333
+47 0.000194591426406987
+48 0.00013961321383249
+49 0.000134968606289476
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0065293802344952075, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0065293802344952075, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..bd09a3fa510760c9efe463e5b9850166c8081d49
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0065293802344952075, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0065293802344952075, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0065293802344952075, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..2b9af3b33a6d1c1afcf01daf8891259ce6d5a840
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0065293802344952075, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.24318501631819e-08, ymax=0.000293521346913281,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000142650751513429
+1 1.11303543235408e-05
+2 5.43978467248962e-06
+3 1.04189803096233e-06
+4 5.87342583457939e-07
+5 4.08295051101959e-07
+6 3.15014801799407e-07
+7 2.54506886676609e-07
+8 2.11404085348477e-07
+9 1.87010144259148e-07
+10 1.59723839487924e-07
+11 1.39304987101241e-07
+12 1.26450245829801e-07
+13 1.11911120370678e-07
+14 9.97745601694078e-08
+15 9.50722807147031e-08
+16 8.52706563136962e-08
+17 8.17840373201761e-08
+18 7.1868335282943e-08
+19 6.85680063838845e-08
+20 6.37416732729434e-08
+21 5.92354112427529e-08
+22 5.62686714999927e-08
+23 5.45270495422301e-08
+24 5.12913693739847e-08
+25 4.9041815941564e-08
+26 4.72963641584556e-08
+27 4.4557580736182e-08
+28 4.07961806558887e-08
+29 4.01723418974598e-08
+30 3.78685527380185e-08
+31 3.6553775117909e-08
+32 3.54977096606035e-08
+33 3.39003243254865e-08
+34 3.23257474121874e-08
+35 3.06560217211427e-08
+36 3.08039531660143e-08
+37 2.83997643180101e-08
+38 2.88570749518158e-08
+39 2.64655177772966e-08
+40 2.6634355165811e-08
+41 2.57204657572174e-08
+42 2.43883615524965e-08
+43 2.36223165472893e-08
+44 2.25522711616577e-08
+45 2.32626060636676e-08
+46 2.16793267782123e-08
+47 2.11379589387661e-08
+48 2.04070715881244e-08
+49 1.96477678571227e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000120710836199578
+1 8.35536320664687e-06
+2 6.70923554935143e-06
+3 8.97797690413427e-07
+4 5.42159966698819e-07
+5 4.17438428712558e-07
+6 3.08648594682381e-07
+7 2.75767092716706e-07
+8 1.98122393157973e-07
+9 1.66699450687702e-07
+10 1.64463571650231e-07
+11 1.35327908878935e-07
+12 1.16861450294437e-07
+13 9.65491366855531e-08
+14 1.10552541343623e-07
+15 1.09972305040174e-07
+16 1.10312910805987e-07
+17 6.07800743068765e-08
+18 7.52132081061063e-08
+19 8.06253268592627e-08
+20 6.97172168884208e-08
+21 6.70992150730854e-08
+22 7.49589048609778e-08
+23 6.69761064386876e-08
+24 5.72541516419278e-08
+25 4.80401922686724e-08
+26 3.98104482712824e-08
+27 3.95639823125293e-08
+28 4.9340069807613e-08
+29 3.77848259347502e-08
+30 4.07976195049287e-08
+31 3.58802445532547e-08
+32 3.41145316440361e-08
+33 3.27843281411333e-08
+34 3.31341034609522e-08
+35 3.4453467634421e-08
+36 3.04655252136854e-08
+37 3.07273673172404e-08
+38 2.61783608124233e-08
+39 2.91336590407809e-08
+40 2.57710279782941e-08
+41 2.27230909644049e-08
+42 2.70297650928342e-08
+43 2.36774546635843e-08
+44 2.54217820128133e-08
+45 2.1462140509243e-08
+46 2.30967582837138e-08
+47 1.99526919431037e-08
+48 2.13297166595794e-08
+49 1.97726830464262e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000139790048706345
+1 0.000135690745082684
+2 0.000145231446367688
+3 0.000140393734909594
+4 0.000137405484565534
+5 0.000140513613587245
+6 0.000142044402309693
+7 0.000144452671520412
+8 0.000142997087095864
+9 0.000138955481816083
+10 0.000141500757308677
+11 0.000136818009195849
+12 0.000141523312777281
+13 0.000142105724080466
+14 0.000139680079882964
+15 0.000140289557748474
+16 0.000140327450935729
+17 0.000139348936500028
+18 0.000141542652272619
+19 0.000142523713293485
+20 0.000137258568429388
+21 0.000141316020744853
+22 0.000138687508297153
+23 0.00013607312575914
+24 0.000142075296025723
+25 0.000142038566991687
+26 0.00013839550956618
+27 0.000138285889988765
+28 0.000139295938424766
+29 0.000139110896270722
+30 0.00014052442566026
+31 0.000140999691211618
+32 0.000143630182719789
+33 0.000139718264108524
+34 0.000141849959618412
+35 0.000140579213621095
+36 0.000138108225655742
+37 0.000139303927426226
+38 0.000136815418954939
+39 0.000142367265652865
+40 0.000141325581353158
+41 0.000137065871967934
+42 0.000142899487400427
+43 0.0001367036747979
+44 0.000140084768645465
+45 0.000142652323120274
+46 0.000138888281071559
+47 0.000142694523674436
+48 0.000143132798257284
+49 0.000143172539537773
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000145501719089225
+1 0.000185721524758264
+2 0.000100197110441513
+3 0.000143361277878284
+4 0.000169002058100887
+5 0.000143092751386575
+6 0.000137357856146991
+7 0.000104659986391198
+8 0.000119938282296062
+9 0.0001540952216601
+10 0.000131926572066732
+11 0.000174187807715498
+12 0.000132533954456449
+13 0.000129344087326899
+14 0.000151948173879646
+15 0.000142607663292438
+16 0.000142503704410046
+17 0.000152280554175377
+18 0.000130144326249138
+19 0.000124013051390648
+20 0.000169297971297055
+21 0.000134673333377577
+22 0.000159731294843368
+23 0.000179356633452699
+24 0.00012626958778128
+25 0.000127179300761782
+26 0.000158866590936668
+27 0.000160958006745204
+28 0.000154905239469372
+29 0.000153892659000121
+30 0.000140881733386777
+31 0.00013960046635475
+32 0.000116096998681314
+33 0.000147482103784569
+34 0.000129097679746337
+35 0.000140396965434775
+36 0.000162172131240368
+37 0.000163538381457329
+38 0.000176084809936583
+39 0.000124710917589255
+40 0.00013370496162679
+41 0.000172953761648387
+42 0.000121145349112339
+43 0.000175447246874683
+44 0.00014604241005145
+45 0.000124033525935374
+46 0.000156423979206011
+47 0.000121394907182548
+48 0.000116892617370468
+49 0.000116425100713968
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0065294009051861425, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0065294009051861425, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..a2fef09e7010e887b4d7f1b3eb8a04823e3f65ae
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0065294009051861425, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0065294009051861425, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0065294009051861425, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..1c39bca9672181625a169885abc2b92e97eb8f38
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0065294009051861425, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.79735971145473e-08, ymax=0.000254670049703816,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000148767270729877
+1 1.12804846139625e-05
+2 1.0648249372025e-05
+3 4.85341615785728e-06
+4 1.99330270334031e-06
+5 1.31733565922332e-06
+6 1.00488807674992e-06
+7 7.99076474322646e-07
+8 6.45966508727724e-07
+9 5.38053257059801e-07
+10 4.62018391544916e-07
+11 3.94657007518617e-07
+12 3.64551368647881e-07
+13 3.29427109591052e-07
+14 2.89250124296814e-07
+15 2.65299490820325e-07
+16 2.46483551791243e-07
+17 2.21458037685807e-07
+18 2.04575300699616e-07
+19 2.00503080804992e-07
+20 1.84726630436671e-07
+21 1.66959111425058e-07
+22 1.60435163820694e-07
+23 2.36474605230796e-07
+24 1.41537057629648e-07
+25 1.35342759222112e-07
+26 1.34050694100551e-07
+27 1.23748009173141e-07
+28 1.21661571483855e-07
+29 1.11517678647033e-07
+30 1.07954363670615e-07
+31 1.05424646790198e-07
+32 1.00248257695057e-07
+33 9.73189600017577e-08
+34 9.70501616848196e-08
+35 8.88436062496112e-08
+36 8.70778649186832e-08
+37 8.48220764737562e-08
+38 8.20787064981232e-08
+39 7.89070355722288e-08
+40 7.55115010520058e-08
+41 7.76888811060417e-08
+42 7.03843099358892e-08
+43 7.20787696195657e-08
+44 6.82571581478442e-08
+45 6.48158859917203e-08
+46 6.36316812574478e-08
+47 6.51282832109246e-08
+48 5.99751857066622e-08
+49 5.83413779509101e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000124499347293749
+1 1.04060864032363e-05
+2 1.35321388370357e-05
+3 4.97837982038618e-06
+4 2.27676878239436e-06
+5 1.43816896525095e-06
+6 8.72297562182212e-07
+7 7.01446140283224e-07
+8 5.56103202598024e-07
+9 4.99520126595598e-07
+10 4.92235471938329e-07
+11 4.4829522494183e-07
+12 2.98727258041254e-07
+13 2.70678441438577e-07
+14 2.64429189655857e-07
+15 2.37746462516952e-07
+16 2.26183828999638e-07
+17 2.61810129131845e-07
+18 2.27712803280156e-07
+19 1.67178455967587e-07
+20 1.53594726270967e-07
+21 1.7846052458026e-07
+22 1.44457573014733e-07
+23 1.25676820061926e-07
+24 1.43808293273651e-07
+25 1.58159522811729e-07
+26 1.00568136929269e-07
+27 1.29882479882326e-07
+28 1.26781927178854e-07
+29 1.26169297232082e-07
+30 1.02248705502461e-07
+31 1.07435766949493e-07
+32 9.24183396477929e-08
+33 9.36068929036082e-08
+34 9.78075505031484e-08
+35 9.71258415916054e-08
+36 9.15961209102534e-08
+37 8.49440269234947e-08
+38 9.56156682718756e-08
+39 8.78439365692429e-08
+40 7.89094372066756e-08
+41 8.53428474556495e-08
+42 7.74366384348468e-08
+43 7.44834949273354e-08
+44 6.04476468879511e-08
+45 7.48145581042081e-08
+46 6.7026405758952e-08
+47 5.70266713850742e-08
+48 5.95250533308445e-08
+49 5.66778517452349e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000148340113810264
+1 0.000145101366797462
+2 0.000145505226100795
+3 0.000144543228088878
+4 0.000145530255394988
+5 0.000148030172567815
+6 0.000146098260302097
+7 0.000143147059134208
+8 0.000148804421769455
+9 0.000146057122037746
+10 0.000146460573887452
+11 0.000146200312883593
+12 0.000144144156365655
+13 0.00014685996575281
+14 0.000145974510814995
+15 0.000147505357745104
+16 0.000145127443829551
+17 0.000146908540045843
+18 0.000146000747918151
+19 0.000147334256325848
+20 0.000147381550050341
+21 0.000148037011967972
+22 0.000147780010593124
+23 0.000146072547067888
+24 0.000144071673275903
+25 0.000145242331200279
+26 0.000147825892781839
+27 0.00014574671513401
+28 0.000144791687489487
+29 0.000146090154885314
+30 0.000144644669489935
+31 0.000147986749652773
+32 0.000144907331559807
+33 0.000145397687447257
+34 0.00014826281403657
+35 0.000142857432365417
+36 0.000142733697430231
+37 0.000144181336509064
+38 0.000145729223731905
+39 0.000145008190884255
+40 0.000145484445965849
+41 0.000147516402648762
+42 0.000144773453939706
+43 0.000147868879139423
+44 0.00014394563913811
+45 0.000147231665323488
+46 0.000144383739097975
+47 0.000145170968607999
+48 0.000147745187859982
+49 0.000144086690852419
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.00011965143494308
+1 0.000149754050653428
+2 0.000142853212310001
+3 0.000153732529724948
+4 0.000144592646392994
+5 0.000124382291687652
+6 0.000139336523716338
+7 0.000165803212439641
+8 0.000116005707241129
+9 0.00014018545334693
+10 0.000135271795443259
+11 0.000139218827825971
+12 0.000156518071889877
+13 0.000134269939735532
+14 0.000141488038934767
+15 0.000128041530842893
+16 0.000147859056596644
+17 0.000132299493998289
+18 0.000142175340442918
+19 0.000129482199554332
+20 0.000129357562400401
+21 0.000122467128676362
+22 0.000126274462672882
+23 0.000139974785270169
+24 0.0001591716427356
+25 0.00014777565957047
+26 0.00012409249029588
+27 0.0001424564543413
+28 0.000151715285028331
+29 0.000141899436130188
+30 0.000151733387610875
+31 0.000122546553029679
+32 0.000150516076246276
+33 0.000146188787766732
+34 0.000118416908662766
+35 0.000168364917044528
+36 0.000170626401086338
+37 0.000158602822921239
+38 0.000142338380101137
+39 0.000149841740494594
+40 0.00015004217857495
+41 0.000128797808429226
+42 0.000150434367242269
+43 0.000124130383483134
+44 0.000157068236148916
+45 0.000129755440866575
+46 0.000154763809405267
+47 0.000148816077853553
+48 0.000124282130855136
+49 0.000158132897922769
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006537456330843927, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006537456330843927, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..d39e2f736a27128df973a97f22c3578dc34e3e5b
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006537456330843927, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006537456330843927, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006537456330843927, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..e6a6d266137f58088a28283056928d0035da6fc8
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006537456330843927, Learning_Process.tex	
@@ -0,0 +1,265 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=8.84318234633244e-09, ymax=0.000303071467663644,
+ymode=log,
+ytick style={color=black},
+ytick={1e-10,1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-10}}\),
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000141187236295082
+1 9.3926937552169e-06
+2 2.0715708615171e-06
+3 1.12075304059545e-06
+4 5.86095040944201e-07
+5 3.76855552985944e-07
+6 3.04115644667036e-07
+7 2.34941794019505e-07
+8 1.88016144875292e-07
+9 1.66050256211747e-07
+10 1.39430795798035e-07
+11 1.24087165431774e-07
+12 1.19825699584908e-07
+13 9.55997165874578e-08
+14 8.82353816678005e-08
+15 8.02184771941938e-08
+16 7.51812478938518e-08
+17 6.73659101835256e-08
+18 6.66004922322827e-08
+19 5.9877244495965e-08
+20 5.42055076380166e-08
+21 5.11526607738233e-08
+22 4.73350674212725e-08
+23 4.77168740076195e-08
+24 4.11160527846732e-08
+25 4.08248261862809e-08
+26 3.81894800227656e-08
+27 3.61649696856148e-08
+28 3.64288297305393e-08
+29 3.45627384490399e-08
+30 3.2763946222758e-08
+31 3.07955652090186e-08
+32 3.01584357487172e-08
+33 2.84725061305835e-08
+34 2.74916196474351e-08
+35 2.81186736117434e-08
+36 2.65283546241335e-08
+37 2.54117633602391e-08
+38 2.48426967885962e-08
+39 2.35446702134823e-08
+40 2.36096262540286e-08
+41 2.19492708453117e-08
+42 2.10881072604252e-08
+43 1.99344309947946e-08
+44 1.98340988077916e-08
+45 1.9760419078807e-08
+46 1.90865545590668e-08
+47 1.83289259325647e-08
+48 1.84031225813897e-08
+49 1.80132495586349e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000121685865451582
+1 8.22572383185616e-06
+2 5.20848197993473e-06
+3 8.38001881220407e-07
+4 5.51644859569933e-07
+5 4.38473080066615e-07
+6 3.56774620513534e-07
+7 2.13573187579641e-07
+8 2.44852856212674e-07
+9 1.45064433354491e-07
+10 1.55929384959563e-07
+11 1.19158585221157e-07
+12 1.02579384986257e-07
+13 1.066456363219e-07
+14 8.89601707854126e-08
+15 8.26787953656094e-08
+16 7.76850868078327e-08
+17 6.68520812041606e-08
+18 5.45288934006294e-08
+19 5.08849389291299e-08
+20 5.03078361191456e-08
+21 5.21843119827281e-08
+22 4.93267542367448e-08
+23 4.08918587879725e-08
+24 5.08110780117477e-08
+25 3.57131710870817e-08
+26 4.28702797705682e-08
+27 3.9240138249852e-08
+28 3.74615254372657e-08
+29 3.33513874295477e-08
+30 3.90681940132254e-08
+31 2.86103993829556e-08
+32 2.88270260995205e-08
+33 3.24089413084039e-08
+34 3.02049052436359e-08
+35 2.59648924583189e-08
+36 2.11673469863172e-08
+37 2.14503668161115e-08
+38 2.19969855663749e-08
+39 2.18529265794132e-08
+40 1.83549104804115e-08
+41 2.10445261217274e-08
+42 1.82271939763723e-08
+43 2.00660181803869e-08
+44 1.74461778357227e-08
+45 1.72167684553415e-08
+46 1.92300841916904e-08
+47 2.27655068130161e-08
+48 1.58941659833545e-08
+49 1.42148426363065e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000138777802931145
+1 0.000140847347211093
+2 0.000139803189085796
+3 0.00013930257409811
+4 0.000139291820232756
+5 0.000139614960062318
+6 0.000141636890475638
+7 0.00013901962665841
+8 0.00013911331188865
+9 0.000136036949697882
+10 0.00014114698569756
+11 0.000138497620355338
+12 0.000138507864903659
+13 0.000141466924105771
+14 0.000140320567879826
+15 0.000140189193189144
+16 0.000137451745104045
+17 0.000139312542160042
+18 0.000140544027090073
+19 0.000138861796585843
+20 0.00013945197861176
+21 0.000135964844957925
+22 0.000140400894451886
+23 0.000139041760121472
+24 0.000137409690069035
+25 0.000137541865115054
+26 0.00014168860798236
+27 0.00013957750343252
+28 0.000140448624733835
+29 0.000139051888254471
+30 0.000139635623781942
+31 0.000138922827318311
+32 0.000140692049171776
+33 0.000139636773383245
+34 0.000140162243042141
+35 0.000136059519718401
+36 0.000139319279696792
+37 0.000137444934807718
+38 0.000139177267556079
+39 0.000133677269332111
+40 0.000138836447149515
+41 0.000136530856252648
+42 0.000139145835419185
+43 0.000141173324664123
+44 0.000139458890771493
+45 0.000140466610901058
+46 0.000140323420055211
+47 0.000137242488563061
+48 0.000139709169161506
+49 0.000137376788188703
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000142429184052162
+1 0.000124427941045724
+2 0.000137423878186382
+3 0.000139231880893931
+4 0.000138651885208674
+5 0.000136232076329179
+6 0.000116952338430565
+7 0.000142148230224848
+8 0.000139908719575033
+9 0.00016675227379892
+10 0.000121939883683808
+11 0.000145533398608677
+12 0.000145455705933273
+13 0.000119034717499744
+14 0.000131542692543007
+15 0.000130535452626646
+16 0.000155209956574254
+17 0.000138274685014039
+18 0.000126214887131937
+19 0.000140769509016536
+20 0.000134668312966824
+21 0.000174757893546484
+22 0.00012950312520843
+23 0.000139798852615058
+24 0.000155006811837666
+25 0.000153150002006441
+26 0.000116179428005125
+27 0.000135543858050369
+28 0.000129025560454465
+29 0.000140277246828191
+30 0.000133772380650043
+31 0.000141701806569472
+32 0.000125336271594279
+33 0.00013566599227488
+34 0.00012856163084507
+35 0.00016814777336549
+36 0.000139342766487971
+37 0.0001554872142151
+38 0.000137996190460399
+39 0.000188543504918925
+40 0.000141927608638071
+41 0.000160204799612984
+42 0.000141461889143102
+43 0.000121498705993872
+44 0.000136709801154211
+45 0.000163735152455047
+46 0.00012819365656469
+47 0.000158964350703172
+48 0.000135433889226988
+49 0.000153926535858773
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006566745754302571, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006566745754302571, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..9fc58243b4234f6d80a85dbff049cb31c85abbd3
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006566745754302571, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006566745754302571, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006566745754302571, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..f822f8251d2ef8baeff17e89812e154fcd510008
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006566745754302571, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.03719291271698e-08, ymax=0.000263061806065153,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000145178360980935
+1 1.08790918602608e-05
+2 3.0299881927931e-06
+3 1.62061121500301e-06
+4 1.06114714526484e-06
+5 7.99884674052009e-07
+6 6.42986719867622e-07
+7 5.18724903031398e-07
+8 4.41709175902361e-07
+9 3.61505357204805e-07
+10 3.11843876943385e-07
+11 2.91690383846799e-07
+12 2.55398674653406e-07
+13 2.26197840902387e-07
+14 2.02299943907747e-07
+15 1.88886573937452e-07
+16 1.63923260743104e-07
+17 1.61975819423787e-07
+18 1.42794348789721e-07
+19 1.30613230453491e-07
+20 1.32780513695252e-07
+21 1.19092625538997e-07
+22 1.08799682152494e-07
+23 1.02627446096903e-07
+24 9.6190447607114e-08
+25 9.09939572579788e-08
+26 9.02388919143959e-08
+27 8.29523969514412e-08
+28 7.77051809564e-08
+29 7.80231275143706e-08
+30 6.92214499053989e-08
+31 6.96791317977841e-08
+32 6.68646791268657e-08
+33 6.51463807344044e-08
+34 6.08127947998582e-08
+35 5.9541992669665e-08
+36 5.67788163152727e-08
+37 5.66683233671483e-08
+38 5.3724559023749e-08
+39 5.23017966713724e-08
+40 4.88048570446153e-08
+41 4.64504132935417e-08
+42 4.55426913958945e-08
+43 4.41041976273482e-08
+44 4.39170761978858e-08
+45 4.14976533136269e-08
+46 4.06149354148511e-08
+47 3.93157328915095e-08
+48 3.93790777764025e-08
+49 3.61647387592257e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000135311100166291
+1 8.34352067613509e-06
+2 2.81537472801574e-06
+3 1.4200026043909e-06
+4 1.12822056053119e-06
+5 7.6046671892982e-07
+6 5.84045380946918e-07
+7 4.84231577502214e-07
+8 3.5919683227803e-07
+9 4.26775812911728e-07
+10 3.88723805144764e-07
+11 2.44566905394095e-07
+12 2.18726157186211e-07
+13 2.07401697593923e-07
+14 2.05833359245844e-07
+15 1.78625086277862e-07
+16 2.26674771397484e-07
+17 1.55902625920135e-07
+18 1.69575045561032e-07
+19 1.53702018224067e-07
+20 1.28410789557165e-07
+21 1.06585410719617e-07
+22 1.25345025026036e-07
+23 1.02102255539194e-07
+24 1.07786434000445e-07
+25 1.100392168496e-07
+26 7.3314730286711e-08
+27 8.47890646582528e-08
+28 9.6700880192202e-08
+29 8.88466686888023e-08
+30 8.47830321504262e-08
+31 5.87044333144604e-08
+32 6.30466132633956e-08
+33 5.44794964696393e-08
+34 6.49648583816997e-08
+35 5.99287375280255e-08
+36 5.9040065281124e-08
+37 4.76536179405684e-08
+38 4.49162129712022e-08
+39 4.1183415788737e-08
+40 4.49898855947595e-08
+41 4.48055637036759e-08
+42 4.39098357674084e-08
+43 4.47859456187416e-08
+44 4.03971469609132e-08
+45 4.84799116406975e-08
+46 3.79830282781768e-08
+47 4.06565092703204e-08
+48 3.13254240325023e-08
+49 4.92634306681339e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000144941615872085
+1 0.000142101082019508
+2 0.00014627625932917
+3 0.000143461889820173
+4 0.000145872618304566
+5 0.000147488623042591
+6 0.000142873759614304
+7 0.000141933662234806
+8 0.000142839300679043
+9 0.000144029851071537
+10 0.000144695179187693
+11 0.000146149497595616
+12 0.000144911697134376
+13 0.000144421443110332
+14 0.000140689458930865
+15 0.000144936071592383
+16 0.000143359167850576
+17 0.000146325561217964
+18 0.000145704121678136
+19 0.000145475729368627
+20 0.000145101177622564
+21 0.000146139514981769
+22 0.000142710967338644
+23 0.000146198173752055
+24 0.000148264443851076
+25 0.000144062010804191
+26 0.000144823919981718
+27 0.000144735153298825
+28 0.000142689794301987
+29 0.000146844860864803
+30 0.000144155186717398
+31 0.000144043893669732
+32 0.000147877392009832
+33 0.00014576681132894
+34 0.000141939919558354
+35 0.000141714495839551
+36 0.000145987549331039
+37 0.000144203237141483
+38 0.000145208352478221
+39 0.00014553741493728
+40 0.000146431309985928
+41 0.00014285409997683
+42 0.000143147961352952
+43 0.000145085374242626
+44 0.000143783167004585
+45 0.000145811223774217
+46 0.000143822268000804
+47 0.000145035344758071
+48 0.000145284808240831
+49 0.000141862838063389
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000135194539325312
+1 0.000162904951139353
+2 0.000124724101624452
+3 0.000149204628542066
+4 0.000128454674268141
+5 0.000114038724859711
+6 0.000157355665578507
+7 0.000163480479386635
+8 0.00015403596626129
+9 0.000144452074891888
+10 0.000141304903081618
+11 0.000124539583339356
+12 0.000138786228490062
+13 0.000144190897117369
+14 0.000171077539562248
+15 0.000134572459501214
+16 0.000150222796946764
+17 0.000127502513350919
+18 0.000132193541503511
+19 0.000133255016407929
+20 0.000135234411573038
+21 0.000131681561470032
+22 0.000157086557010189
+23 0.000124682672321796
+24 0.000107052226667292
+25 0.00014488011947833
+26 0.000136625181767158
+27 0.000137228678795509
+28 0.000157101399963722
+29 0.000119948832434602
+30 0.000144801146234386
+31 0.000144746067235246
+32 0.000116119561425876
+33 0.000129928565002047
+34 0.000166190351592377
+35 0.000166296609677374
+36 0.000127454273751937
+37 0.000142758697620593
+38 0.000133237292175181
+39 0.000133325040224008
+40 0.000140896983793937
+41 0.000154933644807898
+42 0.000152842942043208
+43 0.00013658580428455
+44 0.000145995363709517
+45 0.00013271217176225
+46 0.000143609155202284
+47 0.000135902475449257
+48 0.000133464025566354
+49 0.000164662022143602
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00657262385030836, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00657262385030836, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..a6931d6084a2899c14de85194acfeccef6aa4e2e
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00657262385030836, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00657262385030836, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00657262385030836, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..4eccbbc7c42106f04418844f2e4caa3e9e41b494
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00657262385030836, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.01821474698283e-06, ymax=0.000653590488647138,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00013155146734789
+1 1.74627348314971e-05
+2 0.000352882023435086
+3 0.000502573326230049
+4 6.16296747466549e-05
+5 3.53965515387245e-05
+6 2.64941299974453e-05
+7 2.39894579863176e-05
+8 2.11326714634197e-05
+9 1.8672750229598e-05
+10 1.65018082043389e-05
+11 1.52047259689425e-05
+12 1.4472748262051e-05
+13 1.28086603581323e-05
+14 1.21179455163656e-05
+15 1.15225448098499e-05
+16 1.05245153463329e-05
+17 9.8345362857799e-06
+18 1.27799476103974e-05
+19 8.88186968950322e-06
+20 8.32401565276086e-06
+21 7.7242966654012e-06
+22 7.75448916101595e-06
+23 7.30445481167408e-06
+24 7.12634619048913e-06
+25 6.93567699272535e-06
+26 6.50662650514278e-06
+27 6.21894469077233e-06
+28 6.19002548774006e-06
+29 5.74430532651604e-06
+30 5.63571893508197e-06
+31 5.48172101844102e-06
+32 5.20569756190525e-06
+33 5.12795986651327e-06
+34 4.90092224936234e-06
+35 4.74738408229314e-06
+36 4.68121788799181e-06
+37 4.44165880253422e-06
+38 4.50327479484258e-06
+39 4.33219429396559e-06
+40 4.1528360270604e-06
+41 3.95205915992847e-06
+42 3.93858181269024e-06
+43 3.75821127818199e-06
+44 3.66921722161351e-06
+45 3.59628643309406e-06
+46 3.41935765391099e-06
+47 3.53355403603928e-06
+48 3.43033434546669e-06
+49 3.2626305710437e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000118512485641986
+1 1.57715621753596e-05
+2 5.85752895858604e-05
+3 3.92332112824079e-05
+4 5.76410384383053e-05
+5 3.6977853596909e-05
+6 4.19241951021831e-05
+7 2.42852220253553e-05
+8 1.7937398297363e-05
+9 1.75977656908799e-05
+10 1.99968380911741e-05
+11 1.58567945618415e-05
+12 1.04264636320295e-05
+13 1.43653396662557e-05
+14 1.2921993402415e-05
+15 9.57282645686064e-06
+16 1.02963176686899e-05
+17 1.07915157059324e-05
+18 7.30286501493538e-06
+19 9.34484978643013e-06
+20 9.6438534455956e-06
+21 1.12475599962636e-05
+22 7.23618222764344e-06
+23 8.12015059636906e-06
+24 6.14650934949168e-06
+25 5.47928402738762e-06
+26 6.9571224230458e-06
+27 6.25507846052642e-06
+28 4.51993128081085e-06
+29 6.33161789664882e-06
+30 5.61555543754366e-06
+31 4.94202413392486e-06
+32 5.15804003953235e-06
+33 4.18694389736629e-06
+34 4.75639581054565e-06
+35 4.5806946218363e-06
+36 4.11685368817416e-06
+37 4.76719606012921e-06
+38 3.18878096550179e-06
+39 3.2557945814915e-06
+40 4.26344513471122e-06
+41 4.36878917753347e-06
+42 3.41176451001957e-06
+43 4.18286526837619e-06
+44 4.01737224819954e-06
+45 3.98577321902849e-06
+46 4.46824242317234e-06
+47 2.62466369349568e-06
+48 3.12981660499645e-06
+49 3.52838947037526e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000130704487673938
+1 0.00013295428652782
+2 0.000127863197121769
+3 0.000130810833070427
+4 0.000126240702229552
+5 0.000133435387397185
+6 0.000130367916426621
+7 0.00013022223720327
+8 0.000129205611301586
+9 0.000131735709146596
+10 0.00012861359573435
+11 0.000126833183458075
+12 0.000127521663671359
+13 0.000130214335513301
+14 0.000128971034428105
+15 0.000130284926854074
+16 0.000129286680021323
+17 0.000131331093143672
+18 0.00012891276855953
+19 0.00012954584963154
+20 0.000129068459500559
+21 0.000132651650346816
+22 0.000128176587168127
+23 0.000130053260363638
+24 0.000130770466057584
+25 0.000129774416564032
+26 0.000132396628032438
+27 0.000130982967675664
+28 0.000130624219309539
+29 0.00013052455324214
+30 0.000130348213133402
+31 0.000132179164211266
+32 0.000126110127894208
+33 0.000132172295707278
+34 0.000133710796944797
+35 0.000129390464280732
+36 0.000130774176795967
+37 0.000130260843434371
+38 0.000128640691400506
+39 0.000130909422296099
+40 0.000128918705740944
+41 0.000130477186758071
+42 0.000131042121211067
+43 0.000132238244987093
+44 0.000132039611344226
+45 0.000131721419165842
+46 0.000132790970383212
+47 0.000127983337733895
+48 0.000132672779727727
+49 0.000128576954011805
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.0001413524732925
+1 0.00010681643470889
+2 0.000143592507811263
+3 0.000125214617582969
+4 0.000170615705428645
+5 0.000102215191873256
+6 0.00012510757369455
+7 0.000135679903905839
+8 0.000139562165713869
+9 0.000127332750707865
+10 0.000152447406435385
+11 0.000161605916218832
+12 0.000154372493852861
+13 0.000137415117933415
+14 0.000143180805025622
+15 0.000128066691104323
+16 0.000138786272145808
+17 0.000118447969725821
+18 0.000140053758514114
+19 0.000141538985189982
+20 0.000141437238198705
+21 0.000108608372102026
+22 0.000155868241563439
+23 0.000133273686515167
+24 0.000126612751046196
+25 0.000133582405396737
+26 0.000111714005470276
+27 0.00013004794891458
+28 0.00012393451470416
+29 0.000125449645565823
+30 0.000130790314869955
+31 0.000119981872558128
+32 0.000171409294125624
+33 0.000113931506348308
+34 9.68506428762339e-05
+35 0.000138160059577785
+36 0.000124983067507856
+37 0.000133151086629368
+38 0.00014775873569306
+39 0.000118171112262644
+40 0.000138822360895574
+41 0.000130122745758854
+42 0.000132651286548935
+43 0.000114671282062773
+44 0.000111599118099548
+45 0.000113832174974959
+46 0.000103430873423349
+47 0.000153160464833491
+48 0.000107881220174022
+49 0.000149356841575354
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006605240862311031, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006605240862311031, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..3965c72391e08127d2f0ef81a89315dd8235e9a4
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006605240862311031, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006605240862311031, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006605240862311031, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..4051c74c980e1637ada4080f964c641549643641
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006605240862311031, Learning_Process.tex	
@@ -0,0 +1,266 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.03,0.97)},
+  anchor=north west,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.01762613301426e-08, ymax=0.0231899894507007,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000146892314660363
+1 8.32889963930938e-06
+2 2.06847084882611e-06
+3 1.0483551022844e-06
+4 6.85467796301964e-07
+5 4.81118718198559e-07
+6 3.75633703697531e-07
+7 2.96504765628924e-07
+8 2.43117312948016e-07
+9 2.06297499971697e-07
+10 1.72828251265855e-07
+11 1.52928834040722e-07
+12 1.37891788654088e-07
+13 1.25058946309764e-07
+14 1.12454394241013e-07
+15 1.02632881748832e-07
+16 9.24388601220016e-08
+17 8.55280930522895e-08
+18 7.90726559785071e-08
+19 1.59118906140066e-06
+20 6.76308289371264e-08
+21 6.2958598334717e-08
+22 6.20251654481763e-08
+23 5.61427455636476e-08
+24 5.10189366309532e-08
+25 4.88419580335631e-08
+26 4.63323281962857e-08
+27 4.50858301803692e-08
+28 4.31060698247165e-08
+29 3.91329102455984e-08
+30 3.72519224356438e-08
+31 3.67209622709197e-08
+32 3.53061473390426e-08
+33 3.36429231140301e-08
+34 3.4801406201268e-08
+35 3.11441041844773e-08
+36 3.14612371710155e-08
+37 2.92599153794981e-08
+38 2.82054681832733e-08
+39 2.6755525794897e-08
+40 2.5802652459106e-08
+41 2.51523495364836e-08
+42 2.7233451049824e-08
+43 2.39428779025275e-08
+44 2.32994761262262e-08
+45 2.18974047783149e-08
+46 2.15621902555085e-08
+47 2.18134577067985e-08
+48 2.06965573568141e-08
+49 1.99432790282117e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000114506889076438
+1 7.39240203984082e-06
+2 1.44234468280047e-06
+3 1.19255867048196e-06
+4 5.50391462184052e-07
+5 4.67669991621733e-07
+6 3.19630743206289e-07
+7 2.78572770184837e-07
+8 1.99612983919906e-07
+9 1.98000549289645e-07
+10 1.79322100279933e-07
+11 1.74560113919142e-07
+12 1.24610650686918e-07
+13 1.31961002125536e-07
+14 1.02991862149793e-07
+15 9.49198621924552e-08
+16 9.41601712156626e-08
+17 8.20816481450493e-08
+18 8.8414914500845e-08
+19 7.34280334313553e-08
+20 6.9737389196689e-08
+21 6.30918393085267e-08
+22 6.17745783415558e-08
+23 5.45041665134249e-08
+24 6.24929086256998e-08
+25 6.21649078880182e-08
+26 5.01357320104034e-08
+27 3.96322192841581e-08
+28 4.67839633699896e-08
+29 4.34747065014562e-08
+30 4.27264019720042e-08
+31 4.08112228456048e-08
+32 4.13619716255198e-08
+33 3.5028207889809e-08
+34 2.956731748327e-08
+35 3.25251612309785e-08
+36 3.03247240651672e-08
+37 2.52503244979607e-08
+38 2.40338415835595e-08
+39 2.91392012741198e-08
+40 3.22492965665333e-08
+41 2.30316725691182e-08
+42 2.48915608125344e-08
+43 2.73948188578288e-08
+44 2.0262014288619e-08
+45 2.02041157137955e-08
+46 1.97958964776035e-08
+47 2.15058992836248e-08
+48 2.15717061990972e-08
+49 2.01326884052833e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000147431390359998
+1 0.000145243509905413
+2 0.000140909643960185
+3 0.000141710028401576
+4 0.000144096178701147
+5 0.000143117300467566
+6 0.00014685645874124
+7 0.000144903111504391
+8 0.000146274862345308
+9 0.000145417885505594
+10 0.000139528710860759
+11 0.000146650796523318
+12 0.000144291276228614
+13 0.000141503682243638
+14 0.000141594558954239
+15 0.000143221215694211
+16 0.000144252713653259
+17 0.000144096760777757
+18 0.000143457917147316
+19 0.000146759310155176
+20 0.000141308890306391
+21 0.000144555189763196
+22 0.000143514334922656
+23 0.00014376628678292
+24 0.000140885211294517
+25 0.000142684788443148
+26 0.000143112119985744
+27 0.000145410464028828
+28 0.000143022058182396
+29 0.000144153396831825
+30 0.00014380196807906
+31 0.000143510711495765
+32 0.000141213997267187
+33 0.000143289071274921
+34 0.000143818251672201
+35 0.0119210258126259
+36 0.000144969715620391
+37 0.000139560710522346
+38 0.000143712852150202
+39 0.000141952885314822
+40 0.000143605560879223
+41 0.000144120887853205
+42 0.000147470156662166
+43 0.000147278915392235
+44 0.000145791287650354
+45 0.000146443155244924
+46 0.000145670157507993
+47 0.000143229903187603
+48 0.000143901575938798
+49 0.000142580538522452
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000117230752948672
+1 0.000129505555378273
+2 0.000169467544765212
+3 0.00015961131430231
+4 0.000143480719998479
+5 0.00014802253281232
+6 0.000112046196591109
+7 0.000127540231915191
+8 0.000129972628201358
+9 0.000125563368783332
+10 0.000167506819707341
+11 0.000113359492388554
+12 0.000133923487737775
+13 0.00016059992776718
+14 0.000160495357704349
+15 0.000144207486300729
+16 0.000135465510538779
+17 0.00013573735486716
+18 0.000136727263452485
+19 0.000113952162791975
+20 0.000161742631462403
+21 0.000144270175951533
+22 0.000142527977004647
+23 0.000138056304422207
+24 0.000163924982189201
+25 0.000139573254273273
+26 0.000146788806887344
+27 0.000125677062897012
+28 0.000146509526530281
+29 0.000135617097839713
+30 0.000141743759741075
+31 0.000139162133564241
+32 0.000162406548042782
+33 0.000147776678204536
+34 0.000141344367875718
+35 0.000119214251753874
+36 0.000126975821331143
+37 0.000178946749656461
+38 0.000137313734740019
+39 0.000156318201334216
+40 0.000145783880725503
+41 0.000138225892442279
+42 0.000104971346445382
+43 0.000108077590994071
+44 0.00011990044004051
+45 0.000119601783808321
+46 0.000129013089463115
+47 0.000146946185850538
+48 0.000151324886246584
+49 0.000151787520735525
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006617957162958723, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006617957162958723, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..99778f0e818610850ac01de8dca590b7501eef82
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006617957162958723, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006617957162958723, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006617957162958723, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..2098556d137f21ae75190b59d51d502a5702c8d0
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006617957162958723, Learning_Process.tex	
@@ -0,0 +1,256 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.06302251151886e-06, ymax=0.00155241848718712,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000158702954649925
+1 2.27639866352547e-05
+2 5.81836757191923e-05
+3 3.28607602568809e-05
+4 0.00111472932621837
+5 6.37400808045641e-05
+6 5.67108472750988e-05
+7 2.41721081692958e-05
+8 1.74662854988128e-05
+9 1.48606932270923e-05
+10 1.26548193293274e-05
+11 1.08060257844045e-05
+12 9.56914664129727e-06
+13 8.41518885863479e-06
+14 7.61302590035484e-06
+15 6.98956591804745e-06
+16 6.45829777567997e-06
+17 5.66422386327758e-06
+18 5.45009743291303e-06
+19 5.04962508784956e-06
+20 5.04722993355244e-06
+21 4.42448163084919e-06
+22 4.12622466683388e-06
+23 3.93203345083748e-06
+24 3.74993283003278e-06
+25 3.54198800778249e-06
+26 3.26312124343531e-06
+27 3.22432947541529e-06
+28 3.00734086522425e-06
+29 2.88076284959971e-06
+30 2.82323003375495e-06
+31 2.69690235654707e-06
+32 2.54931160270644e-06
+33 2.43994850279705e-06
+34 2.38836901189643e-06
+35 2.46147601501434e-06
+36 2.19594403461087e-06
+37 2.11225733437459e-06
+38 2.07996458811976e-06
+39 1.98555630959163e-06
+40 1.90223192930716e-06
+41 1.84916586931649e-06
+42 1.80227493729035e-06
+43 1.76047717559413e-06
+44 1.72267698417272e-06
+45 1.67439111464773e-06
+46 1.58854663823149e-06
+47 1.56918645188853e-06
+48 1.50531627696182e-06
+49 1.52192797031603e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000168784739798866
+1 2.65721319010481e-05
+2 4.15533395425882e-06
+3 1.70126022567274e-05
+4 0.000836658757179976
+5 4.34902649431024e-05
+6 4.80177222925704e-05
+7 2.3232210878632e-05
+8 2.32262136705685e-05
+9 1.36420439957874e-05
+10 1.13577743832138e-05
+11 1.13022470031865e-05
+12 1.13511005110922e-05
+13 9.45468764257384e-06
+14 7.93306571722496e-06
+15 6.83036705595441e-06
+16 5.53867175767664e-06
+17 7.10819313098909e-06
+18 4.84432666780776e-06
+19 4.87406941829249e-06
+20 5.13735449203523e-06
+21 4.51808136858745e-06
+22 4.10613210988231e-06
+23 3.67895927411155e-06
+24 3.23692302117706e-06
+25 3.31601700054307e-06
+26 4.0214586078946e-06
+27 3.00733404401399e-06
+28 3.28058604281978e-06
+29 2.9556561003119e-06
+30 2.47199091063521e-06
+31 2.24165887630079e-06
+32 2.30010914492595e-06
+33 2.44430816565e-06
+34 1.9955675725214e-06
+35 2.01673674382619e-06
+36 2.01565921997826e-06
+37 2.43888598561171e-06
+38 1.81544567112724e-06
+39 2.01698321689037e-06
+40 2.16281796383555e-06
+41 2.03606123250211e-06
+42 1.88990804872446e-06
+43 1.85310273081996e-06
+44 1.89452964605152e-06
+45 1.55800194079347e-06
+46 1.99696728486742e-06
+47 1.90415983070125e-06
+48 1.83518329777144e-06
+49 1.48040942349326e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000159001181600615
+1 0.000160017239977606
+2 0.000161062431288883
+3 0.000160350216901861
+4 0.000163553238962777
+5 0.000163063741638325
+6 0.000158813636517152
+7 0.00016051871352829
+8 0.000158675698912703
+9 0.000160129944561049
+10 0.000161082163685933
+11 0.000159699076903053
+12 0.000160671377670951
+13 0.000162393174832687
+14 0.000157548740389757
+15 0.000162393771461211
+16 0.000162460346473381
+17 0.000157381655299105
+18 0.00015981616161298
+19 0.000163052522111684
+20 0.000161236355779693
+21 0.000156595517182723
+22 0.000161805568495765
+23 0.000157070622663014
+24 0.000160472714924254
+25 0.000163554010214284
+26 0.000158870301675051
+27 0.000162560405442491
+28 0.000158345690579154
+29 0.000160243012942374
+30 0.000158877679496072
+31 0.000157351882080548
+32 0.000161293384735473
+33 0.000160500683705322
+34 0.00015837189857848
+35 0.000162905314937234
+36 0.000156850161147304
+37 0.000159559131134301
+38 0.000158458045916632
+39 0.000158205511979759
+40 0.000158768714754842
+41 0.000159079892910086
+42 0.000159575385623612
+43 0.000157098460476846
+44 0.000157656046212651
+45 0.000155672270921059
+46 0.000162811920745298
+47 0.000161248361109756
+48 0.00016151306044776
+49 0.000160279421834275
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000172502026543953
+1 0.000156868467456661
+2 0.000146798935020342
+3 0.000150824664160609
+4 0.000122223500511609
+5 0.000128209052491002
+6 0.000167353631695732
+7 0.000150151303387247
+8 0.000169423714396544
+9 0.000156846290337853
+10 0.000149059094837867
+11 0.00016203205450438
+12 0.000153212837176397
+13 0.000133622350404039
+14 0.000179269962245598
+15 0.000134616057039239
+16 0.000134483052534051
+17 0.000179395065060817
+18 0.000158610389917158
+19 0.00012823095312342
+20 0.000146374339237809
+21 0.000189726401004009
+22 0.000143987344927154
+23 0.000181663694093004
+24 0.000150440173456445
+25 0.000123351463116705
+26 0.000164424578542821
+27 0.000133577254018746
+28 0.000171295992913656
+29 0.000152070409967564
+30 0.000165709338034503
+31 0.000180138449650258
+32 0.000141814103699289
+33 0.0001498182391515
+34 0.000169338934938423
+35 0.000131187072838657
+36 0.000184017073479481
+37 0.0001580147218192
+38 0.000169981722137891
+39 0.000173578548128717
+40 0.000165152086992748
+41 0.000167765567312017
+42 0.000157979942741804
+43 0.000181736759259365
+44 0.000175868277437985
+45 0.000194636435480788
+46 0.000128484549350105
+47 0.0001439781190129
+48 0.000142500342917629
+49 0.00015710545994807
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006636451755599011, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006636451755599011, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..d86717b940dd276391a95443d06ab60794646838
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006636451755599011, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006636451755599011, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006636451755599011, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..96b085a3b601b84033665203ecc451a10c9d9edc
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006636451755599011, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.71675072630434e-08, ymax=0.000277505144658354,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000142825010698289
+1 1.07547475636238e-05
+2 2.27460463975149e-06
+3 1.2235082067491e-06
+4 8.09424534509162e-07
+5 6.03445471369923e-07
+6 4.5372613044492e-07
+7 3.77623138092531e-07
+8 3.10124448787974e-07
+9 2.63584325921329e-07
+10 2.2945951627662e-07
+11 1.96690564280289e-07
+12 1.78609042222888e-07
+13 1.60772373192231e-07
+14 1.45693064723673e-07
+15 1.32289216026038e-07
+16 1.22246760270173e-07
+17 1.12059339585358e-07
+18 1.07159316087291e-07
+19 9.77960468162564e-08
+20 8.6494665652026e-08
+21 8.15877285731403e-08
+22 7.87225999943075e-08
+23 7.36262535383503e-08
+24 6.92979611471856e-08
+25 6.62463293110704e-08
+26 6.249589290519e-08
+27 5.98204863422325e-08
+28 6.04963830141969e-08
+29 5.35896269582281e-08
+30 5.4323322729033e-08
+31 5.05678201534465e-08
+32 4.82112447741656e-08
+33 4.44489280937432e-08
+34 4.30972306730837e-08
+35 4.11978966496918e-08
+36 4.10372642534185e-08
+37 3.74887392240453e-08
+38 3.70536952232214e-08
+39 3.68418611174093e-08
+40 3.47131177136362e-08
+41 3.36533254596816e-08
+42 3.39555654704782e-08
+43 3.10796650637712e-08
+44 3.08903729262511e-08
+45 3.012829807858e-08
+46 2.97984783514949e-08
+47 2.90564816651795e-08
+48 2.70030025006918e-08
+49 2.66689301753331e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000132282308186404
+1 1.013029304886e-05
+2 2.3009160941001e-06
+3 1.17493163998006e-06
+4 7.72492228406918e-07
+5 5.20755463639944e-07
+6 5.36564243702742e-07
+7 3.36935528366666e-07
+8 3.02252544770454e-07
+9 2.7700036753231e-07
+10 2.35118477576179e-07
+11 2.35060539921506e-07
+12 1.67290494346162e-07
+13 1.40772883128193e-07
+14 1.3395970199781e-07
+15 1.28567691604076e-07
+16 1.05614184064962e-07
+17 1.15881064743917e-07
+18 9.6336748356407e-08
+19 8.00664068378865e-08
+20 1.06584550962907e-07
+21 8.89504505607874e-08
+22 7.88166829579495e-08
+23 6.74313014314976e-08
+24 6.78472957815757e-08
+25 7.79522153493417e-08
+26 6.79059652952674e-08
+27 5.28818091538596e-08
+28 4.6597961045336e-08
+29 7.09729803816117e-08
+30 4.48082779769265e-08
+31 5.1480991913877e-08
+32 4.59235671712577e-08
+33 4.52599380196261e-08
+34 4.09688958313836e-08
+35 4.0912990328934e-08
+36 1.74301860056403e-07
+37 4.23281178996149e-08
+38 4.70881680314506e-08
+39 3.1814501255667e-08
+40 3.56547467106338e-08
+41 2.89400414743568e-08
+42 3.02820879483079e-08
+43 3.61428043049727e-08
+44 3.48197133348549e-08
+45 3.09263690212447e-08
+46 2.84924688287447e-08
+47 2.83050507476901e-08
+48 3.11203542935345e-08
+49 2.87999721848564e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000143149969517253
+1 0.000144196805194952
+2 0.000143652272527106
+3 0.000139679526910186
+4 0.000141050084494054
+5 0.000146602760651149
+6 0.000146233651321381
+7 0.000139892203151248
+8 0.000143680270412005
+9 0.000144460223964415
+10 0.000143282886710949
+11 0.000138858464197256
+12 0.000143377692438662
+13 0.000137758528580889
+14 0.000139674011734314
+15 0.000141865166369826
+16 0.000139745941851288
+17 0.000139030002173968
+18 0.000142935372423381
+19 0.000142817880259827
+20 0.000144305624417029
+21 0.000139480456709862
+22 0.000139560725074261
+23 0.000143096200190485
+24 0.000143233221024275
+25 0.000142694945679978
+26 0.000145194688229822
+27 0.0001432717544958
+28 0.000144361227285117
+29 0.000140034317155369
+30 0.000140306117828004
+31 0.000142404504003935
+32 0.000141418160637841
+33 0.00014092780475039
+34 0.000141063879709691
+35 0.000140582982567139
+36 0.000140320902573876
+37 0.000140592557727359
+38 0.000144230245496146
+39 0.00013844296336174
+40 0.000146572885569185
+41 0.000143547265906818
+42 0.000140202158945613
+43 0.000139996642246842
+44 0.000141163618536666
+45 0.000143277866300195
+46 0.000137763447128236
+47 0.00014331380953081
+48 0.000145582074765116
+49 0.000144234363688156
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000128746309201233
+1 0.00011991489736829
+2 0.000124078840599395
+3 0.000161217569257133
+4 0.000147293714690022
+5 9.97868119156919e-05
+6 0.000146747974213213
+7 0.000159469389473088
+8 0.000125450314953923
+9 0.000117761679575779
+10 0.000130807980895042
+11 0.000171147752553225
+12 0.000130034502944909
+13 0.000176231536897831
+14 0.00016217892698478
+15 0.000139104478876106
+16 0.000161148913321085
+17 0.00016766409680713
+18 0.000126176266348921
+19 0.000132730507175438
+20 0.00012070860248059
+21 0.000159686940605752
+22 0.000164561832207255
+23 0.000129459265735932
+24 0.00013228967145551
+25 0.000134135523694567
+26 0.000111783643660601
+27 0.000129481151816435
+28 0.000118252086394932
+29 0.000157816815772094
+30 0.00015744860866107
+31 0.000139119569212198
+32 0.000145567537401803
+33 0.000149896251969039
+34 0.000148555191117339
+35 0.000152834472828545
+36 0.000156310183228925
+37 0.000152396780322306
+38 0.000120538592454977
+39 0.000173138454556465
+40 9.67124287853949e-05
+41 0.000127849212731235
+42 0.000153878369019367
+43 0.000158500261022709
+44 0.000149438754306175
+45 0.000129577703773975
+46 0.000178637521457858
+47 0.000125819729873911
+48 0.000108460197225213
+49 0.000117837509606034
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006665319711999979, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006665319711999979, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..d60bea0a442171c2ab4a7033178e28ef54fafbf8
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006665319711999979, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006665319711999979, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006665319711999979, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..5873b00d07a0dbac761001921ff9ec320b7b15bb
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006665319711999979, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=6.99277161125786e-08, ymax=0.000255599006157629,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000136508897412568
+1 1.49424540722976e-05
+2 3.77140313503332e-05
+3 1.36357575684087e-05
+4 9.07298908714438e-06
+5 4.76767718282645e-06
+6 2.88070486931247e-06
+7 2.02401201931934e-06
+8 1.51642700529919e-06
+9 1.27570820041001e-06
+10 1.07283369743527e-06
+11 9.06262584976503e-07
+12 7.54094344301848e-07
+13 7.15205089818483e-07
+14 6.27181805157306e-07
+15 5.63227274597011e-07
+16 5.08590574099799e-07
+17 4.75505089525541e-07
+18 4.25746208065902e-07
+19 4.01373370095826e-07
+20 3.66002183227465e-07
+21 3.47286629676091e-07
+22 3.19262881021132e-07
+23 3.00146751897046e-07
+24 2.862838641704e-07
+25 2.67824333377575e-07
+26 2.52535187428293e-07
+27 2.37926158774826e-07
+28 2.35730041708848e-07
+29 2.22451205900143e-07
+30 2.0658725929934e-07
+31 2.02665944470937e-07
+32 1.90633528518447e-07
+33 1.8199826001819e-07
+34 1.81910181140665e-07
+35 1.72461710690186e-07
+36 1.69096054492002e-07
+37 1.61891421157634e-07
+38 1.55578490534936e-07
+39 1.46102308917762e-07
+40 1.43583363865218e-07
+41 1.40369650125649e-07
+42 1.38446623054733e-07
+43 1.30021817312809e-07
+44 1.25899106251381e-07
+45 1.23457795098147e-07
+46 1.21300118394174e-07
+47 1.19050312719082e-07
+48 1.1553210299553e-07
+49 1.11131264191044e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000133615889353678
+1 1.74377328221453e-05
+2 2.80763633782044e-05
+3 5.94979064771906e-06
+4 7.65172990213614e-06
+5 3.93728169001406e-06
+6 2.52291533797688e-06
+7 1.61118475716648e-06
+8 1.65268829732668e-06
+9 1.11786937395664e-06
+10 8.79815331700229e-07
+11 8.56770668633544e-07
+12 1.12392956452823e-06
+13 6.30262206868792e-07
+14 5.92785966091469e-07
+15 5.87742022162274e-07
+16 5.12627707394131e-07
+17 4.18068310636954e-07
+18 4.46417516286601e-07
+19 3.86428382626036e-07
+20 4.05163518735208e-07
+21 3.49378780128973e-07
+22 3.32298071725745e-07
+23 3.21322374929878e-07
+24 2.76679116950618e-07
+25 2.79852685025617e-07
+26 2.6802169372786e-07
+27 2.7116874434796e-07
+28 2.17621987985694e-07
+29 2.22707356556384e-07
+30 2.4271841425616e-07
+31 1.84468930797266e-07
+32 2.34075614002904e-07
+33 2.29599848466933e-07
+34 1.48574713421112e-07
+35 1.77846786186819e-07
+36 1.27040422626123e-07
+37 1.36880188961186e-07
+38 1.44568161886127e-07
+39 1.79031943048358e-07
+40 1.60857979381035e-07
+41 1.32252765183694e-07
+42 1.31264783931329e-07
+43 1.43386984063909e-07
+44 1.45878289004031e-07
+45 1.24319285532692e-07
+46 1.18220462752561e-07
+47 1.01531263396737e-07
+48 1.17558322187961e-07
+49 1.09338806453252e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000137972616357729
+1 0.000134396366775036
+2 0.000135901296744123
+3 0.000135462571051903
+4 0.000134581656311639
+5 0.000132613378809765
+6 0.000135119174956344
+7 0.000135948444949463
+8 0.000137160561280325
+9 0.000138063172926195
+10 0.000132038752781227
+11 0.000133647787151858
+12 0.000135619833599776
+13 0.000135375667014159
+14 0.000137362119858153
+15 0.00013574946206063
+16 0.000136027112603188
+17 0.000138868024805561
+18 0.000136931674205698
+19 0.00013768819917459
+20 0.000136526723508723
+21 0.000136843053041957
+22 0.000136702496092767
+23 0.000135153633891605
+24 0.000136744070914574
+25 0.000134770569275133
+26 0.000139111216412857
+27 0.000136005081003532
+28 0.000139382624183781
+29 0.00013640038378071
+30 0.000134934060042724
+31 0.000138674135087058
+32 0.000132897417643107
+33 0.000135122361825779
+34 0.000135892114485614
+35 0.000136574730277061
+36 0.000136769551318139
+37 0.000134974776301533
+38 0.000132159751956351
+39 0.000135790411150083
+40 0.000137478156830184
+41 0.000133967521833256
+42 0.00013619136007037
+43 0.000135878726723604
+44 0.000137072231154889
+45 0.000134762274683453
+46 0.000137546623591334
+47 0.00013701016723644
+48 0.000136094371555373
+49 0.000139044990646653
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000124197205877863
+1 0.000155170288053341
+2 0.000140037780511193
+3 0.000144603196531534
+4 0.000154855471919291
+5 0.000169014077982865
+6 0.000148641382111236
+7 0.000140128497150727
+8 0.000126581100630574
+9 0.0001212997813127
+10 0.000176038927747868
+11 0.00016050755220931
+12 0.000143981873407029
+13 0.000142551536555402
+14 0.000127504987176508
+15 0.00014202187594492
+16 0.000140812611789443
+17 0.000114987858978566
+18 0.000131312277517281
+19 0.000124957412481308
+20 0.000136383881908841
+21 0.000139078445499763
+22 0.000135938913444988
+23 0.000148251812788658
+24 0.000132147790282033
+25 0.000152177279233001
+26 0.000112601926957723
+27 0.000142373770358972
+28 0.000107480671431404
+29 0.000136778020532802
+30 0.000149886662256904
+31 0.000119329524750356
+32 0.000169135484611616
+33 0.000145476122270338
+34 0.000139891737489961
+35 0.00013393878180068
+36 0.000133016757899895
+37 0.000147809711052105
+38 0.000174746848642826
+39 0.000138051211251877
+40 0.000127633364172652
+41 0.000156998212332837
+42 0.000137419134262018
+43 0.000141808879561722
+44 0.000130224114400335
+45 0.000151683299918659
+46 0.000126486818771809
+47 0.000130269312649034
+48 0.000138855713885278
+49 0.000120948709081858
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006665335854596013, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006665335854596013, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..942bc1efb9f4ba5b53c33c60024cea831559e6dd
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006665335854596013, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006665335854596013, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006665335854596013, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..357bf1809901a6c2f64a0c5d23d2d4137d46e228
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006665335854596013, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.94666870424619e-06, ymax=0.000831132413378838,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000141251031891443
+1 1.14507092803251e-05
+2 5.98571432419703e-06
+3 6.51286836728104e-06
+4 0.000408486695960164
+5 0.000631113653071225
+6 0.000111308465420734
+7 6.75292976666242e-05
+8 5.45481998415198e-05
+9 3.6741479561897e-05
+10 2.91441738227149e-05
+11 2.3885633709142e-05
+12 2.2109370547696e-05
+13 1.94142285181442e-05
+14 1.7696922441246e-05
+15 1.61133939400315e-05
+16 1.52081956912298e-05
+17 1.37942906803801e-05
+18 1.28531482914696e-05
+19 1.20504710139357e-05
+20 1.15305228973739e-05
+21 1.1108450962638e-05
+22 1.03291213235934e-05
+23 1.00502602435881e-05
+24 9.21906666917494e-06
+25 8.73824956215685e-06
+26 8.35951323097106e-06
+27 8.27681196824415e-06
+28 7.86418604548089e-06
+29 7.63889420341002e-06
+30 7.34876994101796e-06
+31 6.9699722189398e-06
+32 6.84385076965555e-06
+33 6.18355397818959e-06
+34 6.3731349655427e-06
+35 6.12913299846696e-06
+36 5.87803879170679e-06
+37 5.71967939322349e-06
+38 5.6230624068121e-06
+39 5.46964611203293e-06
+40 5.22998516316875e-06
+41 5.06971355207497e-06
+42 5.1313872972969e-06
+43 4.86044154968113e-06
+44 4.61679019281291e-06
+45 4.61172658106079e-06
+46 4.6911150093365e-06
+47 4.50696825282648e-06
+48 4.3431773519842e-06
+49 4.07929019274889e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000134685556986369
+1 1.07618152469513e-05
+2 2.73483215096348e-06
+3 6.93815809427178e-06
+4 2.56362613981764e-06
+5 0.000329208996845409
+6 6.06943285674788e-05
+7 4.62178722955287e-05
+8 5.31562727701385e-05
+9 3.14350472763181e-05
+10 2.77299404842779e-05
+11 3.13506498059724e-05
+12 1.92880015674746e-05
+13 1.954470644705e-05
+14 1.63594577315962e-05
+15 1.6298501577694e-05
+16 1.16728015200351e-05
+17 1.44568011819501e-05
+18 1.49834086187184e-05
+19 1.34549545691698e-05
+20 1.08591793832602e-05
+21 9.43647410167614e-06
+22 9.66197239904432e-06
+23 7.85868815000867e-06
+24 1.04864184322651e-05
+25 1.08189278762438e-05
+26 1.00244606073829e-05
+27 7.72013208916178e-06
+28 7.87933640822303e-06
+29 7.41065878173686e-06
+30 6.34949856248568e-06
+31 7.2588127295603e-06
+32 6.0500005929498e-06
+33 9.4942142823129e-06
+34 5.54386178919231e-06
+35 5.71713235331117e-06
+36 6.06474304731819e-06
+37 5.80271171202185e-06
+38 4.91522541778977e-06
+39 5.09825940753217e-06
+40 5.46694536751602e-06
+41 5.58669853489846e-06
+42 3.64274160347122e-06
+43 4.68575990453246e-06
+44 5.38729818799766e-06
+45 4.44520037490292e-06
+46 4.92351637149113e-06
+47 3.28033820551354e-06
+48 4.09749191021547e-06
+49 5.11900407218491e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00013467954704538
+1 0.000138035364216194
+2 0.00013801216846332
+3 0.000141182623337954
+4 0.000140161268063821
+5 0.000141412048833445
+6 0.00013683237193618
+7 0.000152972061187029
+8 0.000137298688059673
+9 0.00013778218999505
+10 0.000140766656841151
+11 0.000138492425321601
+12 0.000142639430123381
+13 0.000138832256197929
+14 0.000138901363243349
+15 0.000141848737257533
+16 0.000138856543344446
+17 0.000137041788548231
+18 0.000139500800287351
+19 0.00014310963160824
+20 0.000141367068863474
+21 0.000138694376801141
+22 0.00014217164425645
+23 0.000140053249197081
+24 0.000140462769195437
+25 0.000138282688567415
+26 0.000142462260555476
+27 0.000138279152452014
+28 0.000142083896207623
+29 0.000139563155244105
+30 0.000138937088195235
+31 0.000139190626214258
+32 0.000141798955155537
+33 0.000139776224386878
+34 0.000138969538966194
+35 0.000142351389513351
+36 0.000141778349643573
+37 0.000133722001919523
+38 0.000138688817969523
+39 0.000142828415846452
+40 0.000140624979394488
+41 0.000140187534270808
+42 0.000137738374178298
+43 0.00014126516180113
+44 0.000140062329592183
+45 0.000139592768391594
+46 0.0001406697119819
+47 0.000141172407893464
+48 0.000137389186420478
+49 0.000141133117722347
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000188308797078207
+1 0.000157350194058381
+2 0.000157311689690687
+3 0.000125263439258561
+4 0.000136615039082244
+5 0.00012950821837876
+6 0.000169225706486031
+7 0.000162970973178744
+8 0.000167289399541914
+9 0.000157532500452362
+10 0.000135059075546451
+11 0.000154490757267922
+12 0.000136267160996795
+13 0.000149737796164118
+14 0.000149724422954023
+15 0.000123294201330282
+16 0.0001504630636191
+17 0.000168966944329441
+18 0.000140449075843208
+19 0.000113455418613739
+20 0.000129440144519322
+21 0.000149661558680236
+22 0.000118589603516739
+23 0.000135871421662159
+24 0.000133325214846991
+25 0.000155168178025633
+26 0.000117499628686346
+27 0.000151240194099955
+28 0.000139109979500063
+29 0.000145499885547906
+30 0.000155518282554112
+31 0.000151359752635472
+32 0.000123698482639156
+33 0.000141464508487843
+34 0.000151136220665649
+35 0.000116785755380988
+36 0.000125429840409197
+37 0.000194745356566273
+38 0.000150528314406984
+39 0.000111622037366033
+40 0.00014674841077067
+41 0.00014084653230384
+42 0.000159381146659143
+43 0.000128066065371968
+44 0.000137907132739201
+45 0.000141818338306621
+46 0.000129674983327277
+47 0.000127930761664174
+48 0.00015751738101244
+49 0.000132064407807775
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006671526670449442, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006671526670449442, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..ed8c49a3aed350f58eec7d592dadd7c85eafcd41
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006671526670449442, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006671526670449442, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006671526670449442, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..fa5940185af4694aaf91f3a8cbfb2a497141f8ff
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006671526670449442, Learning_Process.tex	
@@ -0,0 +1,259 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.31606292959025e-08, ymax=70617764979.7689,
+ymode=log,
+ytick style={color=black},
+ytick={1e-11,1e-08,1e-05,0.01,10,10000,10000000,10000000000,10000000000000,1e+16},
+yticklabels={
+  \(\displaystyle {10^{-11}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{1}}\),
+  \(\displaystyle {10^{4}}\),
+  \(\displaystyle {10^{7}}\),
+  \(\displaystyle {10^{10}}\),
+  \(\displaystyle {10^{13}}\),
+  \(\displaystyle {10^{16}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000139256080728956
+1 8.26443101686891e-06
+2 2.95427889795974e-06
+3 1.66444874594163e-06
+4 1.09412064830394e-06
+5 8.05423610472644e-07
+6 5.79521724830556e-07
+7 4.91568414417998e-07
+8 4.1239462689191e-07
+9 3.44287087727935e-07
+10 3.08836348494879e-07
+11 2.6226797444906e-07
+12 2.32694603141681e-07
+13 2.03564866296801e-07
+14 1.823697459713e-07
+15 1.64942974834048e-07
+16 1.48586451587107e-07
+17 1.33752834585721e-07
+18 1.27992478837768e-07
+19 1.2263758719655e-07
+20 1.07338706811788e-07
+21 1.02338162832893e-07
+22 9.34595760782031e-08
+23 1.00168168544769
+24 0.827378332614899
+25 0.846476435661316
+26 0.881365835666656
+27 0.868786990642548
+28 0.856569766998291
+29 0.86366605758667
+30 0.834275007247925
+31 0.837021589279175
+32 0.822321593761444
+33 0.837904870510101
+34 0.832193970680237
+35 0.822802603244781
+36 0.807344257831573
+37 0.809926688671112
+38 0.815818548202515
+39 0.795667231082916
+40 0.807583272457123
+41 0.800492703914642
+42 0.784745216369629
+43 0.782949328422546
+44 0.772211909294128
+45 0.776506900787354
+46 0.789199352264404
+47 0.781891226768494
+48 0.793180704116821
+49 0.79158079624176
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000153878281707875
+1 9.27909877646016e-06
+2 2.41346288021305e-06
+3 1.79630512775475e-06
+4 1.08314816316124e-06
+5 6.01873125560815e-07
+6 6.30832801107317e-07
+7 4.27723080065334e-07
+8 3.56252087385656e-07
+9 3.24864828371574e-07
+10 3.82165211476604e-07
+11 2.11229789215395e-07
+12 1.84706053119044e-07
+13 1.89515944271079e-07
+14 1.58251708626267e-07
+15 1.53797060420402e-07
+16 1.44325312589899e-07
+17 1.67196674283332e-07
+18 1.07631286994092e-07
+19 1.15152275270702e-07
+20 1.11915596789913e-07
+21 1.0114091963942e-07
+22 9.63073247817192e-08
+23 9944130560
+24 1.07879722118378
+25 3769844.75
+26 2921758.25
+27 47383.79296875
+28 46.9345016479492
+29 116.232688903809
+30 206785.421875
+31 224.937606811523
+32 180247.390625
+33 4.52479887008667
+34 9.46140766143799
+35 203424.421875
+36 170700.6875
+37 28.8563060760498
+38 609.671691894531
+39 375615.84375
+40 7.35909509658813
+41 2.74880313873291
+42 1.44150638580322
+43 675.714294433594
+44 228958.796875
+45 7.07931518554688
+46 9041.015625
+47 7212.06103515625
+48 1.18405330181122
+49 0.890177726745605
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000143464538268745
+1 0.000140722084324807
+2 0.000144896694109775
+3 0.000142906894325279
+4 0.000140920703415759
+5 0.000139760188176297
+6 0.000135701731778681
+7 0.000140872129122727
+8 0.000140233387355693
+9 0.000140774383908138
+10 0.000140160947921686
+11 0.000139755706186406
+12 0.000139453142764978
+13 0.000136934482725337
+14 0.000138954535941593
+15 0.000143313518492505
+16 0.00014162142178975
+17 0.000141863099997863
+18 0.000137322291266173
+19 0.000140232630656101
+20 0.000143256271257997
+21 0.000145056241308339
+22 0.000139841198688373
+23 0.000140902164275758
+24 0.0001394761929987
+25 0.00013916875468567
+26 0.000141056967549957
+27 0.000168985716300085
+28 0.000141096097650006
+29 0.000138586561661214
+30 0.000143946628668346
+31 0.000144397010444663
+32 0.000142745018820278
+33 0.00014077391824685
+34 0.000141096199513413
+35 0.000143220735481009
+36 0.00014294269203674
+37 0.000138261457323097
+38 0.000140344520332292
+39 0.000143904282595031
+40 0.000133317545987666
+41 0.000138578223413788
+42 0.000139480456709862
+43 0.000138206291012466
+44 0.00013877464516554
+45 0.000141695141792297
+46 0.000140726217068732
+47 0.000142524688271806
+48 0.000143915487569757
+49 0.000138612027512863
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000116925919428468
+1 0.000144188787089661
+2 0.000105585393612273
+3 0.000119579271995462
+4 0.000140488729812205
+5 0.000147877828567289
+6 0.000184396878466941
+7 0.000134188390802592
+8 0.000143100929562934
+9 0.000140246891533025
+10 0.000144320336403325
+11 0.000149050538311712
+12 0.000155702684423886
+13 0.000176536865183152
+14 0.000160388721269555
+15 0.000114306516479701
+16 0.000136590388137847
+17 0.000129340231069364
+18 0.000171714928001165
+19 0.000143007768201642
+20 0.000118537922389805
+21 0.000102747522760183
+22 0.000146708902320825
+23 0.00013854997814633
+24 0.000150181134813465
+25 0.000155301167978905
+26 0.000134082845761441
+27 0.000158078575623222
+28 0.00013854393910151
+29 0.000161382209626026
+30 0.000115193426609039
+31 0.000107578984170686
+32 0.00012366239388939
+33 0.000141733311465941
+34 0.000137434632051736
+35 0.000118293566629291
+36 0.000124155994853936
+37 0.000162744443514384
+38 0.000141562384669669
+39 0.000127916340716183
+40 0.000207914970815182
+41 0.000157523943926208
+42 0.000152148058987223
+43 0.000628152803983539
+44 0.000153372981003486
+45 0.000132524393848144
+46 0.000143397497595288
+47 0.00012793431233149
+48 0.000185296783456579
+49 0.000159469243953936
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006681802632854089, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006681802632854089, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..78e496d6b4fc438f4d43a226b09d6b22c0be3c95
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006681802632854089, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006681802632854089, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006681802632854089, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..9123faa65230eae4f659fd9bc311d2935171a60a
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006681802632854089, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.42297987584176e-06, ymax=0.000535083697636746,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000133979337988421
+1 1.56803416757612e-05
+2 2.95507343253121e-05
+3 0.000408663763664663
+4 0.000180137052666396
+5 7.01794851920567e-05
+6 4.33072054875083e-05
+7 3.16184268740471e-05
+8 2.56847597484011e-05
+9 2.00843551283469e-05
+10 1.8349655874772e-05
+11 1.59109658852685e-05
+12 1.39188878165442e-05
+13 1.24259968288243e-05
+14 1.11178278530133e-05
+15 1.0060620297736e-05
+16 9.18933255888987e-06
+17 8.52890116220806e-06
+18 7.85473184805596e-06
+19 7.60228658691631e-06
+20 6.71554334985558e-06
+21 6.41936412648647e-06
+22 6.11509631198714e-06
+23 5.73749321119976e-06
+24 5.34018545295112e-06
+25 5.06786000187276e-06
+26 4.7016333155625e-06
+27 4.58774502476444e-06
+28 4.33787135989405e-06
+29 4.10243001169874e-06
+30 4.0316649574379e-06
+31 3.85236853617243e-06
+32 3.65831533599703e-06
+33 3.54403118763003e-06
+34 3.40380302077392e-06
+35 3.23616723107989e-06
+36 3.12264637614135e-06
+37 2.99982957585598e-06
+38 2.93047082777775e-06
+39 2.79155756288674e-06
+40 2.68274993686646e-06
+41 2.53837288255454e-06
+42 2.64636696556408e-06
+43 2.48032347371918e-06
+44 2.42320743382152e-06
+45 2.35538414017356e-06
+46 2.33453920372995e-06
+47 2.18941136154172e-06
+48 2.17070578401035e-06
+49 2.10679536394309e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000211653910810128
+1 6.59257566439919e-05
+2 4.60033379567903e-06
+3 9.36558426474221e-05
+4 0.000178295813384466
+5 5.56178856641054e-05
+6 4.7531499149045e-05
+7 3.53756367985625e-05
+8 2.13326111406786e-05
+9 2.75601632893085e-05
+10 1.55642665049527e-05
+11 1.33237208501669e-05
+12 1.30605758386082e-05
+13 1.16032842925051e-05
+14 1.11923027361627e-05
+15 1.07775695141754e-05
+16 1.04747732621036e-05
+17 8.9378254415351e-06
+18 8.48944364406634e-06
+19 6.0646207202808e-06
+20 8.19603155832738e-06
+21 6.73732938594185e-06
+22 5.16972841069219e-06
+23 4.98866802445264e-06
+24 5.51365246792557e-06
+25 4.98932013215381e-06
+26 5.77075206820155e-06
+27 4.74760054203216e-06
+28 4.60670707980171e-06
+29 4.64649838249898e-06
+30 4.27362238042406e-06
+31 3.54881854036648e-06
+32 3.47802279065945e-06
+33 3.92333413401502e-06
+34 3.26565964314796e-06
+35 3.5642319744511e-06
+36 3.2110508527694e-06
+37 3.22217533721414e-06
+38 2.69440874944848e-06
+39 2.9225566322566e-06
+40 3.28850160258298e-06
+41 3.43335773322906e-06
+42 1.92761376638373e-06
+43 2.60209412772383e-06
+44 2.28296426030283e-06
+45 2.25731105274463e-06
+46 1.86317799943936e-06
+47 2.49019308284915e-06
+48 2.07761195269995e-06
+49 2.48883884523821e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000143763812957332
+1 0.000139178737299517
+2 0.000142089265864342
+3 0.000139807132654823
+4 0.000143734039738774
+5 0.000141442564199679
+6 0.00014284135249909
+7 0.000142461474752054
+8 0.000143162498716265
+9 0.000139073003083467
+10 0.000141730561153963
+11 0.000141578188049607
+12 0.000143380151712336
+13 0.000144045290653594
+14 0.000141726748552173
+15 0.000142374658025801
+16 0.000144648540299386
+17 0.000142235570820048
+18 0.000142368036904372
+19 0.000139292867970653
+20 0.000138851304654963
+21 0.000138716553919949
+22 0.000144156205351464
+23 0.000139545198180713
+24 0.000142113116453402
+25 0.000139627998578362
+26 0.000139134339406155
+27 0.000144204459502362
+28 0.000143224722705781
+29 0.000141501965117641
+30 0.000143379074870609
+31 0.000140620497404598
+32 0.000137223920319229
+33 0.000146146805491298
+34 0.00014084555732552
+35 0.00014218088472262
+36 0.000143690587719902
+37 0.000141688258736394
+38 0.000142976641654968
+39 0.000138030736707151
+40 0.000140615404234268
+41 0.000140931486384943
+42 0.000143891942570917
+43 0.000145918340422213
+44 0.000142167526064441
+45 0.000144639969221316
+46 0.000142907840199769
+47 0.000139413299621083
+48 0.000140595511766151
+49 0.000142620017868467
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.00012324532144703
+1 0.000164470649906434
+2 0.000135409340145998
+3 0.000155464047566056
+4 0.000123474703286774
+5 0.000144494653795846
+6 0.000129338310216554
+7 0.000131502485601231
+8 0.000128132087411359
+9 0.000163212636834942
+10 0.000142233562655747
+11 0.000144709396408871
+12 0.000125639635371044
+13 0.000121416131150909
+14 0.000143593177199364
+15 0.000136095375637524
+16 0.000117960640636738
+17 0.000139916126499884
+18 0.000134448680910282
+19 0.000161074014613405
+20 0.000166440731845796
+21 0.000168461163411848
+22 0.00011884552804986
+23 0.000161784613737836
+24 0.000138133400469087
+25 0.000158245238708332
+26 0.000165148274390958
+27 0.000118007963465061
+28 0.000126965009258129
+29 0.000143420373206027
+30 0.000128937375848182
+31 0.000150985244545154
+32 0.000182100964593701
+33 0.0001036131507135
+34 0.000153229280840605
+35 0.000137303184601478
+36 0.000122190482215956
+37 0.000144249279401265
+38 0.00012982779298909
+39 0.000171671810676344
+40 0.000149463347042911
+41 0.000146765538374893
+42 0.00012092253746232
+43 0.000103077341918834
+44 0.000135030873934738
+45 0.000116980285383761
+46 0.00013164670963306
+47 0.00016236181545537
+48 0.000153248940478079
+49 0.000135259848320857
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006698358063668683, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006698358063668683, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..40e539431ebe70d920567b8c0841afbda10777b7
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006698358063668683, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006698358063668683, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006698358063668683, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..39cf31a023b09abe0b7d7dc8b5d72990c2b248cf
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006698358063668683, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.26604475832622e-08, ymax=0.000258190742719076,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000130690983496606
+1 1.9101085854345e-05
+2 3.23837161886331e-06
+3 1.87917987659603e-06
+4 1.6913920717343e-06
+5 1.0229074405288e-06
+6 7.22089794180647e-07
+7 5.55953874936677e-07
+8 4.2707313241408e-07
+9 3.71060764337017e-07
+10 3.0429109187935e-07
+11 2.64008093608936e-07
+12 2.40279831587031e-07
+13 2.23655419517854e-07
+14 1.88990256333454e-07
+15 1.80110035330472e-07
+16 1.68970501590593e-07
+17 1.4887494614868e-07
+18 1.44721312267393e-07
+19 1.22982712014164e-07
+20 1.18633685985969e-07
+21 1.10488109328344e-07
+22 1.01580255318368e-07
+23 9.80523466864724e-08
+24 9.59374872877561e-08
+25 8.80156036942026e-08
+26 8.60371116573333e-08
+27 8.09424420822324e-08
+28 7.31496427874845e-08
+29 6.99215121358066e-08
+30 1.27777695979603e-07
+31 1.02634118093192e-07
+32 8.26193797820451e-08
+33 7.42004928611095e-08
+34 6.88648853497398e-08
+35 6.45356053041723e-08
+36 6.03207510607717e-08
+37 5.88793938050003e-08
+38 5.39113607089803e-08
+39 4.92462000067917e-08
+40 4.77064645565406e-08
+41 4.72726604527907e-08
+42 4.70065160129707e-08
+43 4.46343726423493e-08
+44 4.29524682488136e-08
+45 4.17819308040634e-08
+46 4.12961220774832e-08
+47 4.32142819306591e-08
+48 3.87195662199247e-08
+49 3.74103166222994e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000146149701322429
+1 2.19555040530395e-05
+2 5.17754369866452e-06
+3 2.27874966185482e-06
+4 1.27938312743936e-06
+5 1.10047517409839e-06
+6 7.11467180281034e-07
+7 5.20830724326515e-07
+8 3.31467617797898e-07
+9 2.83354893326759e-07
+10 2.74139807743268e-07
+11 3.11282917664357e-07
+12 2.39935246781897e-07
+13 2.13828798223403e-07
+14 2.43408436517711e-07
+15 1.51819378402251e-07
+16 8.1126290751854e-07
+17 1.51445263441019e-07
+18 1.5365667138667e-07
+19 1.39769881002394e-07
+20 1.05991979637565e-07
+21 8.80871837694031e-08
+22 9.87092363402553e-08
+23 1.13011076052771e-07
+24 7.90631915492668e-08
+25 7.64429728405958e-08
+26 7.76381980926999e-08
+27 8.9769947919649e-08
+28 7.14275572022416e-08
+29 6.45034319290971e-08
+30 1.0961548468913e-07
+31 7.94646624058259e-08
+32 8.63037854514914e-08
+33 7.77499380433255e-08
+34 5.89872222178656e-08
+35 5.60452129150235e-08
+36 5.20511385104783e-08
+37 5.56382921956811e-08
+38 5.12235160954333e-08
+39 6.6477205962201e-08
+40 6.04578431762093e-08
+41 4.16766070543417e-08
+42 4.32592131005549e-08
+43 5.34800115303824e-08
+44 3.85055862750505e-08
+45 4.64792719867546e-08
+46 3.62581680235508e-08
+47 3.92359709167067e-08
+48 3.46467636802572e-08
+49 3.79246678505751e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000135955604491755
+1 0.000132566783577204
+2 0.000132497822050937
+3 0.000133644600282423
+4 0.000131484601297416
+5 0.000130739499581978
+6 0.00013305590255186
+7 0.000130285116028972
+8 0.000131848646560684
+9 0.000129610401927494
+10 0.000131661741761491
+11 0.000136872011353262
+12 0.000130965971038677
+13 0.000131678010802716
+14 0.000130077241919935
+15 0.000132340268464759
+16 0.000132051456603222
+17 0.000133401044877246
+18 0.000130444037495181
+19 0.000132847999338992
+20 0.000131466440507211
+21 0.00013446799130179
+22 0.000131788227008656
+23 0.000131605134811252
+24 0.000133749344968237
+25 0.000134316476760432
+26 0.000134250381961465
+27 0.000130724263726734
+28 0.000134384798002429
+29 0.000132260101963766
+30 0.000130052416352555
+31 0.000131930471980013
+32 0.000134689325932413
+33 0.000131521461298689
+34 0.000133564390125684
+35 0.000128960949950852
+36 0.000130249143694527
+37 0.000131553562823683
+38 0.000134562811581418
+39 0.000134127505589277
+40 0.000130026892293245
+41 0.000128828847664408
+42 0.000135927111841738
+43 0.00013387059152592
+44 0.000133043256937526
+45 0.000130377782625146
+46 0.000131302702357061
+47 0.000134182104375213
+48 0.00013384576595854
+49 0.000130263200844638
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000113041860458907
+1 0.00013241361011751
+2 0.000126741870190017
+3 0.000120663979032543
+4 0.000138622926897369
+5 0.000143918674439192
+6 0.000128827479784377
+7 0.000147372134961188
+8 0.000134109679493122
+9 0.000163021686603315
+10 0.000138701565447263
+11 9.02687679626979e-05
+12 0.00014181730512064
+13 0.00013633634080179
+14 0.000152559325215407
+15 0.000126546059618704
+16 0.000131707420223393
+17 0.000119190037366934
+18 0.000146844075061381
+19 0.000139167226734571
+20 0.000136805640067905
+21 0.00011410447768867
+22 0.000140025309519842
+23 0.000140034389914945
+24 0.00011616013944149
+25 0.000114062415377703
+26 0.000118894422485027
+27 0.000141733456985094
+28 0.000129226478748024
+29 0.000132357090478763
+30 0.000152338790940121
+31 0.000135660797241144
+32 0.000109923268610146
+33 0.000141350101330318
+34 0.000124277416034602
+35 0.000163949429406784
+36 0.000149774539750069
+37 0.000135450507514179
+38 0.000144023637403734
+39 0.000117198702355381
+40 0.000155166839249432
+41 0.000168867656611837
+42 0.000102123281976674
+43 0.000119603078928776
+44 0.000122097582789138
+45 0.0001487980625825
+46 0.000139941184897907
+47 0.000120982549560722
+48 0.000123047939268872
+49 0.000152441090904176
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006726265524604638, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006726265524604638, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..ed75dcb71c71e903c2f5dc17a76aefe1e2433485
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006726265524604638, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006726265524604638, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006726265524604638, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..ccddbbe6d72b3f58f2de57249779dc0f8bcb49c0
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006726265524604638, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.13453638293031e-08, ymax=0.000306568433171152,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000158043199917302
+1 1.40120810101507e-05
+2 4.58001113656792e-06
+3 2.39489736486576e-06
+4 1.71944782323408e-06
+5 1.17341630812007e-06
+6 9.16960686936363e-07
+7 7.197249942692e-07
+8 6.13992710896127e-07
+9 5.01567967603478e-07
+10 4.61297247511538e-07
+11 3.8572414950977e-07
+12 3.39516816438845e-07
+13 3.07894595152902e-07
+14 2.89512030349215e-07
+15 2.61372179011232e-07
+16 2.35131594195082e-07
+17 2.19770925014018e-07
+18 1.96721771317243e-07
+19 1.87994658062962e-07
+20 1.69144286132905e-07
+21 1.58711557673996e-07
+22 1.49243916780506e-07
+23 1.47927949001314e-07
+24 1.34917897298692e-07
+25 1.29666929638006e-07
+26 1.24502108178604e-07
+27 1.20994727126345e-07
+28 1.08717657099078e-07
+29 1.10504920769472e-07
+30 1.03521003325113e-07
+31 9.72127907061804e-08
+32 9.12041713263534e-08
+33 9.4555467455848e-08
+34 8.44420782186717e-08
+35 8.74444410214892e-08
+36 8.15941945120358e-08
+37 8.19546883690236e-08
+38 7.89554732705255e-08
+39 7.64640830652752e-08
+40 7.10063332576283e-08
+41 6.79214693377617e-08
+42 6.68463044917189e-08
+43 6.85040006942472e-08
+44 6.35843733221009e-08
+45 6.03156991019205e-08
+46 5.8691242088571e-08
+47 5.91350683976088e-08
+48 5.68933060662857e-08
+49 5.28254631149139e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000153371162014082
+1 1.14083732114523e-05
+2 4.97456903758575e-06
+3 3.50723030351219e-06
+4 1.41476618864544e-06
+5 1.29107706925424e-06
+6 8.59688782384183e-07
+7 5.93158517858683e-07
+8 5.54458154056192e-07
+9 4.81664926610392e-07
+10 3.6938052971891e-07
+11 3.57112497795242e-07
+12 3.4268759918632e-07
+13 3.42720909429772e-07
+14 4.98398264880962e-07
+15 2.51644962645514e-07
+16 3.21143488690723e-07
+17 1.81912795937933e-07
+18 2.13645563462705e-07
+19 1.72252839547582e-07
+20 2.1638621205966e-07
+21 1.98866430878297e-07
+22 2.01896455109818e-07
+23 1.29822026906368e-07
+24 1.4705919682001e-07
+25 1.42546966230839e-07
+26 1.07732525123083e-07
+27 9.83990773306687e-08
+28 1.88071737738937e-07
+29 9.50070386807056e-08
+30 9.74762528471729e-08
+31 9.87074386671338e-08
+32 1.20966944905376e-07
+33 9.47383611560326e-08
+34 8.92374885097524e-08
+35 7.37726182364895e-08
+36 6.93190358447282e-08
+37 7.71483357198122e-08
+38 7.32483513843363e-08
+39 7.82039748514762e-08
+40 7.9261099017458e-08
+41 6.56361152095997e-08
+42 6.78015297239654e-08
+43 4.75940922228801e-08
+44 6.97137565452977e-08
+45 5.47037259934768e-08
+46 6.2752690155321e-08
+47 5.89209498969012e-08
+48 4.78767461231655e-08
+49 5.3002434441396e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000157960312208161
+1 0.000156774578499608
+2 0.000158354756422341
+3 0.000155130794155411
+4 0.000157984584802762
+5 0.000158558206749149
+6 0.000159778704983182
+7 0.000155914895003662
+8 0.000157620830577798
+9 0.000158600756549276
+10 0.000157818081788719
+11 0.000153555200085975
+12 0.00015741036622785
+13 0.000159118324518204
+14 0.000156947004143149
+15 0.000158695547725074
+16 0.000157077491167001
+17 0.000157915797899477
+18 0.000158976778038777
+19 0.000158206108608283
+20 0.000158419177751057
+21 0.000157835747813806
+22 0.000155802234075963
+23 0.000156192108988762
+24 0.000154265086166561
+25 0.000158209339133464
+26 0.000154178182128817
+27 0.000158536990056746
+28 0.000158001115778461
+29 0.000154344539623708
+30 0.000158746479428373
+31 0.00015684736717958
+32 0.000155415269546211
+33 0.000158883893163875
+34 0.000160084207891487
+35 0.000159566858201288
+36 0.000156821421114728
+37 0.000157675400259905
+38 0.000158143899170682
+39 0.000159125003847294
+40 0.000160500945639797
+41 0.000157631337060593
+42 0.00015575424185954
+43 0.000158641283633187
+44 0.000161146454047412
+45 0.000152545180753805
+46 0.000154321329318918
+47 0.000157439397298731
+48 0.000154780398588628
+49 0.000157429050887004
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000157522954395972
+1 0.000164057550136931
+2 0.000151334286783822
+3 0.00017647426284384
+4 0.000153962464537472
+5 0.000145423735375516
+6 0.000143871860927902
+7 0.000173522115801461
+8 0.000154916939209215
+9 0.000145189333125018
+10 0.000154264605953358
+11 0.000192526029422879
+12 0.000155048241140321
+13 0.000146254824358039
+14 0.00016199832316488
+15 0.000146033664350398
+16 0.000161412855959497
+17 0.000148171311593615
+18 0.000147290833410807
+19 0.000150710897287354
+20 0.000148126317071728
+21 0.00015200134657789
+22 0.000172731088241562
+23 0.000167586753377691
+24 0.000184624193934724
+25 0.000148980368976481
+26 0.000187516488949768
+27 0.000142645658343099
+28 0.000155144909513183
+29 0.000185799261089414
+30 0.000144924575579353
+31 0.00016041770868469
+32 0.000177772672032006
+33 0.000147060869494453
+34 0.000138645627885126
+35 0.000135303111164831
+36 0.000161303847562522
+37 0.000155468311277218
+38 0.000148329374496825
+39 0.000137478098622523
+40 0.000129882784676738
+41 0.000156861540745012
+42 0.000173239794094115
+43 0.000148396837175824
+44 0.000125679609482177
+45 0.00020190529176034
+46 0.000183727752300911
+47 0.000154667635797523
+48 0.000181212832103483
+49 0.000156719383085147
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00672883704278922, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00672883704278922, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..0ad13e642a3ef86030054226d2f926e81db0dd45
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00672883704278922, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00672883704278922, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00672883704278922, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..60bd940afbf15bf10a0e556470390cc637e47b53
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00672883704278922, Learning_Process.tex	
@@ -0,0 +1,265 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.03,0.97)},
+  anchor=north west,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.87012658875352e-06, ymax=557665.273604032,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-06,0.0001,0.01,1,100,10000,1000000,100000000},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{0}}\),
+  \(\displaystyle {10^{2}}\),
+  \(\displaystyle {10^{4}}\),
+  \(\displaystyle {10^{6}}\),
+  \(\displaystyle {10^{8}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000147427606862038
+1 1.58154562086565e-05
+2 2.42000314756297e-05
+3 4.76799614261836e-05
+4 0.000121511038742028
+5 3.85624261980411e-05
+6 0.000569934723898768
+7 0.000656367454212159
+8 0.000141283511766233
+9 8.43093439470977e-05
+10 6.35654650977813e-05
+11 5.13304803462233e-05
+12 5.48829229956027e-05
+13 5.53184909222182e-05
+14 8.10698475106619e-05
+15 0.00104641483630985
+16 0.000413778878282756
+17 0.000225543612032197
+18 0.0137353567406535
+19 0.173424199223518
+20 0.999991714954376
+21 0.999990522861481
+22 0.999986886978149
+23 0.999984264373779
+24 0.999981045722961
+25 0.999977469444275
+26 0.999988734722137
+27 0.999974191188812
+28 0.999973773956299
+29 0.999970495700836
+30 0.99996817111969
+31 0.999966442584991
+32 0.99996542930603
+33 0.999963581562042
+34 0.999961376190186
+35 0.99996143579483
+36 0.999968469142914
+37 0.999957799911499
+38 0.999960124492645
+39 0.999955594539642
+40 0.999953150749207
+41 0.999952554702759
+42 0.999951422214508
+43 0.999949991703033
+44 0.999948143959045
+45 0.999949812889099
+46 0.999961018562317
+47 0.999945282936096
+48 0.999956429004669
+49 0.999945998191833
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000163015138241462
+1 9.940371819539e-05
+2 6.21497383690439e-06
+3 5.7014032790903e-05
+4 1.0069333256979e-05
+5 9.69498869380914e-05
+6 2.63981528405566e-05
+7 0.000983019941486418
+8 0.000117379880975932
+9 8.07630640338175e-05
+10 6.44987521809526e-05
+11 0.000248031195951626
+12 4.47599413746502e-05
+13 0.000139655006933026
+14 5.48004718439188e-05
+15 0.041875034570694
+16 0.000257864594459534
+17 0.000125448263133876
+18 0.000358119112206623
+19 0.101877950131893
+20 135578.515625
+21 106809.1875
+22 105129.3671875
+23 97473.2421875
+24 40095.9921875
+25 85962.2890625
+26 63521.63671875
+27 167805.15625
+28 16612.240234375
+29 18116.302734375
+30 36875.71484375
+31 27633.853515625
+32 29295.630859375
+33 19183.13671875
+34 19735.392578125
+35 14419.6044921875
+36 34820.98046875
+37 8369.625
+38 65831.7734375
+39 9255.1259765625
+40 10972.0966796875
+41 11985.2177734375
+42 14429.3076171875
+43 11598.3642578125
+44 56257.63671875
+45 55926.57421875
+46 8116.22021484375
+47 48051.734375
+48 6942.0400390625
+49 9099.26953125
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000150204330566339
+1 0.000150959167513065
+2 0.000145999889355153
+3 0.000148113627801649
+4 0.000146406004205346
+5 0.000148523642565124
+6 0.000149317565956153
+7 0.000148403370985761
+8 0.000146898382809013
+9 0.000147017417475581
+10 0.000151740561705083
+11 0.000147656290209852
+12 0.000147946586366743
+13 0.000146913473145105
+14 0.000148101360537112
+15 0.000146026257425547
+16 0.000148882318171673
+17 0.000144134741276503
+18 0.000149846106069162
+19 0.000148259234265424
+20 0.000147773054777645
+21 0.000145147190778516
+22 0.00014703934721183
+23 0.000149592538946308
+24 0.000150504987686872
+25 0.000148270875797607
+26 0.000148225866723806
+27 0.000148462087963708
+28 0.00014782244397793
+29 0.000152216161950491
+30 0.000149325598613359
+31 0.000148320235894062
+32 0.000152931097545661
+33 0.000145785743370652
+34 0.000146799546200782
+35 0.000147954939166084
+36 0.000147125101648271
+37 0.000149736442836002
+38 0.00015079855802469
+39 0.000149033628986217
+40 0.000145961923408322
+41 0.00014793241280131
+42 0.000152054955833592
+43 0.000147398444823921
+44 0.000147827711771242
+45 0.000146897466038354
+46 0.000151788699440658
+47 0.000152015694766305
+48 0.000146614082041197
+49 0.000150024090544321
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000129278472741134
+1 0.000131938984850422
+2 0.000162903394084424
+3 0.000143680066685192
+4 0.000157673202920705
+5 0.000159371862537228
+6 0.000153549015522003
+7 0.000157762653543614
+8 0.000164803888765164
+9 0.000171756284544244
+10 0.000125279490021057
+11 0.000159019371494651
+12 0.000151400090544485
+13 0.000166128724231385
+14 0.000163265125593171
+15 0.000178140704520047
+16 0.000155149129568599
+17 0.000191898463526741
+18 0.000145687823533081
+19 0.000154239183757454
+20 0.000159428949700668
+21 0.000183690295671113
+22 0.000164220444275998
+23 0.000138667499413714
+24 0.000134751084260643
+25 0.000156201393110678
+26 0.000153655899339356
+27 0.000151057072798721
+28 0.000158803566591814
+29 0.000119414275104646
+30 0.00014253708650358
+31 0.000149653613334522
+32 0.00011831345182145
+33 0.000174217027961276
+34 0.000160171577590518
+35 0.000155731555423699
+36 0.000167529302416369
+37 0.000150022067828104
+38 0.00013259109982755
+39 0.000146778285852633
+40 0.000171040868735872
+41 0.000156348542077467
+42 0.000139059178764001
+43 0.000164971497724764
+44 0.000156093068653718
+45 0.000150173378642648
+46 0.000114519221824594
+47 0.000120859702292364
+48 0.000182688323548064
+49 0.000135353882797062
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006768117110215258, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006768117110215258, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..46833251176e6d32d23558af2d73a0f8ab5257e8
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006768117110215258, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006768117110215258, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006768117110215258, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..313b1b738f16cb9e96203a59308c4b7fd4a54352
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006768117110215258, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.10696783945156e-08, ymax=0.000275609686397842,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000135894137201831
+1 8.63683635543566e-06
+2 1.73803687175678e-06
+3 8.36066249121359e-07
+4 5.19589264058595e-07
+5 3.75776494365709e-07
+6 2.99051720276111e-07
+7 2.41654731780727e-07
+8 2.05010465492705e-07
+9 1.70813379440915e-07
+10 1.43374492722614e-07
+11 1.24122067290955e-07
+12 1.1249347409148e-07
+13 1.02346248809226e-07
+14 9.60280601702834e-08
+15 8.31144362223313e-08
+16 8.1085197223274e-08
+17 6.85610146433646e-08
+18 6.57828920225256e-08
+19 6.23427638402063e-08
+20 5.75221292820061e-08
+21 5.5519013386629e-08
+22 5.1383590715659e-08
+23 4.67591796393663e-08
+24 4.33637978858314e-08
+25 4.42135039691038e-08
+26 4.11081408913105e-08
+27 3.94553758553684e-08
+28 3.65964574200461e-08
+29 3.45576012250604e-08
+30 3.4013183380921e-08
+31 3.33545386865808e-08
+32 3.07294527601698e-08
+33 5.74918992413131e-08
+34 2.92381088229376e-08
+35 2.75260045867753e-08
+36 2.67451394364571e-08
+37 2.59350176889939e-08
+38 2.5123377156433e-08
+39 2.51461447220436e-08
+40 2.40035458176635e-08
+41 2.20971969611128e-08
+42 2.24122089775847e-08
+43 2.17401758817459e-08
+44 2.05747312520543e-08
+45 2.10288941815406e-08
+46 2.02480396893634e-08
+47 1.8767350340454e-08
+48 1.91441209551613e-08
+49 1.90142017686412e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000112669098598417
+1 1.0674534678401e-05
+2 1.8788787201629e-06
+3 8.02840190772258e-07
+4 6.43765872609947e-07
+5 4.93229094900016e-07
+6 2.84349368939729e-07
+7 2.29821793595875e-07
+8 1.51960463767864e-07
+9 1.51088627831086e-07
+10 1.27651262005202e-07
+11 1.38986465003654e-07
+12 1.20939986913982e-07
+13 9.82334782406724e-08
+14 7.62556808808768e-08
+15 8.72861320999618e-08
+16 7.23357516108081e-08
+17 8.55399733268314e-08
+18 7.95939385511701e-08
+19 5.29163912688091e-08
+20 5.4694488937912e-08
+21 5.00693424498877e-08
+22 5.14520834826726e-08
+23 4.67759768696396e-08
+24 4.57521558416829e-08
+25 5.27680867890012e-08
+26 4.08648475058726e-08
+27 3.60595677761921e-08
+28 3.15278860796298e-08
+29 3.04371354786781e-08
+30 3.40845183188776e-08
+31 2.86744619160118e-08
+32 2.81871344043338e-08
+33 2.88941297554857e-08
+34 2.84251537863156e-08
+35 2.85124226451217e-08
+36 3.40375407859028e-08
+37 2.97365101431524e-08
+38 2.57512891010947e-08
+39 2.13241317936763e-08
+40 2.03471284265788e-08
+41 2.68296087568842e-08
+42 2.2993637216473e-08
+43 2.20426077390812e-08
+44 2.47627678362505e-08
+45 1.9729780476041e-08
+46 1.75372072419577e-08
+47 2.10642809861383e-08
+48 2.02048280328881e-08
+49 1.77519208222066e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00012916314881295
+1 0.000132506072986871
+2 0.000137471914058551
+3 0.000135689770104364
+4 0.000131474662339315
+5 0.00013345580373425
+6 0.000133846420794725
+7 0.000134472051286139
+8 0.000135011272504926
+9 0.000131472203065641
+10 0.000135459573357366
+11 0.000133760229800828
+12 0.000133086417918094
+13 0.000134442918351851
+14 0.000135457492433488
+15 0.000130196669488214
+16 0.00012959711602889
+17 0.000134027664898895
+18 0.000133297493448481
+19 0.000134466245071962
+20 0.000130544125568122
+21 0.000134360598167405
+22 0.000132719593239017
+23 0.000133770183310844
+24 0.000131535911350511
+25 0.000132839297293685
+26 0.000133621593704447
+27 0.000131431501358747
+28 0.000134302477817982
+29 0.00013185442367103
+30 0.000130460597574711
+31 0.000130513377371244
+32 0.000137312032165937
+33 0.000135104681248777
+34 0.000134394227643497
+35 0.000135821581352502
+36 0.000132117856992409
+37 0.000137311988510191
+38 0.000134476635139436
+39 0.000130797663587146
+40 0.000136099464725703
+41 0.000133366527734324
+42 0.00013211187615525
+43 0.00013704078446608
+44 0.000133062378154136
+45 0.000134157613501884
+46 0.000135319452965632
+47 0.000133300665766001
+48 0.000134143236209638
+49 0.000136764341732487
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000173967870068736
+1 0.000148867125972174
+2 0.000100328601547517
+3 0.000116840055852663
+4 0.00015346787404269
+5 0.000134729969431646
+6 0.000130882253870368
+7 0.000125647784443572
+8 0.000123430188978091
+9 0.000154654146172106
+10 0.000118100106192287
+11 0.000134613816044293
+12 0.000136661736178212
+13 0.000126872939290479
+14 0.000117471492558252
+15 0.000168184677022509
+16 0.000171002917340957
+17 0.000130222382722422
+18 0.000135573369334452
+19 0.000126152386656031
+20 0.000159810573677532
+21 0.000125548089272343
+22 0.00014215889677871
+23 0.000132919085444883
+24 0.000155255474965088
+25 0.000145322061143816
+26 0.000134938964038156
+27 0.000155893692863174
+28 0.000130566404550336
+29 0.000150823834701441
+30 0.000162039636052214
+31 0.000160137846251018
+32 0.000101945181086194
+33 0.000120244854770135
+34 0.00012533761037048
+35 0.000113142996269744
+36 0.000147794591612183
+37 0.000130519780213945
+38 0.000125616090372205
+39 0.00015727270510979
+40 0.000114541668153834
+41 0.000137961396831088
+42 0.000152012216858566
+43 0.000103429891169071
+44 0.000138134579174221
+45 0.000131048072944395
+46 0.000122504410683177
+47 0.000139189069159329
+48 0.000127495761262253
+49 0.000107745523564517
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006787129759864759, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006787129759864759, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..a6af71d7b1d843b1622a85f04fc878fd0207e563
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006787129759864759, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006787129759864759, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006787129759864759, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..d8ba13bffb1189f377532d0f7f3c05f226aca939
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006787129759864759, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.01695825797307e-08, ymax=0.000332448431180187,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000151226500747725
+1 1.86603465408552e-05
+2 3.86189776691026e-06
+3 2.04865500563756e-06
+4 1.35060690809041e-06
+5 1.02110470834305e-06
+6 8.66143295752408e-07
+7 6.89194735059573e-07
+8 5.84423730742856e-07
+9 4.72031842946308e-07
+10 4.1360416958014e-07
+11 3.71037231161608e-07
+12 3.2992466003634e-07
+13 2.81262742873878e-07
+14 2.73375917458907e-07
+15 2.51581553811775e-07
+16 2.2783285658079e-07
+17 2.05777965334164e-07
+18 1.99336227524327e-07
+19 1.84245294576613e-07
+20 1.62390733748907e-07
+21 1.58639707592556e-07
+22 1.48751283290949e-07
+23 1.36318348609166e-07
+24 1.30596035319286e-07
+25 1.22314162354087e-07
+26 1.20249680435336e-07
+27 1.12212354963503e-07
+28 1.04955297786091e-07
+29 1.05981108333708e-07
+30 9.5520917398062e-08
+31 9.02762238297328e-08
+32 8.6219330341919e-08
+33 8.73932179956682e-08
+34 8.34906686009163e-08
+35 8.22084373908183e-08
+36 7.43055821317284e-08
+37 7.4042816322617e-08
+38 7.15859727051793e-08
+39 6.968632249027e-08
+40 6.73125555294973e-08
+41 6.5514321079263e-08
+42 6.37442099105101e-08
+43 6.22105602587908e-08
+44 6.26168059625343e-08
+45 5.68857529970046e-08
+46 5.59650210618656e-08
+47 5.66129507717505e-08
+48 5.3189737059256e-08
+49 5.10380893103957e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000181649622390978
+1 2.47973948717117e-05
+2 4.13506450058776e-06
+3 1.42012993364915e-06
+4 1.47596438182518e-06
+5 1.07234609458828e-06
+6 6.92464084295352e-07
+7 5.86872317853704e-07
+8 4.26111910201143e-07
+9 6.31606496881432e-07
+10 4.50755408110126e-07
+11 3.69157959312361e-07
+12 3.39441896812787e-07
+13 4.38598277696656e-07
+14 2.70157215709332e-07
+15 2.51289719699344e-07
+16 2.34221076311769e-07
+17 2.25732264880207e-07
+18 1.8374821308953e-07
+19 1.27875807720557e-07
+20 1.990234608229e-07
+21 1.56219371660882e-07
+22 1.34155456521512e-07
+23 1.51742526099952e-07
+24 1.31029651129211e-07
+25 1.5547296072782e-07
+26 1.13879536911554e-07
+27 9.52499235040705e-08
+28 1.08418753086426e-07
+29 1.3768037376849e-07
+30 9.29158474605174e-08
+31 1.01256489415391e-07
+32 1.14877344969955e-07
+33 7.1148555491618e-08
+34 1.03673976070695e-07
+35 8.04117803454574e-08
+36 9.64364872402257e-08
+37 7.10994356722949e-08
+38 7.058697804041e-08
+39 5.64288953341929e-08
+40 5.82419197314721e-08
+41 5.53301973127418e-08
+42 5.84243160517417e-08
+43 5.81975427849102e-08
+44 5.76508902838668e-08
+45 6.54606679972858e-08
+46 5.9800150609135e-08
+47 4.60578455374616e-08
+48 4.96531491478436e-08
+49 5.47014060714446e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00015605402586516
+1 0.000151801417814568
+2 0.000155927569721825
+3 0.000155462126713246
+4 0.000153688888531178
+5 0.000156722555402666
+6 0.000153033455717377
+7 0.000154152221512049
+8 0.000151303407619707
+9 0.000150703141116537
+10 0.000152969121700153
+11 0.000153258646605536
+12 0.000150515872519463
+13 0.000156991794938222
+14 0.000153835222590715
+15 0.000154659006511793
+16 0.000155620960867964
+17 0.000151038460899144
+18 0.000154226931044832
+19 0.000152716733282432
+20 0.000217765948036686
+21 0.000156769805471413
+22 0.000153156128362752
+23 0.000156354595674202
+24 0.000151382642798126
+25 0.000155081725097261
+26 0.000154789217049256
+27 0.000154975394252688
+28 0.000155474597704597
+29 0.000152961496496573
+30 0.000153874396346509
+31 0.000154156499775127
+32 0.000152503693243489
+33 0.000151393192936666
+34 0.000155487447045743
+35 0.000154174456838518
+36 0.000155227113282308
+37 0.000153978733578697
+38 0.000156075475388207
+39 0.000154875291627832
+40 0.000156479407451116
+41 0.000155953981447965
+42 0.000151626314618625
+43 0.000153101966134273
+44 0.000154159963130951
+45 0.0001557988289278
+46 0.000153232555021532
+47 0.000153104163473472
+48 0.000156016860273667
+49 0.000151831787661649
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000135656868224032
+1 0.00017265320639126
+2 0.000137705821543932
+3 0.000140821939567104
+4 0.000156337744556367
+5 0.000131742490339093
+6 0.000164199198479764
+7 0.000154984212713316
+8 0.000175045046489686
+9 0.000184401360456832
+10 0.000161273826961406
+11 0.000162984899361618
+12 0.00018126328359358
+13 0.000131021399283782
+14 0.000155315108713694
+15 0.000148351929965429
+16 0.000142689910717309
+17 0.000181850788067095
+18 0.000156757145305164
+19 0.00016564350517001
+20 0.00010974561155308
+21 0.000130256798001938
+22 0.000162815485964529
+23 0.000138574585434981
+24 0.000179773880518042
+25 0.000144881181768142
+26 0.00014985392044764
+27 0.000144351492053829
+28 0.00014506108709611
+29 0.000160045150551014
+30 0.000155216112034395
+31 0.000154339941218495
+32 0.000172211788594723
+33 0.000183175128768198
+34 0.000141873359098099
+35 0.000151635555084795
+36 0.00014559633564204
+37 0.000155473506310955
+38 0.000133244757307693
+39 0.00014574930537492
+40 0.000130593034555204
+41 0.000137046285090037
+42 0.00017707678489387
+43 0.000163616146892309
+44 0.000152515975059941
+45 0.000138329502078705
+46 0.000162955533596687
+47 0.000169849197845906
+48 0.000135576585307717
+49 0.000176271525560878
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006796180689405706, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006796180689405706, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..d698a5156301fa96709ed7037fb17abdf931aee6
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006796180689405706, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006796180689405706, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006796180689405706, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..fba7216ac804dac0428e8d58cce63667cd8ad968
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006796180689405706, Learning_Process.tex	
@@ -0,0 +1,259 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.7697443599822e-08, ymax=0.023018575146032,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000151487853145227
+1 2.13047496799845e-05
+2 6.18780904915184e-06
+3 2.65805192611879e-06
+4 1.67486723512411e-06
+5 1.10818143639335e-06
+6 8.65164395236206e-07
+7 6.85953068568779e-07
+8 5.67892527669756e-07
+9 4.70923595230488e-07
+10 4.16098998812231e-07
+11 3.72566233863836e-07
+12 3.27657716070462e-07
+13 2.90280325998538e-07
+14 2.61754848907003e-07
+15 2.63800757238641e-07
+16 2.13092548051463e-07
+17 2.01508925101734e-07
+18 1.85772861982514e-07
+19 1.7863216328351e-07
+20 1.68159587587979e-07
+21 1.55950331759414e-07
+22 1.45190114153593e-07
+23 1.38126111437487e-07
+24 1.28539312527209e-07
+25 1.23698271181638e-07
+26 1.18695339779151e-07
+27 1.139297793884e-07
+28 1.02754412978356e-07
+29 1.04195471806179e-07
+30 9.5891486751043e-08
+31 9.71929381421432e-08
+32 9.41665945219938e-08
+33 8.5569830332588e-08
+34 8.39301037558471e-08
+35 8.49854089324253e-08
+36 7.87121265943824e-08
+37 9.70011200251975e-08
+38 8.10544023011062e-08
+39 6.8411203812957e-08
+40 7.00320867963455e-08
+41 6.53702088015962e-08
+42 6.56284626643355e-08
+43 6.42859276922536e-08
+44 5.67956064401187e-08
+45 5.90142974488117e-08
+46 6.10610584317328e-08
+47 5.42752935928092e-08
+48 5.50052163816872e-08
+49 5.21378780149462e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000153530141687952
+1 1.58720358740538e-05
+2 5.72536691834102e-06
+3 3.0250789677666e-06
+4 1.16479156986316e-06
+5 1.11728490992391e-06
+6 7.24100743809686e-07
+7 6.98381995789532e-07
+8 6.1075468238414e-07
+9 5.63894730021275e-07
+10 4.59613971770523e-07
+11 3.08480792909904e-07
+12 2.86831578932834e-07
+13 2.7261782520327e-07
+14 2.89574359157996e-07
+15 2.02314623720667e-07
+16 2.56957946476177e-07
+17 2.26682729476124e-07
+18 1.98194882727876e-07
+19 1.77840078663394e-07
+20 1.78779245629812e-07
+21 1.58119021875791e-07
+22 1.57754683982603e-07
+23 1.26641495512558e-07
+24 1.2315554442921e-07
+25 1.3190866354762e-07
+26 9.8838064843676e-08
+27 8.93402329893433e-08
+28 1.26031508784763e-07
+29 1.41403447173616e-07
+30 9.4641642078841e-08
+31 8.33402324929011e-08
+32 8.70420038268094e-08
+33 1.01273080588271e-07
+34 8.91406557457231e-08
+35 6.83108183352488e-08
+36 8.02648543185569e-08
+37 6.00567418018727e-08
+38 5.73223601918471e-08
+39 7.4917501535765e-08
+40 6.30844994020663e-08
+41 6.40299617771234e-08
+42 6.53419220952856e-08
+43 6.82179788213944e-08
+44 7.59964891017262e-08
+45 5.47771996650681e-08
+46 5.38923146109482e-08
+47 5.70804381538892e-08
+48 5.14652604977073e-08
+49 5.49108349900962e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000146714708535001
+1 0.000151813990669325
+2 0.000149943720316514
+3 0.000151837637531571
+4 0.000154356253915466
+5 0.000147076789289713
+6 0.000153034590766765
+7 0.000151569154695608
+8 0.000151676067616791
+9 0.000150816718814895
+10 0.000153459754073992
+11 0.000152905224240385
+12 0.0123880784958601
+13 0.000155050875036977
+14 0.000154604596900754
+15 0.000150662119267508
+16 0.000147433776874095
+17 0.00015134023851715
+18 0.000151661501149647
+19 0.000151260494021699
+20 0.000152542866999283
+21 0.000151582571561448
+22 0.000154285866301507
+23 0.000149940882693045
+24 0.000149011088069528
+25 0.000149501283885911
+26 0.000150724794366397
+27 0.000153334156493656
+28 0.000153044311446138
+29 0.000152363747474737
+30 0.000155124071170576
+31 0.000145100973895751
+32 0.000148090097354725
+33 0.000150086256326176
+34 0.000147859173011966
+35 0.000147819504491054
+36 0.000147913378896192
+37 0.000149317798786797
+38 0.000150959283928387
+39 0.000152315653394908
+40 0.000150522188050672
+41 0.000150707506691106
+42 0.000150953812408261
+43 0.000149147454067133
+44 0.000152923559653573
+45 0.000151357351569459
+46 0.000152928303577937
+47 0.000150934210978448
+48 0.000154087785631418
+49 0.000153095883433707
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000195226326468401
+1 0.000148259001434781
+2 0.000164438490173779
+3 0.000149025261634961
+4 0.000129541411297396
+5 0.000189846061402932
+6 0.000136264410684817
+7 0.000148872408317402
+8 0.000149073253851384
+9 0.000158833747263998
+10 0.000135795649839565
+11 0.000137939699925482
+12 0.000128459607367404
+13 0.00011728001118172
+14 0.000122420766274445
+15 0.000164318000315689
+16 0.000186200108146295
+17 0.000149274215800688
+18 0.000147514088894241
+19 0.00015153008280322
+20 0.000141737284138799
+21 0.000148591396282427
+22 0.000124237369163893
+23 0.000163480784976855
+24 0.000172595100593753
+25 0.000167318998137489
+26 0.000157733593368903
+27 0.000135382317239419
+28 0.00013206189032644
+29 0.000143466546433046
+30 0.0001246908941539
+31 0.00020716835570056
+32 0.000179589536855929
+33 0.000162173062562943
+34 0.000181814961251803
+35 0.000188376667210832
+36 0.00018318607180845
+37 0.000171231920830905
+38 0.000156065871124156
+39 0.000142576871439815
+40 0.000158203620230779
+41 0.000154780718730763
+42 0.000156883033923805
+43 0.000170753774000332
+44 0.000139197800308466
+45 0.000148389517562464
+46 0.000138306801090948
+47 0.000156493799295276
+48 0.00012885250907857
+49 0.000134685062221251
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006804786236842593, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006804786236842593, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..1deae28448dc07192a70d8d7dbae61e02fb3be5f
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006804786236842593, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006804786236842593, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006804786236842593, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..fbbd337111d7b09b4b663d0998e5a00d7272dde2
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006804786236842593, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.00243084782352e-08, ymax=0.000290501033168069,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000143518220284022
+1 8.84216024132911e-06
+2 2.31998933486466e-06
+3 9.63077923188393e-07
+4 6.06964533744758e-07
+5 4.28308482014472e-07
+6 3.13459196377153e-07
+7 2.53426776453125e-07
+8 2.0505065378984e-07
+9 1.77947043766835e-07
+10 1.56422643726728e-07
+11 1.35298279246854e-07
+12 1.19224040417976e-07
+13 1.08996623282565e-07
+14 9.85857937507717e-08
+15 8.92650504624726e-08
+16 8.24029129375958e-08
+17 7.51364410689348e-08
+18 7.30540321569606e-08
+19 6.48608207143297e-08
+20 6.18444317979083e-08
+21 5.43008873421513e-08
+22 5.5120715103385e-08
+23 5.02653385581198e-08
+24 4.94132414985415e-08
+25 4.5404735971033e-08
+26 4.24278816524293e-08
+27 4.24045865088374e-08
+28 4.05739193354293e-08
+29 3.65489718490153e-08
+30 3.5897528505302e-08
+31 3.31622658222841e-08
+32 3.23801643276056e-08
+33 3.16774553255073e-08
+34 3.02611411484577e-08
+35 2.91917583439272e-08
+36 2.82044698707296e-08
+37 2.72993663230636e-08
+38 2.75273812633259e-08
+39 2.75689373552268e-08
+40 2.48756499843239e-08
+41 2.45364297768447e-08
+42 2.40417143970717e-08
+43 2.17439275473907e-08
+44 2.17671765057048e-08
+45 2.17918270095652e-08
+46 2.11897841495556e-08
+47 2.12968629398347e-08
+48 2.01071479466464e-08
+49 1.9286442665134e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000153182641952299
+1 1.00806792033836e-05
+2 2.17096521737403e-06
+3 1.4240905557017e-06
+4 5.69053895560501e-07
+5 3.6146622051092e-07
+6 2.82333786572053e-07
+7 1.90919720921556e-07
+8 1.9822159913474e-07
+9 1.55003661461706e-07
+10 1.10441987999366e-07
+11 1.21458910484762e-07
+12 1.13834801140911e-07
+13 1.06834875168715e-07
+14 9.31027699380138e-08
+15 8.52393995387501e-08
+16 7.26369719927789e-08
+17 7.22401551911389e-08
+18 5.71104123991972e-08
+19 6.04178040930492e-08
+20 5.04407857704336e-08
+21 6.78340015269896e-08
+22 4.47764740840739e-08
+23 5.40134799109637e-08
+24 4.79613788684219e-08
+25 4.19476116064743e-08
+26 4.98901506773564e-08
+27 3.58524161470086e-08
+28 3.13492591885733e-08
+29 3.65927803613886e-08
+30 3.04420204599865e-08
+31 3.43776775935112e-08
+32 3.69968340407922e-08
+33 2.83321934801961e-08
+34 3.21492734656204e-08
+35 2.43663471621858e-08
+36 3.00177056544726e-08
+37 3.48394131322038e-08
+38 3.23323341433479e-08
+39 2.20182112542489e-08
+40 2.42887718826523e-08
+41 2.27043184253262e-08
+42 2.13385114022913e-08
+43 2.44567281981745e-08
+44 1.99489402774589e-08
+45 2.12317043946086e-08
+46 2.14293525147013e-08
+47 1.94667748587563e-08
+48 1.59910449326617e-08
+49 2.00174508080408e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000144029574585147
+1 0.000144690071465448
+2 0.000145138503285125
+3 0.000146306250826456
+4 0.000146305785165168
+5 0.00014751881826669
+6 0.000145998419611715
+7 0.000144305289722979
+8 0.000142883567605168
+9 0.000143097917316481
+10 0.000149054452776909
+11 0.000145955869811587
+12 0.000143377401400357
+13 0.000145258585689589
+14 0.000142644479637966
+15 0.000144395933602937
+16 0.000143960904097185
+17 0.000146088146721013
+18 0.000146228994708508
+19 0.000142042001243681
+20 0.00014365155948326
+21 0.00014472239126917
+22 0.00014523985737469
+23 0.000142775359563529
+24 0.000143061406561173
+25 0.00014849888975732
+26 0.000144788442412391
+27 0.000140393545734696
+28 0.000142229531775229
+29 0.000143726749229245
+30 0.000147253274917603
+31 0.000144349061883986
+32 0.000145840123877861
+33 0.000144496894790791
+34 0.000143298617331311
+35 0.000145143800182268
+36 0.000146384307299741
+37 0.00014513562200591
+38 0.000145695041283034
+39 0.000145087542477995
+40 0.000144259087392129
+41 0.000144465826451778
+42 0.000143584999023005
+43 0.000146670805406757
+44 0.000143135388498195
+45 0.000146827704156749
+46 0.000145204961881973
+47 0.000149055806105025
+48 0.0001447338872822
+49 0.000146989492350258
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000148713967064396
+1 0.00014224462211132
+2 0.000136163012939505
+3 0.000127698804135434
+4 0.00012833635264542
+5 0.000119385498692282
+6 0.000128856278024614
+7 0.000144765741424635
+8 0.000156232956214808
+9 0.000154647263116203
+10 0.000102571750176139
+11 0.000130955275380984
+12 0.000157103451783769
+13 0.000136798786115833
+14 0.000160052557475865
+15 0.000141870463266969
+16 0.000148039194755256
+17 0.00012696064368356
+18 0.000127836741739884
+19 0.000166507190442644
+20 0.00015084067126736
+21 0.000139115989441052
+22 0.000138150746352039
+23 0.000159837640239857
+24 0.000160438954480924
+25 0.000111517663754057
+26 0.00014520411787089
+27 0.000182106421561912
+28 0.00016306882025674
+29 0.00014927564188838
+30 0.00011907010775758
+31 0.000147778104292229
+32 0.000130447879200801
+33 0.00014447073044721
+34 0.000155059256940149
+35 0.000135828842758201
+36 0.000128575557027943
+37 0.000136082555400208
+38 0.000133250956423581
+39 0.000139777970616706
+40 0.000144527570228092
+41 0.000143170633236878
+42 0.000153277185745537
+43 0.000121177210530732
+44 0.000155383633682504
+45 0.000123315316159278
+46 0.000139782641781494
+47 0.000102033773146104
+48 0.000140790085424669
+49 0.000118185649625957
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006811623420983929, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006811623420983929, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..b1b9b7529fcdaf169bd20c162181476faa3bbec9
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006811623420983929, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006811623420983929, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006811623420983929, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..4c5ec18e7a34e75015d249758330d882a8350397
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006811623420983929, Learning_Process.tex	
@@ -0,0 +1,257 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.24290630890338e-06, ymax=0.0141047412258366,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000157534566824324
+1 1.90360224223696e-05
+2 9.31488393689506e-05
+3 0.000146741644130088
+4 8.01628484623507e-05
+5 0.000196133813005872
+6 0.00052818440599367
+7 0.000163481570780277
+8 0.00011204802285647
+9 9.05622655409388e-05
+10 7.28687809896655e-05
+11 5.98217884544283e-05
+12 5.1120816351613e-05
+13 4.5640943426406e-05
+14 3.96970826841425e-05
+15 3.45130683854222e-05
+16 3.19032733386848e-05
+17 2.84996312984731e-05
+18 2.58202198892832e-05
+19 2.39383170992369e-05
+20 2.14873707591323e-05
+21 2.02231549337739e-05
+22 1.88511912710965e-05
+23 1.78028167283628e-05
+24 1.69168852153234e-05
+25 1.56401638378156e-05
+26 1.48963044921402e-05
+27 1.42974922709982e-05
+28 1.3318966011866e-05
+29 1.27969587992993e-05
+30 1.23281342894188e-05
+31 1.16948212962598e-05
+32 1.1257674486842e-05
+33 1.05308681668248e-05
+34 1.04746886790963e-05
+35 9.73453279584646e-06
+36 9.51282254391117e-06
+37 9.25462609302485e-06
+38 8.91596755536739e-06
+39 8.60702311911155e-06
+40 8.16840838524513e-06
+41 7.89538262324641e-06
+42 7.88821944297524e-06
+43 7.53382755647181e-06
+44 7.23248649592279e-06
+45 7.05400952938362e-06
+46 6.8451604420261e-06
+47 6.83994312566938e-06
+48 6.43402427158435e-06
+49 6.24101903667906e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000141060911118984
+1 2.16386924876133e-05
+2 1.89999843769328e-06
+3 0.00922678224742413
+4 0.000925606058444828
+5 5.79144871153403e-05
+6 0.000498260371387005
+7 0.000196895896806382
+8 0.000135289781610481
+9 8.2318190834485e-05
+10 6.74289185553789e-05
+11 6.40745201963e-05
+12 5.22098962392192e-05
+13 4.91033424623311e-05
+14 3.22269734169822e-05
+15 3.61586680810433e-05
+16 2.65229027718306e-05
+17 2.79359574051341e-05
+18 2.5541492504999e-05
+19 2.2234215066419e-05
+20 2.6352790882811e-05
+21 2.1966563508613e-05
+22 2.09802237804979e-05
+23 1.89307465916499e-05
+24 1.60676136147231e-05
+25 1.8282971723238e-05
+26 1.51941294461722e-05
+27 1.30039543364546e-05
+28 1.54204299178673e-05
+29 1.2728116416838e-05
+30 1.16844785225112e-05
+31 1.19667156468495e-05
+32 1.09828315544291e-05
+33 1.40831198223168e-05
+34 9.49761215451872e-06
+35 1.12320412881672e-05
+36 1.09642342067673e-05
+37 8.72341115609743e-06
+38 8.78340779308928e-06
+39 8.35555965750245e-06
+40 9.00258601177484e-06
+41 9.34419858822366e-06
+42 7.48081220081076e-06
+43 8.08110053185374e-06
+44 8.02156318968628e-06
+45 7.31857608116115e-06
+46 7.4067315836146e-06
+47 5.62776767765172e-06
+48 7.32154148863629e-06
+49 7.33324804969016e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00015369153697975
+1 0.000158194874529727
+2 0.000145556303323247
+3 0.000152898879605345
+4 0.000156513749971054
+5 0.000151711981743574
+6 0.000159962757606991
+7 0.000159246686962433
+8 0.000157726724864915
+9 0.000150615989696234
+10 0.000155580579303205
+11 0.000156797847012058
+12 0.000159972827532329
+13 0.000154153152834624
+14 0.00015559556777589
+15 0.00015884950698819
+16 0.000153541201143526
+17 0.000155985631863587
+18 0.000155107118189335
+19 0.000159429095219821
+20 0.000157332324306481
+21 0.000153298198711127
+22 0.000158007969730534
+23 0.000154573106556199
+24 0.00015474962128792
+25 0.000159074043040164
+26 0.000154056047904305
+27 0.000159965507918969
+28 0.000151988060679287
+29 0.000156872876686975
+30 0.000156665701069869
+31 0.000154363326146267
+32 0.000151760541484691
+33 0.000156682159285992
+34 0.000152888882439584
+35 0.000156397043610923
+36 0.0001578563824296
+37 0.000158285431098193
+38 0.000159066359628923
+39 0.000155576184624806
+40 0.000154626250150613
+41 0.000154778841533698
+42 0.000155133428052068
+43 0.000148916282341816
+44 0.000156579932081513
+45 0.00015698853530921
+46 0.000156268375576474
+47 0.000154046298121102
+48 0.000155211557284929
+49 0.000157980641233735
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000165379387908615
+1 0.000138431249069981
+2 0.000241400077356957
+3 0.000177463633008301
+4 0.000147487633512355
+5 0.00018115749116987
+6 0.000115271126560401
+7 0.000121499484521337
+8 0.000133012959850021
+9 0.000202469716896303
+10 0.000153943969053216
+11 0.00014872697647661
+12 0.000121128141472582
+13 0.00016659518587403
+14 0.00015123984485399
+15 0.000127646533655934
+16 0.000172327374457382
+17 0.000150425345054828
+18 0.000158468945301138
+19 0.000119636606541462
+20 0.00014091981574893
+21 0.000173981636180542
+22 0.000134132322273217
+23 0.000166639409144409
+24 0.000164185752510093
+25 0.00012637885811273
+26 0.000167482910910621
+27 0.00011775844177464
+28 0.000188122488907538
+29 0.000139215830131434
+30 0.000140351156005636
+31 0.000164879456860945
+32 0.000187500540050678
+33 0.00014849888975732
+34 0.000172051630215719
+35 0.000141474403790198
+36 0.000130424159578979
+37 0.000128394298371859
+38 0.000121787496027537
+39 0.000150185980601236
+40 0.000164639714057557
+41 0.000161609714268707
+42 0.000152323467773385
+43 0.000212374638067558
+44 0.000140770862344652
+45 0.000144086196087301
+46 0.00014749335241504
+47 0.000169553299201652
+48 0.00015038184938021
+49 0.000135833193780854
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006819780885442803, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006819780885442803, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..c23cf3fa012ba1c7ecbcff53827ded35a0014825
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006819780885442803, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006819780885442803, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006819780885442803, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..e5a380adec568d716b1f5326ed4a50602046726c
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006819780885442803, Learning_Process.tex	
@@ -0,0 +1,261 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.03662417734284e-08, ymax=6509970115.82536,
+ymode=log,
+ytick style={color=black},
+ytick={1e-10,1e-08,1e-06,0.0001,0.01,1,100,10000,1000000,100000000,10000000000,1000000000000},
+yticklabels={
+  \(\displaystyle {10^{-10}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{0}}\),
+  \(\displaystyle {10^{2}}\),
+  \(\displaystyle {10^{4}}\),
+  \(\displaystyle {10^{6}}\),
+  \(\displaystyle {10^{8}}\),
+  \(\displaystyle {10^{10}}\),
+  \(\displaystyle {10^{12}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000140863368869759
+1 1.10472246888094e-05
+2 2.50653715738736e-06
+3 1.32748903070024e-06
+4 7.24562198683998e-07
+5 4.86686190015462e-07
+6 3.72922102087614e-07
+7 3.04611319279502e-07
+8 2.59434301597139e-07
+9 2.25931714226135e-07
+10 1.93275454307695e-07
+11 1.69381110026734e-07
+12 1.48395216115205e-07
+13 0.00093988748267293
+14 0.89190810918808
+15 0.919677078723907
+16 0.178233087062836
+17 0.174675077199936
+18 0.177501752972603
+19 0.177948594093323
+20 0.178265124559402
+21 0.176453158259392
+22 0.179152473807335
+23 0.180618464946747
+24 0.173881828784943
+25 0.175919279456139
+26 0.17864727973938
+27 0.175841733813286
+28 0.179970771074295
+29 0.177240058779716
+30 0.173762127757072
+31 0.174818396568298
+32 0.176842495799065
+33 0.177991196513176
+34 0.174327552318573
+35 0.173294574022293
+36 0.178069740533829
+37 0.176151841878891
+38 0.177697047591209
+39 0.177471473813057
+40 0.176710471510887
+41 0.176735013723373
+42 0.177878424525261
+43 0.175606071949005
+44 0.176452994346619
+45 0.173293024301529
+46 0.175156280398369
+47 0.177269473671913
+48 0.17510087788105
+49 0.174201935529709
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000141944605275057
+1 1.13353917186032e-05
+2 2.00921090254269e-06
+3 1.03857951216924e-06
+4 6.07979643518775e-07
+5 6.58402427688998e-07
+6 4.48678889597431e-07
+7 3.26010933804355e-07
+8 2.69550611164959e-07
+9 1.68436926628601e-07
+10 1.70058044091093e-07
+11 1.88988195759521e-07
+12 1.27226513768619e-07
+13 0.000565276714041829
+14 1042106880
+15 407.163543701172
+16 0.158146932721138
+17 0.189415857195854
+18 0.154424846172333
+19 0.163936957716942
+20 0.167607083916664
+21 0.178019493818283
+22 0.155433401465416
+23 0.142816334962845
+24 0.201730519533157
+25 0.176645368337631
+26 0.160453349351883
+27 0.183494582772255
+28 0.142120867967606
+29 0.178416177630424
+30 0.201393753290176
+31 0.190568089485168
+32 0.175966218113899
+33 0.171272903680801
+34 0.198845580220222
+35 0.206255152821541
+36 0.164255529642105
+37 0.185492396354675
+38 0.172507986426353
+39 0.169263526797295
+40 0.171850442886353
+41 0.185364961624146
+42 0.168713048100471
+43 0.183776870369911
+44 0.173066422343254
+45 0.207578659057617
+46 0.183997303247452
+47 0.168710336089134
+48 0.187456414103508
+49 0.193202838301659
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000141646669362672
+1 0.000139692798256874
+2 0.00014102112618275
+3 0.00014260302123148
+4 0.000140597054269165
+5 0.000142774457344785
+6 0.00014405143156182
+7 0.00014150959032122
+8 0.000144333491334692
+9 0.000142666598549113
+10 0.000139255556860007
+11 0.000141191485454328
+12 0.000141880213050172
+13 0.000140979638672434
+14 0.00013739634596277
+15 0.000141672979225405
+16 0.000142016913741827
+17 0.000140076852403581
+18 0.000141908574732952
+19 0.000143877943628468
+20 0.000140515359817073
+21 0.000141903117764741
+22 0.000137385475682095
+23 0.000138565141241997
+24 0.000142864024383016
+25 0.00014262882177718
+26 0.000137486029416323
+27 0.000139514260808937
+28 0.000140167670906521
+29 0.000142572040203959
+30 0.00013520527863875
+31 0.000140987380291335
+32 0.000142884338856675
+33 0.000142468081321567
+34 0.000143404118716717
+35 0.000143059718539007
+36 0.000141705706482753
+37 0.000141112628625706
+38 0.000138837174745277
+39 0.000143231824040413
+40 0.000139500800287351
+41 0.000142764183692634
+42 0.000142312259413302
+43 0.000141449840157293
+44 0.000138406438054517
+45 0.00014236026618164
+46 0.000142068587592803
+47 0.000137777591589838
+48 0.000145912548759952
+49 0.00013870200200472
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000137492883368395
+1 0.000155385278048925
+2 0.000137493116199039
+3 0.000127690029330552
+4 0.000145046389661729
+5 0.000128501356812194
+6 0.000114354770630598
+7 0.000139950556331314
+8 0.000113586851512082
+9 0.00013234127254691
+10 0.000162033393280581
+11 0.000143954253871925
+12 0.000135812282678671
+13 0.000142661534482613
+14 0.000176995410583913
+15 0.000134794448968023
+16 0.000133547786390409
+17 0.000154117486090399
+18 0.000131072520161979
+19 0.000116591509140562
+20 0.000151612752233632
+21 0.000133632085635327
+22 0.000170989951584488
+23 0.000171474253875203
+24 0.00012444936146494
+25 0.000132227898575366
+26 0.000173381078639068
+27 0.000157939764903858
+28 0.000146684615174308
+29 0.000129857085994445
+30 0.000192795516340993
+31 0.000140360512887128
+32 0.000129951673443429
+33 0.000151557775097899
+34 0.000121536133519839
+35 0.000125174410641193
+36 0.000142431585118175
+37 0.000143753932206891
+38 0.000163834483828396
+39 0.00012528442312032
+40 0.000157987931743264
+41 0.000127715364214964
+42 0.000130485685076565
+43 0.000138941366458312
+44 0.000166619938681833
+45 0.000135370442876592
+46 0.000135724068968557
+47 0.000167178906849585
+48 0.000101665304100607
+49 0.00016234906797763
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006843432176470111, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006843432176470111, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..e42a5bfab7af8db916f448af2eda88ebe0313d47
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006843432176470111, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006843432176470111, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006843432176470111, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..96f034793e49335d17221cc5f9a8382c389c2795
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006843432176470111, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.5,0.5)},
+  anchor=center,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.49971197577965e-08, ymax=0.000259444109003683,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000134010828332976
+1 8.36567141959677e-06
+2 2.37826543525443e-06
+3 1.29290640416002e-06
+4 7.38178584924754e-07
+5 5.35576759830292e-07
+6 4.27531517743773e-07
+7 3.44042774713671e-07
+8 2.8808517527068e-07
+9 2.44071031829662e-07
+10 2.10555015200953e-07
+11 1.87735167855863e-07
+12 1.65487733738701e-07
+13 1.51882105114964e-07
+14 1.56389575067806e-07
+15 1.23789448025491e-07
+16 1.17166010227265e-07
+17 1.03839440157572e-07
+18 9.7580510782791e-08
+19 9.34032300392573e-08
+20 8.43739726974491e-08
+21 7.78747448748618e-08
+22 7.54263353996976e-08
+23 6.84446277432471e-08
+24 6.54029292945779e-08
+25 6.06350738507899e-08
+26 6.00179106413634e-08
+27 5.65097586502361e-08
+28 5.68378020204818e-08
+29 5.14888824909576e-08
+30 4.91765312915504e-08
+31 4.89389222479986e-08
+32 4.66482461547457e-08
+33 4.32873861200278e-08
+34 4.60672353597147e-08
+35 4.0993889172114e-08
+36 3.88816374652379e-08
+37 3.89871281925025e-08
+38 3.73593813662865e-08
+39 3.56601503881393e-08
+40 3.30284919414225e-08
+41 3.27465308203045e-08
+42 3.21515329915201e-08
+43 3.03055252004469e-08
+44 3.13887511538269e-08
+45 2.89848891554811e-08
+46 3.17067510025026e-08
+47 2.75069425015317e-08
+48 2.75467151311659e-08
+49 2.78504863615581e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.00011110430205008
+1 8.02630984253483e-06
+2 2.29587567446288e-06
+3 1.26904410535644e-06
+4 6.16641898432135e-07
+5 5.35749450136791e-07
+6 3.27233294683538e-07
+7 3.24703734122522e-07
+8 2.88821041749543e-07
+9 2.717550557918e-07
+10 2.81062000340171e-07
+11 2.09747582857744e-07
+12 1.56601373646481e-07
+13 1.26980069126148e-07
+14 1.34844782451182e-07
+15 1.42698226568427e-07
+16 1.05443085374191e-07
+17 1.03716608634841e-07
+18 8.62058158190848e-08
+19 7.04925540162549e-08
+20 6.56961418599167e-08
+21 9.18009774864004e-08
+22 6.92564512405625e-08
+23 7.47232249409535e-08
+24 5.89791007143958e-08
+25 6.17206552533389e-08
+26 5.21664453856374e-08
+27 5.65667015450799e-08
+28 5.81374379748922e-08
+29 5.67112010685378e-08
+30 4.32437516906248e-08
+31 4.03497004697329e-08
+32 3.87440479698853e-08
+33 5.12154905152329e-08
+34 4.78746535748087e-08
+35 3.88405574369699e-08
+36 3.2229678481599e-08
+37 3.3210536543038e-08
+38 2.96113622511029e-08
+39 4.88139949084143e-06
+40 3.7464364055495e-08
+41 3.95123826990584e-08
+42 4.31953708357469e-08
+43 3.87881087249298e-08
+44 2.76227947182406e-08
+45 3.61214809174726e-08
+46 2.83106089682406e-08
+47 2.81182366279609e-08
+48 2.9738217222075e-08
+49 2.33693082662967e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000132171757286415
+1 0.000131328153656796
+2 0.000132032408146188
+3 0.000133764144266024
+4 0.000131997992866673
+5 0.000129895415739156
+6 0.000132654851768166
+7 0.000131676715682261
+8 0.00013445146032609
+9 0.000135717331431806
+10 0.000133482913952321
+11 0.000135533686261624
+12 0.000132238958030939
+13 0.00013266087626107
+14 0.000133502791868523
+15 0.000130099389934912
+16 0.000131572407553904
+17 0.000129261243273504
+18 0.000130781845655292
+19 0.000132172935991548
+20 0.000135094582219608
+21 0.000129550826386549
+22 0.000135152091388591
+23 0.000130621672724374
+24 0.000131740292999893
+25 0.000131884837173857
+26 0.000129242704133503
+27 0.000134558940771967
+28 0.000130505519337021
+29 0.000129222491523251
+30 0.00012943813635502
+31 0.000130128173623234
+32 0.000129858366562985
+33 0.000131353430333547
+34 0.00013307407789398
+35 0.00013345995103009
+36 0.000131780849187635
+37 0.000130958127556369
+38 0.000135437046992593
+39 0.000133866502437741
+40 0.000132733606733382
+41 0.000134797228383832
+42 0.00013301323633641
+43 0.000132878878503107
+44 0.000132357366965152
+45 0.000133520705276169
+46 0.000133156034280546
+47 0.000132796456455253
+48 0.00013093336019665
+49 0.000128075975226238
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000129408770590089
+1 0.000134502493892796
+2 0.000128696294268593
+3 0.000119790507596917
+4 0.000129563064547256
+5 0.000149085753946565
+6 0.000123882738989778
+7 0.000132979985210113
+8 0.000107325460703578
+9 9.60484831011854e-05
+10 0.000117661831609439
+11 0.000109448272269219
+12 0.000130689164507203
+13 0.000125718404888175
+14 0.00011600796278799
+15 0.000148124687257223
+16 0.000134112997329794
+17 0.000153805973241106
+18 0.000141133394208737
+19 0.000131209075334482
+20 0.000101570309197996
+21 0.000153692541061901
+22 0.000102326717751566
+23 0.000141933356644586
+24 0.000135124442749657
+25 0.00013043089711573
+26 0.000154450652189553
+27 0.000107345113065094
+28 0.000146059173857793
+29 0.000153492466779426
+30 0.000153106448124163
+31 0.000148394290590659
+32 0.000149946703459136
+33 0.000135773167130537
+34 0.00012099021114409
+35 0.000119712203741074
+36 0.000134621514007449
+37 0.000138931427500211
+38 0.000100369150459301
+39 0.00011594059469644
+40 0.000121412660519127
+41 0.000105399500171188
+42 0.000120270102343056
+43 0.000122246172395535
+44 0.000127617720863782
+45 0.000118153242510743
+46 0.000121081946417689
+47 0.000122838406241499
+48 0.000138231989694759
+49 0.000166496771271341
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006845888271564671, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006845888271564671, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..c98342985ee60333bc2ab29e5fb362bccc4421d6
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006845888271564671, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006845888271564671, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006845888271564671, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..3c5380a1dc3ddc4da6b677bfab42c322b8f18805
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006845888271564671, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.46930720331794e-08, ymax=0.000313434405985671,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000149167462950572
+1 8.03181228548056e-06
+2 4.55923373010592e-06
+3 1.74171816524904e-06
+4 1.05580295439722e-06
+5 7.17903617442062e-07
+6 5.29197166088125e-07
+7 4.34887567735132e-07
+8 3.38520010245702e-07
+9 2.95718820098045e-07
+10 2.53814107509243e-07
+11 2.19105203314029e-07
+12 1.93107254631286e-07
+13 1.73573994288745e-07
+14 1.56190949951451e-07
+15 1.37577529812916e-07
+16 1.32063320279485e-07
+17 1.1736662486328e-07
+18 1.13611655194745e-07
+19 1.01409895592042e-07
+20 9.24550320746675e-08
+21 8.72862884193637e-08
+22 8.0617027720109e-08
+23 7.79923041704933e-08
+24 6.91005368480546e-08
+25 6.74385276511202e-08
+26 6.37170813888588e-08
+27 5.97026712512161e-08
+28 5.70126168497609e-08
+29 5.33010933168043e-08
+30 5.2505075842646e-08
+31 4.86844626834682e-08
+32 4.74026222718749e-08
+33 4.59173357114651e-08
+34 4.39640714944289e-08
+35 4.21409716011567e-08
+36 4.16954684112625e-08
+37 3.9039008470354e-08
+38 3.67013726076948e-08
+39 3.72641508761262e-08
+40 3.51632074568897e-08
+41 3.35643512983097e-08
+42 3.23248023903489e-08
+43 3.19233102175076e-08
+44 2.92192510187306e-08
+45 3.05319147742011e-08
+46 2.78935061714947e-08
+47 2.73565952113586e-08
+48 2.71289621878168e-08
+49 2.69391069451785e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000135351423523389
+1 6.32154933555285e-06
+2 3.36485686602828e-06
+3 1.97169833882072e-06
+4 1.13367048015789e-06
+5 6.19470881702e-07
+6 5.27027282259951e-07
+7 3.48514475945194e-07
+8 4.25467618470066e-07
+9 2.7694346727003e-07
+10 2.09467586387291e-07
+11 2.06615979436719e-07
+12 1.89424071095345e-07
+13 1.63980146794529e-07
+14 1.27762845636425e-07
+15 1.75153033410425e-07
+16 1.17005562572103e-07
+17 1.10314772427955e-07
+18 8.88475142346579e-08
+19 9.08243293906708e-08
+20 9.00483811960839e-08
+21 7.43853547646722e-08
+22 7.96999302110635e-08
+23 6.62465282630365e-08
+24 8.69693295157958e-08
+25 6.28997867124781e-08
+26 6.18445099576093e-08
+27 5.4274643446206e-08
+28 5.43553149157106e-08
+29 6.45547402200464e-08
+30 4.44643220021135e-08
+31 5.01571086886088e-08
+32 4.08010087937782e-08
+33 4.37296208133375e-08
+34 3.90834600239032e-08
+35 4.41661995864706e-08
+36 4.58999025454432e-08
+37 6.33870556043803e-08
+38 3.9051396782952e-08
+39 3.13724335399002e-08
+40 3.54602818219973e-08
+41 3.37749206380522e-08
+42 3.14746380070119e-08
+43 2.87785475450164e-08
+44 3.88564664888236e-08
+45 2.71056084244492e-08
+46 2.84763910229913e-08
+47 3.33526948281815e-08
+48 3.09250083319057e-08
+49 2.31146266571614e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000145385536598042
+1 0.000152273933053948
+2 0.000147196114994586
+3 0.000145996338687837
+4 0.000145979429362342
+5 0.000149814819451421
+6 0.00014882127288729
+7 0.000146686739753932
+8 0.000146665392094292
+9 0.000148612554767169
+10 0.000156216934556141
+11 0.000148107748827897
+12 0.000145257465192117
+13 0.000141918615554459
+14 0.000147884420584887
+15 0.000149437895743176
+16 0.000151005500811152
+17 0.000149757295730524
+18 0.00015174200234469
+19 0.000148736900882795
+20 0.000148336213896982
+21 0.000145736776175909
+22 0.000145809870446101
+23 0.000149545376189053
+24 0.000144224599353038
+25 0.000145884318044409
+26 0.000145259269629605
+27 0.000148634033394046
+28 0.000147159298649058
+29 0.00015102481120266
+30 0.000145211059134454
+31 0.000149421466630884
+32 0.000148993989569135
+33 0.000150645370013081
+34 0.000147250655572861
+35 0.000149999003042467
+36 0.000149480692925863
+37 0.000151118278154172
+38 0.000148675564560108
+39 0.000149952378706075
+40 0.000148889012052678
+41 0.000146207792568021
+42 0.00014998743426986
+43 0.000147912985994481
+44 0.000149947984027676
+45 0.000147392638609745
+46 0.000145346741192043
+47 0.000147768019814976
+48 0.000146227379445918
+49 0.000150141000631265
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000169955965247937
+1 0.000107772233604919
+2 0.000152560052811168
+3 0.000164218901772983
+4 0.000161517789820209
+5 0.000126159080537036
+6 0.000137047478347085
+7 0.0001537613425171
+8 0.000159125265781768
+9 0.000140231670229696
+10 0.000149090061313473
+11 0.000143115859827958
+12 0.000168891463545151
+13 0.000199238100321963
+14 0.00014388223644346
+15 0.000133682609885
+16 0.000121088138257619
+17 0.000124936195788905
+18 0.000110352273622993
+19 0.00013714810484089
+20 0.000141351585625671
+21 0.000167785212397575
+22 0.000163240634719841
+23 0.000131366468849592
+24 0.000180139773874544
+25 0.000165163917699829
+26 0.000168623402714729
+27 0.000139591953484342
+28 0.000152721520862542
+29 0.00011897422518814
+30 0.000168964106705971
+31 0.000132713743369095
+32 0.000140707168611698
+33 0.000121203600428998
+34 0.000151533633470535
+35 0.000124159007100388
+36 0.000130583648569882
+37 0.000117571384180337
+38 0.000139271287480369
+39 0.000128769126604311
+40 0.000143393015605398
+41 0.000160395531565882
+42 0.00012785846774932
+43 0.00014503845886793
+44 0.000126705490401946
+45 0.000151317144627683
+46 0.00016768925706856
+47 0.000149374813190661
+48 0.000159804272698238
+49 0.000125041959108785
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00685643857455954, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00685643857455954, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..f92a173a1325dc73b61af19f44923613c96ff323
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00685643857455954, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00685643857455954, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00685643857455954, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..14985b31547bff69ea1af92257958a60845d3f48
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00685643857455954, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=6.63867421035354e-08, ymax=0.00023651346916371,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000126911676488817
+1 1.66678200912429e-05
+2 1.0441079211887e-05
+3 5.40540622750996e-06
+4 3.32586682816327e-06
+5 2.53174994213623e-06
+6 1.92966285794682e-06
+7 1.62504056788748e-06
+8 1.24273242363415e-06
+9 1.10392920760205e-06
+10 9.02261774626822e-07
+11 7.93116612385347e-07
+12 7.00829332345165e-07
+13 6.36527147435118e-07
+14 5.62819934657455e-07
+15 5.18229342105769e-07
+16 4.84023132685252e-07
+17 4.40421928260548e-07
+18 3.94509612533511e-07
+19 3.83927158509323e-07
+20 3.52711765572167e-07
+21 3.23804925983495e-07
+22 3.01551693837609e-07
+23 2.95205524025732e-07
+24 2.82185624200793e-07
+25 2.63531546806917e-07
+26 2.47583329837653e-07
+27 2.40197891798744e-07
+28 2.20919702087485e-07
+29 2.1894001633882e-07
+30 1.97965434267644e-07
+31 1.981786823535e-07
+32 1.90347336115337e-07
+33 1.8467279971901e-07
+34 1.7398090790266e-07
+35 1.6791233292679e-07
+36 1.58462825083916e-07
+37 1.49084740996841e-07
+38 1.52238072814725e-07
+39 1.42628579169468e-07
+40 1.32324686319407e-07
+41 1.35499305997655e-07
+42 2.25186994384785e-07
+43 1.2870992804892e-07
+44 1.20961701099986e-07
+45 1.18139197979872e-07
+46 1.1566685031994e-07
+47 1.13523512368374e-07
+48 1.10622742965916e-07
+49 1.08625137329454e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000145529033034109
+1 1.40560850923066e-05
+2 1.17123099698802e-05
+3 5.45150260222727e-06
+4 4.16430339100771e-06
+5 3.15659417537972e-06
+6 2.30094701691996e-06
+7 2.11139263228688e-06
+8 1.3761732589046e-06
+9 6.10422546287737e-07
+10 1.02057708772918e-06
+11 8.43200723465998e-07
+12 7.00779253293149e-07
+13 5.76728552914574e-07
+14 6.12685369105748e-07
+15 5.32926321739069e-07
+16 4.6284949917208e-07
+17 4.34705810903324e-07
+18 5.08403161347815e-07
+19 3.75961548115811e-07
+20 3.40984229296737e-07
+21 4.0125487998921e-07
+22 3.44172605082349e-07
+23 2.48524628432278e-07
+24 2.329488779651e-07
+25 2.40772948245649e-07
+26 2.89903709926875e-07
+27 2.08463831086192e-07
+28 2.44858682663107e-07
+29 1.96147880160424e-07
+30 2.48697091365102e-07
+31 1.79612683837149e-07
+32 1.66981237725849e-07
+33 1.53551226844684e-07
+34 1.515075922498e-07
+35 2.288390561489e-07
+36 1.7292458664997e-07
+37 2.01178067982255e-07
+38 1.29512713442637e-07
+39 1.4305811646409e-07
+40 1.93458944863778e-07
+41 1.1975150471244e-07
+42 9.62776880442107e-08
+43 1.19946008680927e-07
+44 1.27966174545691e-07
+45 1.39629023010457e-07
+46 1.17620878370417e-07
+47 1.28569226376385e-07
+48 1.11920705592183e-07
+49 1.12640286431542e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000134815840283409
+1 0.000127794948639348
+2 0.000131402252009138
+3 0.000131944470922463
+4 0.000132906570797786
+5 0.000126413069665432
+6 0.000131904351292178
+7 0.000129510794067755
+8 0.000129947438836098
+9 0.000127479957882315
+10 0.000126971746794879
+11 0.000126402315800078
+12 0.000129645617562346
+13 0.000129019128507935
+14 0.000132371991639957
+15 0.000130069543956779
+16 0.000130649714265019
+17 0.000129399268189445
+18 0.000128958752611652
+19 0.000129765787278302
+20 0.00013102576485835
+21 0.000129895750433207
+22 0.000125571605167352
+23 0.000131211592815816
+24 0.000131450244225562
+25 0.000129641834064387
+26 0.000129661872051656
+27 0.000130908272694796
+28 0.000127200633869506
+29 0.000129869004013017
+30 0.00013042327191215
+31 0.000132564251543954
+32 0.000127998500829563
+33 0.000128772750031203
+34 0.000131172229885124
+35 0.000126818820717745
+36 0.00013020534242969
+37 0.000124918486108072
+38 0.00012784160207957
+39 0.000129413354443386
+40 0.000126344893942587
+41 0.000129863401525654
+42 0.000127086954307742
+43 0.000128816696815193
+44 0.000129984939121641
+45 0.000126277082017623
+46 0.000129725565784611
+47 0.000130356987938285
+48 0.000126475861179642
+49 0.000128706466057338
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 8.25734095997177e-05
+1 0.000140377800562419
+2 0.000106769242847804
+3 0.000102406404039357
+4 9.30327369133011e-05
+5 0.000151672909851186
+6 0.000103654645499773
+7 0.000125309015857056
+8 0.00012019497808069
+9 0.000141273863846436
+10 0.000145014491863549
+11 0.000150770603795536
+12 0.000122810160974041
+13 0.000126878105220385
+14 9.78725947788917e-05
+15 0.000115311588160694
+16 0.000117835472337902
+17 0.000123836449347436
+18 0.000137786220875569
+19 0.000121152006613556
+20 0.000110052344098222
+21 0.000118400283099618
+22 0.000160136143676937
+23 0.000140266914968379
+24 0.000107070198282599
+25 0.000122500030556694
+26 0.000121801276691258
+27 0.000111936606117524
+28 0.000143269309774041
+29 0.000118544376164209
+30 0.000113358095404692
+31 9.71811969066039e-05
+32 0.000137349867145531
+33 0.000128890722407959
+34 0.000110187873360701
+35 0.000148662555147894
+36 0.000115975693915971
+37 0.000163084085215814
+38 0.00013820493768435
+39 0.000125518403365277
+40 0.000150648673297837
+41 0.000119597352750134
+42 0.000147166254464537
+43 0.000133455498144031
+44 0.000117290299385786
+45 0.000151791304233484
+46 0.000123351186630316
+47 0.00011601564619923
+48 0.000150592342833988
+49 0.00013284022861626
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006922751074379714, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006922751074379714, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..ddaf198d1f6adb17be6340f09f8f168e21686a41
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006922751074379714, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006922751074379714, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006922751074379714, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..9df262d67b87544f5e13674d1ba1069b1b2a1518
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006922751074379714, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.60821984960177e-06, ymax=0.000230946245209131,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000142834192956798
+1 8.76993271958781e-06
+2 5.49812239114544e-06
+3 0.000163300719577819
+4 4.5970271457918e-05
+5 2.98750928777736e-05
+6 2.30945443036035e-05
+7 2.07702742045512e-05
+8 1.69536742760101e-05
+9 1.51668527905713e-05
+10 1.41050459205871e-05
+11 1.22669334814418e-05
+12 1.11324225144926e-05
+13 1.01462992461165e-05
+14 9.14708107302431e-06
+15 8.87256101123057e-06
+16 8.09165976534132e-06
+17 7.59168597141979e-06
+18 7.05583443050273e-06
+19 6.84159340380575e-06
+20 6.45811633148696e-06
+21 5.96507788941381e-06
+22 5.72776070839609e-06
+23 5.53721201868029e-06
+24 5.26700114278356e-06
+25 4.87510988023132e-06
+26 4.77923140351777e-06
+27 4.60132559965132e-06
+28 4.37868857261492e-06
+29 4.18853096562088e-06
+30 4.07897186960327e-06
+31 3.89757587981876e-06
+32 3.75533295482455e-06
+33 3.67726970580406e-05
+34 3.41658483193896e-06
+35 3.49164747603936e-06
+36 3.27277098222112e-06
+37 3.146091785311e-06
+38 3.13655277750513e-06
+39 3.10647169499134e-06
+40 2.93873790724319e-06
+41 2.86971203422581e-06
+42 2.71785484073916e-06
+43 2.79656956081453e-06
+44 2.67600194092665e-06
+45 2.57748934018309e-06
+46 2.50655602940242e-06
+47 2.43153203882684e-06
+48 2.4565811145294e-06
+49 2.31159970098815e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000150268009747379
+1 7.64113246987108e-06
+2 4.12970211982611e-06
+3 0.000125483376905322
+4 4.33756322308909e-05
+5 3.218644997105e-05
+6 2.91147916868795e-05
+7 1.43578163260827e-05
+8 1.89250604307745e-05
+9 1.49038678500801e-05
+10 9.23516836337512e-06
+11 1.19301030281349e-05
+12 1.11529971036362e-05
+13 1.03898755696719e-05
+14 1.18180723802652e-05
+15 7.41719122743234e-06
+16 8.29352575237863e-06
+17 7.65478307584999e-06
+18 7.86022246757057e-06
+19 5.67150209462852e-06
+20 5.59134923605598e-06
+21 6.52653125143843e-06
+22 5.75778449274367e-06
+23 4.8112046897586e-06
+24 4.41717293142574e-06
+25 5.6108033277269e-06
+26 4.18343870478566e-06
+27 3.95137067243923e-06
+28 4.06805247621378e-06
+29 4.37590051660663e-06
+30 3.59246223524678e-06
+31 3.68613723367162e-06
+32 4.18329000240192e-06
+33 3.02726152767718e-06
+34 4.27722989115864e-06
+35 2.92340268970293e-06
+36 3.59817931894213e-06
+37 3.40760061590117e-06
+38 2.94002893497236e-06
+39 2.62863795796875e-06
+40 2.72983129434579e-06
+41 2.75996944765211e-06
+42 3.60899866791442e-06
+43 2.01557236323424e-06
+44 2.25971143663628e-06
+45 2.50468542617455e-06
+46 3.16567025038239e-06
+47 2.68210055764939e-06
+48 2.14552733268647e-06
+49 2.50669995693897e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00014337913307827
+1 0.000146569567732513
+2 0.000144023186294362
+3 0.000143720157211646
+4 0.000143505531013943
+5 0.000143209384987131
+6 0.000139058189233765
+7 0.000173877881024964
+8 0.00014042918337509
+9 0.000141204815008678
+10 0.00014564958109986
+11 0.000143911835039034
+12 0.000143551602377556
+13 0.000144193560117856
+14 0.000141775977681391
+15 0.000143657365697436
+16 0.000145832265843637
+17 0.000144307661685161
+18 0.000144410718348809
+19 0.000145673388033174
+20 0.000146998805576004
+21 0.000144673424074426
+22 0.000146061051054858
+23 0.000146402395330369
+24 0.000141979937325232
+25 0.000145695797982626
+26 0.000146441088872962
+27 0.000142903198138811
+28 0.000145963567774743
+29 0.000144032179377973
+30 0.00013993306492921
+31 0.00014603445015382
+32 0.00014481131802313
+33 0.000145270474604331
+34 0.000143923840369098
+35 0.000143272685818374
+36 0.000143574085086584
+37 0.000143590572406538
+38 0.000146071906783618
+39 0.000144304925925098
+40 0.000143328870763071
+41 0.000145628495374694
+42 0.000146371559822001
+43 0.000144449295476079
+44 0.000144183548400179
+45 0.000144885299960151
+46 0.000140886200824752
+47 0.000142520962981507
+48 0.000141720855026506
+49 0.00014309685502667
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000147153026773594
+1 0.000117673494969495
+2 0.000141401716973633
+3 0.000142331511597149
+4 0.00014874197950121
+5 0.000147395679960027
+6 0.000184271397301927
+7 0.000174343862454407
+8 0.000175613211467862
+9 0.000163586781127378
+10 0.000124912316096015
+11 0.000142812772537582
+12 0.000144188205013052
+13 0.000139392781420611
+14 0.000158863127580844
+15 0.000141838478157297
+16 0.000121231751109008
+17 0.00013603616389446
+18 0.000137199211167172
+19 0.000123396661365405
+20 0.000114472772111185
+21 0.000134352463646792
+22 0.00012108615192119
+23 0.00011785642709583
+24 0.000158557304530405
+25 0.00012493715621531
+26 0.000120463992061559
+27 0.000151567975990474
+28 0.000120142496598419
+29 0.000140257106977515
+30 0.000176299625309184
+31 0.000120804390462581
+32 0.000132635599584319
+33 0.000127679275465198
+34 0.000139219788252376
+35 0.000147208615089767
+36 0.000144769364851527
+37 0.000143493045470677
+38 0.000123106321552768
+39 0.000137828872539103
+40 0.000145780097227544
+41 0.000125355902127922
+42 0.000123268793686293
+43 0.000136414339067414
+44 0.000138377421535552
+45 0.000132841916638426
+46 0.000167636477272026
+47 0.000153997956658714
+48 0.000163704724400304
+49 0.000150521082105115
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006941415809436606, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006941415809436606, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..523887e2f2508cac1e44dbe18e9b51c407ac62b1
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006941415809436606, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006941415809436606, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006941415809436606, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..5b023e3be5ca55363cd330e1ce570e24af32dd5d
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006941415809436606, Learning_Process.tex	
@@ -0,0 +1,267 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.03,0.97)},
+  anchor=north west,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.90429053699828e-06, ymax=1172774920.60287,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-06,0.0001,0.01,1,100,10000,1000000,100000000,10000000000,1000000000000},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{0}}\),
+  \(\displaystyle {10^{2}}\),
+  \(\displaystyle {10^{4}}\),
+  \(\displaystyle {10^{6}}\),
+  \(\displaystyle {10^{8}}\),
+  \(\displaystyle {10^{10}}\),
+  \(\displaystyle {10^{12}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000138396717375144
+1 1.93815212696791e-05
+2 0.000577520928345621
+3 6.00205494265538e-05
+4 3.49029796780087e-05
+5 2.6279061785317e-05
+6 2.12465984077426e-05
+7 1.71712617884623e-05
+8 1.49282141137519e-05
+9 1.28987039715867e-05
+10 1.16602031994262e-05
+11 0.679498672485352
+12 0.99997740983963
+13 0.999945521354675
+14 0.999934732913971
+15 0.999917030334473
+16 0.99992710351944
+17 0.999929845333099
+18 0.999924421310425
+19 0.9999138712883
+20 0.999870419502258
+21 0.999905645847321
+22 0.999905586242676
+23 0.999897599220276
+24 0.999908328056335
+25 0.999898970127106
+26 0.999888479709625
+27 0.999969244003296
+28 0.999956607818604
+29 0.999888896942139
+30 0.99987119436264
+31 0.99987268447876
+32 0.999947905540466
+33 0.999861478805542
+34 0.999862790107727
+35 0.999858140945435
+36 0.999944865703583
+37 0.999837100505829
+38 0.999840319156647
+39 0.999827444553375
+40 0.999815404415131
+41 0.999816596508026
+42 0.999800801277161
+43 0.999812841415405
+44 0.999801635742188
+45 0.999782919883728
+46 0.999892175197601
+47 0.999792516231537
+48 0.999796807765961
+49 0.999772310256958
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000122447439935058
+1 2.33799546549562e-05
+2 8.95328412298113e-06
+3 3.88558255508542e-05
+4 3.96540490328334e-05
+5 3.05410467262845e-05
+6 2.09292538784212e-05
+7 2.02558694581967e-05
+8 1.54063454829156e-05
+9 1.35829686769284e-05
+10 9.50360117712989e-06
+11 9951543
+12 249439664
+13 26378936
+14 1194329.75
+15 796415.8125
+16 363697.09375
+17 769827.25
+18 421283.40625
+19 412450.84375
+20 143165.828125
+21 373746.71875
+22 619696.3125
+23 462966.90625
+24 41635.16796875
+25 658731.0625
+26 730604.9375
+27 683001
+28 153494.90625
+29 308669.5625
+30 193547.328125
+31 373545.96875
+32 355126.46875
+33 265569.34375
+34 325419.96875
+35 1122557.375
+36 116920.25
+37 292751.5
+38 146190.28125
+39 295824.40625
+40 161032.484375
+41 878585.5
+42 309574.0625
+43 528950.3125
+44 91695.3828125
+45 139021.875
+46 58705.57421875
+47 188117.234375
+48 208464.203125
+49 662688.9375
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000136600123369135
+1 0.000135010093799792
+2 0.00013684447912965
+3 0.000134042551508173
+4 0.000138594405143522
+5 0.000132082161144353
+6 0.000136628324980848
+7 0.000137015085783787
+8 0.000140141652082093
+9 0.00013642109115608
+10 0.00015400156553369
+11 0.000140894757350907
+12 0.000134442962007597
+13 0.000136321657919325
+14 0.000134533780510537
+15 0.000137599156005308
+16 0.000136904563987628
+17 0.000135575304739177
+18 0.00013696460518986
+19 0.000134779518702999
+20 0.000136115908389911
+21 0.000136535367346369
+22 0.000136050148284994
+23 0.000138717106892727
+24 0.000138387331389822
+25 0.000136789269163273
+26 0.000137513692607172
+27 0.000137035924126394
+28 0.000138975810841657
+29 0.000136286544147879
+30 0.000140268224640749
+31 0.000138510426040739
+32 0.000136935239424929
+33 0.000138228249852546
+34 0.000139316034619696
+35 0.000135735055664554
+36 0.000136991366161965
+37 0.00013722556468565
+38 0.000136226415634155
+39 0.000136086251586676
+40 0.000138367860927247
+41 0.000138268995215185
+42 0.000135125228553079
+43 0.000133220586576499
+44 0.000133217865368351
+45 0.000137154725962318
+46 0.000135504218633287
+47 0.00013747371849604
+48 0.00013629395107273
+49 0.000137639945023693
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000136962844408117
+1 0.000155155197717249
+2 0.000140264848596416
+3 0.000168865415616892
+4 0.000121762852359097
+5 0.000179301598109305
+6 0.00013427458179649
+7 0.000135531576233916
+8 0.000111197172373068
+9 0.000143810655572452
+10 0.000152790409629233
+11 0.000106217063148506
+12 0.000161850693984888
+13 0.000141464828629978
+14 0.000159640840138309
+15 0.00012925076589454
+16 0.000134857880766504
+17 0.000152659238665365
+18 0.000133460576762445
+19 0.000153848071931861
+20 0.000148646300658584
+21 0.000143840079545043
+22 0.000145988728036173
+23 0.000124337326269597
+24 0.000125120888696983
+25 0.000137483890284784
+26 0.000132436369312927
+27 0.000136983595439233
+28 0.000115003393148072
+29 0.000141845754114911
+30 0.000145702608278953
+31 0.000123985155369155
+32 0.000133875917526893
+33 0.000128927553305402
+34 0.000117057970783208
+35 0.00014623100287281
+36 0.000136498929350637
+37 0.000134387097205035
+38 0.000146197489812039
+39 0.000145464568049647
+40 0.000124542697449215
+41 0.000122846598969772
+42 0.000152888474985957
+43 0.000169863807968795
+44 0.000170539366081357
+45 0.000136243659653701
+46 0.000150774329085834
+47 0.000134983682073653
+48 0.000147991624544375
+49 0.000130368964164518
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006965209371007112, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006965209371007112, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..63f61c7164d6a3bc9f1accdcb78bb1a36a167955
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006965209371007112, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006965209371007112, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006965209371007112, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..116f993d2e693fe20cbc71fb84fb3d6b3ab66389
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006965209371007112, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.00963879424161e-08, ymax=0.00029951424394004,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000149786515976302
+1 1.40222127811285e-05
+2 6.5921303757932e-06
+3 3.09482243210368e-06
+4 1.95218922272034e-06
+5 1.46770253195427e-06
+6 1.04138700862677e-06
+7 8.63289471908502e-07
+8 7.29230521301361e-07
+9 6.20300340870017e-07
+10 5.23875428370957e-07
+11 4.65379059733095e-07
+12 4.09915912769065e-07
+13 3.67186061112079e-07
+14 3.26907155567824e-07
+15 2.96662960863614e-07
+16 2.82719014421673e-07
+17 2.49552272180154e-07
+18 2.22621551415614e-07
+19 2.07772657745409e-07
+20 1.94914093754051e-07
+21 1.82752316391088e-07
+22 1.69723563203661e-07
+23 1.62339659937061e-07
+24 1.51627872924109e-07
+25 1.45482800917307e-07
+26 1.40199745146674e-07
+27 1.29877889776253e-07
+28 1.25933283356972e-07
+29 1.16572920205726e-07
+30 1.11329690355433e-07
+31 1.04157820146611e-07
+32 1.03421413655269e-07
+33 1.04152711344341e-07
+34 9.60972315056097e-08
+35 9.00366927680807e-08
+36 9.0241933037305e-08
+37 8.88543425503485e-08
+38 8.44323864157559e-08
+39 8.13535834254253e-08
+40 7.53319753243886e-08
+41 7.31413294374761e-08
+42 7.06860632249118e-08
+43 6.83400145362612e-08
+44 6.61308234839453e-08
+45 6.4473127281417e-08
+46 6.62646257865163e-08
+47 6.73176643317674e-08
+48 5.81331001114904e-08
+49 5.75601220020872e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000141827535117045
+1 1.01554242064594e-05
+2 7.35271532903425e-06
+3 3.10794507640821e-06
+4 1.97919553102111e-06
+5 9.47258570249687e-07
+6 1.48500691921072e-06
+7 1.03080799362942e-06
+8 7.98362805198849e-07
+9 7.26670180029032e-07
+10 6.19897946307901e-07
+11 5.14380758431798e-07
+12 5.14666623985249e-07
+13 3.5609869541986e-07
+14 3.35302928533565e-07
+15 3.48643851566521e-07
+16 1.78431491804076e-07
+17 2.43982270831111e-07
+18 2.518158055409e-07
+19 2.14865465864023e-07
+20 1.99172106363221e-07
+21 2.1525454485527e-07
+22 1.8067696316848e-07
+23 1.6408861824857e-07
+24 1.90175612146959e-07
+25 1.30105505036227e-07
+26 1.2121300585477e-07
+27 1.1203513139435e-07
+28 1.15833415748057e-07
+29 1.28114677977464e-07
+30 9.14176254696031e-08
+31 1.22816018688354e-07
+32 1.16324272880775e-07
+33 9.56654986339345e-08
+34 7.75629800386923e-08
+35 9.13153712644998e-08
+36 7.74591413232883e-08
+37 7.10182561647343e-08
+38 7.21563893080202e-08
+39 7.10682570570498e-08
+40 8.66536922217165e-08
+41 7.16277241963326e-08
+42 6.71563498144678e-08
+43 7.49873478866903e-08
+44 6.78951650456838e-08
+45 6.39236787947084e-08
+46 6.37019965665786e-08
+47 4.57337954173909e-08
+48 5.90987490056705e-08
+49 5.82128727444342e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000148431048728526
+1 0.00014735187869519
+2 0.000149673127452843
+3 0.000150155261508189
+4 0.000148380742757581
+5 0.000146102407597937
+6 0.000149423052789643
+7 0.000144645659020171
+8 0.000149724670336582
+9 0.000151292697410099
+10 0.000148975959746167
+11 0.000153663553646766
+12 0.000151148778968491
+13 0.00014773613656871
+14 0.000146079750265926
+15 0.000144502148032188
+16 0.000148839128087275
+17 0.000145742058521137
+18 0.000149601182783954
+19 0.000151211381307803
+20 0.000149572297232226
+21 0.000149543862789869
+22 0.000151806903886609
+23 0.000150889871292748
+24 0.000148507213452831
+25 0.000145583981066011
+26 0.000145146084832959
+27 0.000146597216371447
+28 0.000150954670971259
+29 0.000146814913023263
+30 0.000144574281875975
+31 0.000149354411405511
+32 0.000148119346704334
+33 0.000149753381265327
+34 0.000148690523928963
+35 0.000151225322042592
+36 0.000151643136632629
+37 0.000147872677189298
+38 0.000147700295201503
+39 0.000148379622260109
+40 0.000149994768435135
+41 0.000149561878060922
+42 0.000145334546687081
+43 0.000144125879160129
+44 0.000149750238051638
+45 0.000148422332131304
+46 0.000147097191074863
+47 0.000146101767313667
+48 0.000149477637023665
+49 0.000149613450048491
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000150815190863796
+1 0.000161486197612248
+2 0.000139911659061909
+3 0.00013810078962706
+4 0.000152062566485256
+5 0.000171712221344933
+6 0.000141738288220949
+7 0.000186572768143378
+8 0.000136192233185284
+9 0.000126712679048069
+10 0.000154870751430281
+11 0.000103422142274212
+12 0.000127819817862473
+13 0.000155551402713172
+14 0.00017332703282591
+15 0.000186465331353247
+16 0.000147006241604686
+17 0.000174919608980417
+18 0.000139606490847655
+19 0.000126649611047469
+20 0.000141838259878568
+21 0.000142699951538816
+22 0.00012235133908689
+23 0.000130023603560403
+24 0.000155259069288149
+25 0.000197103625396267
+26 0.000181380499270745
+27 0.000168897662661038
+28 0.000133466746774502
+29 0.000169355873367749
+30 0.000185939876246266
+31 0.000147851562360302
+32 0.000153761866386048
+33 0.000140106698381715
+34 0.000150048668729141
+35 0.00012638776388485
+36 0.000123781122965738
+37 0.000157267786562443
+38 0.000156297566718422
+39 0.000148555540363304
+40 0.000137036986416206
+41 0.000141276410431601
+42 0.000178461399627849
+43 0.000192751875147223
+44 0.000140384247060865
+45 0.000152847773279063
+46 0.000165124118211679
+47 0.000170830637216568
+48 0.000142285745823756
+49 0.00014083253336139
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006966246642006603, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006966246642006603, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..6a60d38644014ab1c782167a2c6e20b6780041bd
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006966246642006603, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006966246642006603, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006966246642006603, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..644f63fab093053bb8f2e1a338b0304ddc128ed1
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006966246642006603, Learning_Process.tex	
@@ -0,0 +1,263 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=9.39798271545027e-07, ymax=0.000249239135965876,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000148110120790079
+1 2.43871527345618e-05
+2 0.00010879106412176
+3 4.7569857997587e-05
+4 2.34425388043746e-05
+5 1.52612192323431e-05
+6 1.31499518829514e-05
+7 1.09683260234306e-05
+8 9.75639795797179e-06
+9 9.48675733525306e-06
+10 8.3655340858968e-06
+11 7.47778722143266e-06
+12 6.59101078781532e-06
+13 6.11445511822239e-06
+14 5.42115503776586e-06
+15 4.98954204886104e-06
+16 4.63882679468952e-06
+17 4.3127342905791e-06
+18 4.04149750465876e-06
+19 3.77353649128054e-06
+20 3.64589391210757e-06
+21 3.2846348858584e-06
+22 3.176998689014e-06
+23 3.01099566968333e-06
+24 2.92714207716926e-06
+25 2.70781583822099e-06
+26 2.59990224549256e-06
+27 2.44166767515708e-06
+28 2.40734743783833e-06
+29 2.26038469008927e-06
+30 2.17888032238989e-06
+31 2.07941661756195e-06
+32 1.95066218111606e-06
+33 1.991438011828e-06
+34 1.88800208889006e-06
+35 1.86209865660203e-06
+36 1.88458091088251e-06
+37 1.74368801708624e-06
+38 1.65888866376918e-06
+39 1.61631930950534e-06
+40 1.57095678332553e-06
+41 1.55786437971983e-06
+42 1.50194478010235e-06
+43 1.46417005453259e-06
+44 1.53313487771811e-06
+45 1.39385156217031e-06
+46 1.32586478684971e-06
+47 1.29264742554369e-06
+48 1.25671874684485e-06
+49 1.21927621421491e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.00016206938016694
+1 3.00139799946919e-05
+2 9.00185186765157e-05
+3 3.18704769597389e-05
+4 1.76583307620604e-05
+5 1.76916364580393e-05
+6 1.1509464457049e-05
+7 1.25595051940763e-05
+8 9.89564705378143e-06
+9 8.89575312612578e-06
+10 7.79952097218484e-06
+11 6.26878545517684e-06
+12 6.51939490126097e-06
+13 4.76230343338102e-06
+14 5.3963753998687e-06
+15 4.89858666696819e-06
+16 4.67913105239859e-06
+17 4.4338517000142e-06
+18 3.74580463358143e-06
+19 3.83740280085476e-06
+20 2.8440838377719e-06
+21 3.93377331420197e-06
+22 3.33307775690628e-06
+23 3.18594879900047e-06
+24 2.44666784965375e-06
+25 2.89855393020844e-06
+26 2.67990162683418e-06
+27 3.22490086546168e-06
+28 2.23649180952634e-06
+29 2.4918861072365e-06
+30 2.41861357608286e-06
+31 2.56397811426723e-06
+32 2.84609541267855e-06
+33 1.77594301931094e-06
+34 2.19178104998718e-06
+35 1.6496904891028e-06
+36 1.63435981903604e-06
+37 1.53486860199337e-06
+38 1.73969317529554e-06
+39 1.66399240697501e-06
+40 1.59302544489037e-06
+41 1.21114862849936e-06
+42 1.30311195789545e-06
+43 1.21762661819957e-06
+44 1.52181451085198e-06
+45 1.22296626159368e-06
+46 1.3396910389929e-06
+47 1.29103761992155e-06
+48 1.28176895941579e-06
+49 1.34923845962476e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000145059879287146
+1 0.00015055930998642
+2 0.000150430394569412
+3 0.000149544765008613
+4 0.000146964797750115
+5 0.000149207655340433
+6 0.000150950625538826
+7 0.000151223066495731
+8 0.000149897881783545
+9 0.000148348073707893
+10 0.00014650214870926
+11 0.000150948952068575
+12 0.000150108666275628
+13 0.000150311476318166
+14 0.000149578059790656
+15 0.00014789575652685
+16 0.00014922946866136
+17 0.000152120992424898
+18 0.000150539301102981
+19 0.000148805818753317
+20 0.000152060281834565
+21 0.000149214669363573
+22 0.000149388142745011
+23 0.000153265398694202
+24 0.000146254562423564
+25 0.000143943936564028
+26 0.000150400534039363
+27 0.000146825375850312
+28 0.000150751162436791
+29 0.000150286490679719
+30 0.000146891819895245
+31 0.000150604391819797
+32 0.000145010519190691
+33 0.000151616608491167
+34 0.000144265053677373
+35 0.000148854174767621
+36 0.000148796403664164
+37 0.000148386345244944
+38 0.000148121733218431
+39 0.000148677587276325
+40 0.000149313986185007
+41 0.000150172360008582
+42 0.000149267143569887
+43 0.000151950938743539
+44 0.000150307110743597
+45 0.000148198814713396
+46 0.000149520114064217
+47 0.000148157225339673
+48 0.000144721794640645
+49 0.000148562496178783
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000183620199095458
+1 0.000139663126901723
+2 0.000136987917358056
+3 0.000154184672283009
+4 0.000166557321790606
+5 0.000150157153257169
+6 0.000135633439640515
+7 0.000135245893034153
+8 0.000141895681736059
+9 0.000146982027217746
+10 0.000173855369212106
+11 0.000137589828227647
+12 0.000143485405715182
+13 0.000139976575155742
+14 0.000143077500979416
+15 0.000158687107614242
+16 0.000145321551826783
+17 0.000127867926494218
+18 0.000133468231069855
+19 0.000150419364217669
+20 0.000118972056952771
+21 0.000144168850965798
+22 0.000138755698571913
+23 0.000149753017467447
+24 0.000173912805621512
+25 0.000193398649571463
+26 0.000135560039780103
+27 0.000166338591952808
+28 0.000131963912281208
+29 0.000139408497489057
+30 0.000168191822012886
+31 0.000138480783789419
+32 0.000181384719326161
+33 0.000129285544971935
+34 0.000191851504496299
+35 0.000150287669384852
+36 0.00015347360749729
+37 0.000159221031935886
+38 0.000159400820848532
+39 0.000156575420987792
+40 0.00014976218517404
+41 0.000139576513902284
+42 0.000145732876262628
+43 0.000125283026136458
+44 0.000141770389745943
+45 0.000156152484123595
+46 0.000140094998641871
+47 0.000161394971655682
+48 0.000191085200640373
+49 0.000155749017721973
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006998782494912455, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006998782494912455, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..8102d100f4535a1faf10601bd6bce9dde66f5fe8
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006998782494912455, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006998782494912455, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006998782494912455, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..de0c323d353fc3aa1237bac1bc43e0f4f0b10fdb
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.006998782494912455, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.60648991018383e-08, ymax=0.000303650044454758,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000160678711836226
+1 1.35605278046569e-05
+2 3.15178681375983e-06
+3 2.01618490791589e-06
+4 9.73117266767076e-07
+5 7.13911958882818e-07
+6 5.04437878134922e-07
+7 4.02081042238933e-07
+8 3.22011459275018e-07
+9 2.78148633015007e-07
+10 2.35099861356503e-07
+11 2.09612920798463e-07
+12 1.83301310130446e-07
+13 1.64998652962822e-07
+14 1.53629187593651e-07
+15 1.39320064818094e-07
+16 1.22198855478928e-07
+17 1.14454635991024e-07
+18 1.08976458079724e-07
+19 9.82666534810051e-08
+20 9.31642034629476e-08
+21 8.48690788757267e-08
+22 8.00037867065839e-08
+23 7.58990381655167e-08
+24 7.21143962323367e-08
+25 6.75071163414032e-08
+26 6.40455795064554e-08
+27 6.1093906822407e-08
+28 5.93376299207193e-08
+29 5.46325651384905e-08
+30 5.35772493037712e-08
+31 5.01455019730201e-08
+32 4.91699410076762e-08
+33 4.68249510277019e-08
+34 4.45861410014459e-08
+35 4.31571614001314e-08
+36 4.02583424374825e-08
+37 3.87269913915134e-08
+38 3.80132902932928e-08
+39 3.55432341336837e-08
+40 3.55225537873594e-08
+41 3.50460211961945e-08
+42 3.35443317567297e-08
+43 3.24141886665075e-08
+44 3.12655856760102e-08
+45 3.03890352881808e-08
+46 2.88141421833643e-08
+47 2.85857222337427e-08
+48 2.78251981455924e-08
+49 2.78093477135144e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000132370070787147
+1 1.38164150484954e-05
+2 2.11971018870827e-06
+3 1.54671431573661e-06
+4 1.51721155816631e-06
+5 5.22239361089305e-07
+6 4.64275132117109e-07
+7 3.38451940251616e-07
+8 3.34393831735724e-07
+9 2.43435124502867e-07
+10 2.57235029721414e-07
+11 1.95054653318039e-07
+12 1.98124510575326e-07
+13 1.79264233679532e-07
+14 1.37410225420354e-07
+15 1.45545826057969e-07
+16 1.42084715548663e-07
+17 1.16540398664711e-07
+18 1.06726908200017e-07
+19 1.10288773669254e-07
+20 9.06735806438519e-08
+21 9.2858236655502e-08
+22 8.60040714201205e-08
+23 9.10776449813966e-08
+24 6.35484624922356e-08
+25 5.77890162389849e-08
+26 6.51347065172558e-08
+27 6.75858444765254e-08
+28 6.65384973785876e-08
+29 4.93915557342461e-08
+30 4.56709017271351e-08
+31 4.69665977220757e-08
+32 4.56723014963245e-08
+33 5.53162990968303e-08
+34 4.34032259022388e-08
+35 5.60167841001658e-08
+36 4.70230361315771e-08
+37 3.52923343882594e-08
+38 3.06192085020029e-08
+39 3.8648618527759e-08
+40 2.95619777546108e-08
+41 3.32555565307757e-08
+42 3.10249959056819e-08
+43 3.21507229728013e-08
+44 2.68164139782812e-08
+45 2.913046159847e-08
+46 3.22932933727316e-08
+47 3.03644966948013e-08
+48 2.84599206423763e-08
+49 2.51341472079503e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000158126960741356
+1 0.000155495668877847
+2 0.000160147072165273
+3 0.000157489732373506
+4 0.000157300484715961
+5 0.000161171454237774
+6 0.000158309529069811
+7 0.000156443202286027
+8 0.00016034985310398
+9 0.000158022361574695
+10 0.000156543246703222
+11 0.000157604619744234
+12 0.000158149880007841
+13 0.000156831636559218
+14 0.000158393595484085
+15 0.000157052345457487
+16 0.000159673669259064
+17 0.000158467577421106
+18 0.000158917711814865
+19 0.000156945563503541
+20 0.000160677387611941
+21 0.000159843897563405
+22 0.000157225804287009
+23 0.000157152942847461
+24 0.000159288465511054
+25 0.000157761562149972
+26 0.000157615198986605
+27 0.000159853414515965
+28 0.000158823953825049
+29 0.000159220566274598
+30 0.000158338050823659
+31 0.000158565235324204
+32 0.000158126073074527
+33 0.000158787603140809
+34 0.000156095979036763
+35 0.000159087270731106
+36 0.000158102950081229
+37 0.000158363531227224
+38 0.000158477036166005
+39 0.000154704248416238
+40 0.000157189118908718
+41 0.000156324822455645
+42 0.000157990274601616
+43 0.000155663932673633
+44 0.000158136448590085
+45 0.00015898238052614
+46 0.000156132038682699
+47 0.000156139954924583
+48 0.000153569009853527
+49 0.000157443850184791
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000155971894855611
+1 0.000179666210897267
+2 0.000137168142828159
+3 0.000160220559337176
+4 0.000164293684065342
+5 0.000127340026665479
+6 0.000154819193994626
+7 0.000172752377693541
+8 0.000139613446663134
+9 0.000158302864292637
+10 0.000173360036569647
+11 0.00016043423966039
+12 0.00015565101057291
+13 0.000166707075550221
+14 0.000153720378875732
+15 0.000166212572366931
+16 0.000141208336572163
+17 0.000152369131683372
+18 0.000148480743519031
+19 0.000167850739671849
+20 0.000133510475279763
+21 0.000141272088512778
+22 0.000162537326104939
+23 0.000165079705766402
+24 0.000144000397995114
+25 0.000157279195263982
+26 0.000160979645443149
+27 0.000138715506182052
+28 0.000149359271745197
+29 0.000145245139719918
+30 0.000153321467223577
+31 0.00014940369874239
+32 0.000154666049638763
+33 0.000147914412082173
+34 0.000174255852471106
+35 0.000149275452713482
+36 0.000154823763296008
+37 0.000154548091813922
+38 0.000158466820721515
+39 0.000189006372238509
+40 0.000163602977409028
+41 0.000171931911609136
+42 0.000157285976456478
+43 0.000180000977707095
+44 0.000168081300216727
+45 0.000149616724229418
+46 0.000174473723745905
+47 0.000174265282112174
+48 0.000194082866073586
+49 0.00016194889030885
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007023509934990742, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007023509934990742, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..d79c85707d53a00fd116c2b0e675bf8e46ae8aba
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007023509934990742, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007023509934990742, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007023509934990742, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..ed1164e70e16923c16db9f55edef16763a24caa8
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007023509934990742, Learning_Process.tex	
@@ -0,0 +1,257 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.97186750275145e-06, ymax=0.0422929542093309,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000146720354678109
+1 1.26715922306175e-05
+2 8.42041117721237e-05
+3 1.89058573596412e-05
+4 0.00220925733447075
+5 0.000177563691977412
+6 5.89648079767358e-05
+7 4.12098561355378e-05
+8 3.35262157022953e-05
+9 2.77924355032155e-05
+10 2.46238323597936e-05
+11 2.24753748625517e-05
+12 2.00224021682516e-05
+13 1.8156441001338e-05
+14 1.61583975568647e-05
+15 1.49551624417654e-05
+16 1.39298063004389e-05
+17 1.27739031086094e-05
+18 1.19815540529089e-05
+19 1.1400603398215e-05
+20 1.04156761153718e-05
+21 1.02277281257557e-05
+22 9.47943863138789e-06
+23 9.08036872715456e-06
+24 8.71961765369633e-06
+25 8.26869109005202e-06
+26 8.11214795248816e-06
+27 7.75217540649464e-06
+28 7.24833762433263e-06
+29 7.17315606379998e-06
+30 6.89700846123742e-06
+31 6.42985878585023e-06
+32 6.35996457276633e-06
+33 6.17764408161747e-06
+34 5.73820079807774e-06
+35 5.75614558329107e-06
+36 5.59165846425458e-06
+37 5.39018492418109e-06
+38 5.21905258210609e-06
+39 5.17043326908606e-06
+40 5.02380498801358e-06
+41 4.87992929265602e-06
+42 4.53579013992567e-06
+43 4.46240710516577e-06
+44 4.5434508137987e-06
+45 4.35574156654184e-06
+46 4.31241096521262e-06
+47 4.15138583775843e-06
+48 4.05393393521081e-06
+49 4.07038669436588e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000166761936270632
+1 1.36403396027163e-05
+2 4.02584237235715e-06
+3 0.0268773622810841
+4 9.88730607787147e-06
+5 0.000124577258247882
+6 5.16832769790199e-05
+7 4.05190294259228e-05
+8 3.18274214805569e-05
+9 3.17539343086537e-05
+10 2.46259205596289e-05
+11 1.75370751094306e-05
+12 1.68669230333762e-05
+13 1.49273737406475e-05
+14 1.70524344866863e-05
+15 1.52648153743939e-05
+16 1.36617954922258e-05
+17 1.49371962834266e-05
+18 1.32300046971068e-05
+19 1.14990689326078e-05
+20 1.39405765366973e-05
+21 9.3944372565602e-06
+22 1.11419740278507e-05
+23 1.010725281958e-05
+24 8.64718185766833e-06
+25 9.0534031187417e-06
+26 8.50530250318116e-06
+27 6.32910678177723e-06
+28 8.45478189148707e-06
+29 6.54307814329513e-06
+30 5.5333157433779e-06
+31 7.43634836908313e-06
+32 6.26031487627188e-06
+33 5.40462997378199e-06
+34 8.1140669863089e-06
+35 5.69235953662428e-06
+36 5.15020747116068e-06
+37 5.50037157154293e-06
+38 5.85333464186988e-06
+39 4.44227543994202e-06
+40 4.09075664720149e-06
+41 4.10208076573326e-06
+42 5.93796949033276e-06
+43 5.34930450157844e-06
+44 4.10331267630681e-06
+45 4.19097659687395e-06
+46 3.42430575983599e-06
+47 4.01721035814262e-06
+48 4.08323694500723e-06
+49 3.10283803628408e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000147213359014131
+1 0.000150493215187453
+2 0.000150283507537097
+3 0.000148644496221095
+4 0.000143015407957137
+5 0.000151965054101311
+6 0.000146844555274583
+7 0.00014605006435886
+8 0.000152844135300256
+9 0.000147324317367747
+10 0.000149121522554196
+11 0.0001497057673987
+12 0.000145368408993818
+13 0.000150115229189396
+14 0.000151903062942438
+15 0.000146366190165281
+16 0.000147727303556167
+17 0.000150585037772544
+18 0.000151099739014171
+19 0.000148949024151079
+20 0.000148179402458481
+21 0.000151872300193645
+22 0.000147224331158213
+23 0.000147204147651792
+24 0.000148027800605632
+25 0.000150072562973946
+26 0.000146422884427011
+27 0.000148531325976364
+28 0.000150307707372122
+29 0.000150880048749968
+30 0.000149074287037365
+31 0.000148947292473167
+32 0.00015275104669854
+33 0.00014719195314683
+34 0.00014875853958074
+35 0.000145920406794176
+36 0.000144690842716955
+37 0.000146150254295208
+38 0.00015207429532893
+39 0.000145250276545994
+40 0.000145371275721118
+41 0.000152003412949853
+42 0.000149362793308683
+43 0.000150912324897945
+44 0.000145552519825287
+45 0.000146514328662306
+46 0.000150370207848027
+47 0.000147888640640303
+48 0.000145938058267348
+49 0.000147316211950965
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000160926676471718
+1 0.000132907429360785
+2 0.000132505432702601
+3 0.000151774365804158
+4 0.000200013193534687
+5 0.000118827498226892
+6 0.000166923651704565
+7 0.000174392000189982
+8 0.000111382934846915
+9 0.000154743160237558
+10 0.000143901837873273
+11 0.000138943665660918
+12 0.000179590642801486
+13 0.000136343398480676
+14 0.000119789874588605
+15 0.000169847466167994
+16 0.000157407819642685
+17 0.000134799091028981
+18 0.000127767576486804
+19 0.0001447482209187
+20 0.000151503278175369
+21 0.000119917349366006
+22 0.000163667864399031
+23 0.0001622809068067
+24 0.000156098671141081
+25 0.000137548107886687
+26 0.000168499434948899
+27 0.000149984742165543
+28 0.000133748078951612
+29 0.000128642030176707
+30 0.00014789831766393
+31 0.000146643549669534
+32 0.000113580004835967
+33 0.000162512616952881
+34 0.00014738917525392
+35 0.000172927844687365
+36 0.00018678633205127
+37 0.000170803890796378
+38 0.000117368821520358
+39 0.000182431802386418
+40 0.000180515402462333
+41 0.000124883750686422
+42 0.000144278834341094
+43 0.000129178588395007
+44 0.00017797619511839
+45 0.0001662820141064
+46 0.000135098001919687
+47 0.000155739369802177
+48 0.00017429182480555
+49 0.000163027856615372
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007025649295901669, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007025649295901669, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..747cf0865b78c2d45533babeb9eedcc4d28581c0
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007025649295901669, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007025649295901669, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007025649295901669, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..be6ca118f0e2d8188960f235f2b16425e3df2257
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007025649295901669, Learning_Process.tex	
@@ -0,0 +1,256 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=6.60779200539105e-06, ymax=0.00544077384283505,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000131205568322912
+1 1.62599717441481e-05
+2 2.8516313250293e-05
+3 6.75182891427539e-05
+4 0.00400989688932896
+5 0.000236413587117568
+6 0.000181574752787128
+7 0.000118131079943851
+8 8.95386983756907e-05
+9 7.75458902353421e-05
+10 6.79161312291399e-05
+11 5.89282426517457e-05
+12 5.17517037224025e-05
+13 4.6205324906623e-05
+14 4.27095437771641e-05
+15 4.00858480134048e-05
+16 3.71772548533045e-05
+17 3.46138695022091e-05
+18 3.18068123306148e-05
+19 2.96540547424229e-05
+20 2.8259903047001e-05
+21 2.6807018002728e-05
+22 2.55077957262984e-05
+23 2.40515691984911e-05
+24 2.28771914407844e-05
+25 2.19803150685038e-05
+26 2.08165711228503e-05
+27 1.97986100829439e-05
+28 1.86621346074389e-05
+29 1.89698748727096e-05
+30 1.79427152033895e-05
+31 1.72952331922716e-05
+32 1.6172214600374e-05
+33 1.56080423039384e-05
+34 1.5145335055422e-05
+35 1.48075205288478e-05
+36 1.37014631036436e-05
+37 1.39138728627586e-05
+38 1.32181776280049e-05
+39 1.30699900182663e-05
+40 1.24515063362196e-05
+41 1.19038895718404e-05
+42 1.12203751996276e-05
+43 1.1307658496662e-05
+44 1.09794937088736e-05
+45 1.08026561065344e-05
+46 1.06619645521278e-05
+47 1.00374745670706e-05
+48 1.00119150374667e-05
+49 9.32268631004263e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000131732012960128
+1 2.4455559469061e-05
+2 2.34071685554227e-05
+3 6.02662003075238e-05
+4 0.000122501005535014
+5 0.000211357473745011
+6 0.0001789552916307
+7 0.000121712291729636
+8 0.000112502391857561
+9 7.19810050213709e-05
+10 5.6765420595184e-05
+11 5.82432039664127e-05
+12 5.64294641662855e-05
+13 5.71451964788139e-05
+14 4.4213102228241e-05
+15 3.32715244439896e-05
+16 3.60833073500544e-05
+17 2.92308377538575e-05
+18 3.04654586216202e-05
+19 3.02776297758101e-05
+20 2.6359984985902e-05
+21 2.33336231758585e-05
+22 2.4452174329781e-05
+23 2.14561332541052e-05
+24 1.94592957996065e-05
+25 1.77651327248896e-05
+26 1.84071486728499e-05
+27 1.76510056917323e-05
+28 1.8884193195845e-05
+29 2.04895477509126e-05
+30 1.99045607587323e-05
+31 1.57321828737622e-05
+32 1.84266591531923e-05
+33 1.68830829352373e-05
+34 1.52530474224477e-05
+35 1.26676959553151e-05
+36 1.74249908013735e-05
+37 1.14628510345938e-05
+38 1.37063389047398e-05
+39 9.36761352932081e-06
+40 1.1055911272706e-05
+41 1.27147432067432e-05
+42 1.45520816658973e-05
+43 1.15375587483868e-05
+44 1.12506440927973e-05
+45 9.55945415626047e-06
+46 8.96569235919742e-06
+47 1.09501561382785e-05
+48 9.27287510421593e-06
+49 1.22990022646263e-05
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000132575310999528
+1 0.000129839332657866
+2 0.000127547900774516
+3 0.000133367735543288
+4 0.000130083906697109
+5 0.000133986381115392
+6 0.000130936357891187
+7 0.00013232693891041
+8 0.000133168519823812
+9 0.000128296043840237
+10 0.000129078442114405
+11 0.000126830622320995
+12 0.000131816268549301
+13 0.000129341322463006
+14 0.000129331878270023
+15 0.000131417880766094
+16 0.000132697517983615
+17 0.00013187451986596
+18 0.000129558291519061
+19 0.000130447850096971
+20 0.000128566491184756
+21 0.000131673732539639
+22 0.000131346998387016
+23 0.000130169137264602
+24 0.000127160019474104
+25 0.000130923217511736
+26 0.000128850719192997
+27 0.00013341564044822
+28 0.000134679023176432
+29 0.000132016110001132
+30 0.000129668580484577
+31 0.00013065901293885
+32 0.000130553511553444
+33 0.00012945759226568
+34 0.000132590677822009
+35 0.000131578752188943
+36 0.000129276420921087
+37 0.000129348991322331
+38 0.000131536638946272
+39 0.000129292384372093
+40 0.000130572589114308
+41 0.000129709398606792
+42 0.000131084438180551
+43 0.000130216591060162
+44 0.000127986320876516
+45 0.000127001971122809
+46 0.000131539243739098
+47 0.000132041241158731
+48 0.000134640984470025
+49 0.000129688007291406
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000127698527649045
+1 0.000146372869494371
+2 0.000165683173690923
+3 0.000113203073851764
+4 0.000142718563438393
+5 0.000111150344309863
+6 0.000135447073262185
+7 0.000123106248793192
+8 0.000115417598863132
+9 0.000158384806127287
+10 0.00015090114902705
+11 0.00017241585010197
+12 0.000125754580949433
+13 0.000150152205605991
+14 0.000149038765812293
+15 0.000129673921037465
+16 0.000117809933726676
+17 0.000130267275380902
+18 0.000150511026731692
+19 0.000137825700221583
+20 0.00015716087364126
+21 0.000127027145936154
+22 0.000131004358991049
+23 0.00014198808639776
+24 0.000170869228895754
+25 0.000134938076371327
+26 0.000153400891576894
+27 0.000113255533506162
+28 0.00010415096039651
+29 0.000126682294649072
+30 0.000148619670653716
+31 0.000138515548314899
+32 0.000136672126245685
+33 0.000147611717693508
+34 0.00011865086707985
+35 0.000129228370497003
+36 0.000149921281263232
+37 0.000149975749081932
+38 0.000131095643155277
+39 0.000151922446093522
+40 0.000137998053105548
+41 0.00014572951477021
+42 0.00013409748498816
+43 0.000141887037898414
+44 0.000158681752509438
+45 0.000170707004144788
+46 0.000130047090351582
+47 0.000123931909911335
+48 0.000103220438177232
+49 0.000146943639265373
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0070407059336038726, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0070407059336038726, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..9d65c4cb0ea7bf9f40c8aed196f0519fa3204017
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0070407059336038726, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0070407059336038726, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0070407059336038726, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..5e29f972f0665993bd57b1417100503fc97c088a
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0070407059336038726, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.66021422288197e-08, ymax=0.000241019847133448,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000133478868519887
+1 1.53186010720674e-05
+2 3.67735219697352e-06
+3 2.03257786779432e-06
+4 1.38440395858197e-06
+5 1.01836451449344e-06
+6 7.95849302903662e-07
+7 6.30419606295618e-07
+8 5.34385833361739e-07
+9 4.51933260592341e-07
+10 3.86023828014004e-07
+11 3.43981412243011e-07
+12 3.01189089668696e-07
+13 2.71268845608574e-07
+14 2.56773802220778e-07
+15 2.29563866582794e-07
+16 1.98630175418657e-07
+17 1.94484670146267e-07
+18 1.80003723926347e-07
+19 1.63562404509321e-07
+20 1.57610770656902e-07
+21 1.5276475551218e-07
+22 1.37695138846539e-07
+23 1.28776207475312e-07
+24 1.21072943670697e-07
+25 1.14864391775882e-07
+26 1.11930688717621e-07
+27 1.07541040961223e-07
+28 1.0223052981928e-07
+29 9.30578352154043e-08
+30 8.9134495340204e-08
+31 8.38529459201709e-08
+32 8.22108034981284e-08
+33 7.84265523634531e-08
+34 7.34882235065015e-08
+35 7.12541066150152e-08
+36 6.79417695437223e-08
+37 6.75513049941401e-08
+38 6.64607640032955e-08
+39 6.63432686565102e-08
+40 6.08785413191981e-08
+41 5.82011701055762e-08
+42 5.95581717277582e-08
+43 5.62705686490972e-08
+44 5.25368619719302e-08
+45 5.26507690778999e-08
+46 5.14314812960492e-08
+47 5.11065465502725e-08
+48 5.05220718594046e-08
+49 4.9391413625699e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000112608322524466
+1 1.7434778783354e-05
+2 5.48665047972463e-06
+3 2.1828634544363e-06
+4 1.63100855843368e-06
+5 7.88857789757458e-07
+6 6.63611615436821e-07
+7 5.41277131560491e-07
+8 4.18664711787642e-07
+9 4.66658406139686e-07
+10 3.97846235955512e-07
+11 2.8749337843692e-07
+12 3.77916165916758e-07
+13 3.35631881398513e-07
+14 2.26944393943995e-07
+15 2.03589323177766e-07
+16 2.87142171373489e-07
+17 1.83007372811517e-07
+18 1.75002853097794e-07
+19 1.74228816263167e-07
+20 1.60172064056496e-07
+21 1.50154747302622e-07
+22 1.39671357146653e-07
+23 1.11148153791873e-07
+24 1.18616185318388e-07
+25 1.15208358408836e-07
+26 9.1830536064208e-08
+27 8.48932941721614e-08
+28 8.55856896464502e-08
+29 9.74046230339809e-08
+30 8.6168185475799e-08
+31 7.37812229090196e-08
+32 6.37309298667788e-08
+33 6.7931729574866e-08
+34 8.41277412177988e-08
+35 7.8052423191366e-08
+36 6.62601564727083e-08
+37 6.29354417469585e-08
+38 6.68859598818017e-08
+39 5.9712604638662e-08
+40 5.8370932976004e-08
+41 6.23403977328962e-08
+42 4.84722484372924e-08
+43 4.57935236397589e-08
+44 5.39135385224654e-08
+45 4.51110651056297e-08
+46 5.46120872968459e-08
+47 7.28109128544929e-08
+48 4.02519049202965e-08
+49 4.33965219315269e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000133705761982128
+1 0.000132963687065057
+2 0.000132704430143349
+3 0.000135457681608386
+4 0.000135936585138552
+5 0.000134509187773801
+6 0.000132515138830058
+7 0.000132324450532906
+8 0.000130103740957566
+9 0.000132828965433873
+10 0.000132826957269572
+11 0.000132969551486894
+12 0.000131216642330401
+13 0.000133953595650382
+14 0.000134937465190887
+15 0.000132833927636966
+16 0.000133276975248009
+17 0.000132216286147013
+18 0.000130483444081619
+19 0.000131823748233728
+20 0.000132896544528194
+21 0.000128674990264699
+22 0.000131876877276227
+23 0.000129962165374309
+24 0.000131147389765829
+25 0.000131442851852626
+26 0.000133555658976547
+27 0.000134494606754743
+28 0.000131420922116376
+29 0.000131101623992436
+30 0.000133715904667042
+31 0.000130993415950797
+32 0.000133108231239021
+33 0.000132596251205541
+34 0.000131349283037707
+35 0.000131873370264657
+36 0.000133748850203119
+37 0.000134148343931884
+38 0.000133588298922405
+39 0.000134277797769755
+40 0.00012954008707311
+41 0.000130375323351473
+42 0.000129928099340759
+43 0.00013147498248145
+44 0.000133187713799998
+45 0.000130803455249406
+46 0.000134402042021975
+47 0.000129618245409802
+48 0.000134467481984757
+49 0.000129699561512098
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.00011057478695875
+1 0.000121036893688142
+2 0.00012033520033583
+3 9.67870946624316e-05
+4 9.32207258301787e-05
+5 0.000106285493529867
+6 0.000123418620205484
+7 0.000124027210404165
+8 0.000144382313010283
+9 0.00012172286369605
+10 0.000120216158393305
+11 0.000118523974379059
+12 0.000136207541800104
+13 0.000107320774986874
+14 0.000105658684333321
+15 0.000120003605843522
+16 0.000114987698907498
+17 0.000127738137962297
+18 0.000142280725413002
+19 0.000128205079818144
+20 0.000121095930808224
+21 0.000159287970745936
+22 0.000127903636894189
+23 0.00015072655514814
+24 0.000136527145514265
+25 0.000133513240143657
+26 0.000114852889964823
+27 0.000109531370981131
+28 0.00013209342432674
+29 0.000139084033435211
+30 0.0001115527265938
+31 0.000138227740535513
+32 0.000118593779916409
+33 0.00012164164945716
+34 0.000132830304210074
+35 0.000129430656670593
+36 0.000112640977022238
+37 0.000109584630990867
+38 0.000112921581603587
+39 0.000109862769022584
+40 0.000151551590533927
+41 0.000144100558827631
+42 0.00014974465011619
+43 0.000131991982925683
+44 0.000118446398118977
+45 0.000140344185638241
+46 0.000107793894130737
+47 0.00014747231034562
+48 0.000106287887319922
+49 0.000148013612488285
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007051814138179421, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007051814138179421, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..2bce44c05b34e8c61a5745ddde1d29a4dffb6c8d
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007051814138179421, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007051814138179421, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007051814138179421, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..c2e7e2008842ec592674c08e7574e1d2b3f3f93a
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007051814138179421, Learning_Process.tex	
@@ -0,0 +1,263 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.5,0.91)},
+  anchor=north,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.86928104654588e-06, ymax=0.00386239665210651,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000154591718455777
+1 1.09667826109217e-05
+2 4.7910198190948e-06
+3 4.65670818812214e-05
+4 0.00273002590984106
+5 0.000260120315942913
+6 0.000143635625136085
+7 0.000111607900180388
+8 9.33589326450601e-05
+9 7.78869361965917e-05
+10 6.78339565638453e-05
+11 6.21999279246666e-05
+12 5.51062330487184e-05
+13 5.00943788210861e-05
+14 4.65488556073979e-05
+15 4.23228084400762e-05
+16 3.88854459743015e-05
+17 3.56269629264716e-05
+18 3.37650490109809e-05
+19 3.16281548293773e-05
+20 2.86858848994598e-05
+21 2.82616983895423e-05
+22 2.63370111497352e-05
+23 2.53569032793166e-05
+24 2.35700154007645e-05
+25 2.28823682846269e-05
+26 2.19763151108054e-05
+27 2.0579600459314e-05
+28 2.00937429326586e-05
+29 1.90410482900916e-05
+30 1.79659891728079e-05
+31 1.76913235918619e-05
+32 1.70661005540751e-05
+33 1.59260671352968e-05
+34 1.60470626724418e-05
+35 1.54155914060539e-05
+36 1.49379129652516e-05
+37 1.44017058119061e-05
+38 1.36880034915521e-05
+39 1.33474886752083e-05
+40 1.33279399960884e-05
+41 1.2602649803739e-05
+42 1.25256010505836e-05
+43 1.21787888929248e-05
+44 1.13166315713897e-05
+45 1.14100403152406e-05
+46 1.11709505290492e-05
+47 1.04658793134149e-05
+48 1.05191065813415e-05
+49 1.06000288724317e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000175181558006443
+1 9.52475147641962e-06
+2 2.64462869381532e-06
+3 2.87787461275002e-05
+4 0.000218102693906985
+5 0.000232775040785782
+6 0.00015193251601886
+7 0.000106499544926919
+8 8.98731450433843e-05
+9 8.58853018144146e-05
+10 7.57533343858086e-05
+11 5.16194850206375e-05
+12 5.37617597728968e-05
+13 4.73542313557118e-05
+14 3.70869020116515e-05
+15 3.87722939194646e-05
+16 3.62901155313011e-05
+17 3.84525992558338e-05
+18 3.23189415212255e-05
+19 2.91899759758962e-05
+20 3.60968442691956e-05
+21 2.32136935665039e-05
+22 2.53477192018181e-05
+23 2.0845864128205e-05
+24 2.45808860199759e-05
+25 2.01959937840002e-05
+26 1.85640383278951e-05
+27 2.04412790481001e-05
+28 1.70290895766811e-05
+29 2.15397176361876e-05
+30 2.06481909117429e-05
+31 1.82612675416749e-05
+32 1.93622145161498e-05
+33 1.90561258932576e-05
+34 1.43991755976458e-05
+35 1.50910782394931e-05
+36 1.26544009617646e-05
+37 1.32109116748325e-05
+38 1.49233965203166e-05
+39 1.41086147777969e-05
+40 1.13876685645664e-05
+41 1.28113870232482e-05
+42 1.14098938865936e-05
+43 1.25188353194972e-05
+44 1.48503895616159e-05
+45 1.14204767669435e-05
+46 1.04180353446282e-05
+47 1.35951650008792e-05
+48 1.16422770588542e-05
+49 7.63309344620211e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000154159177327529
+1 0.000155684727360494
+2 0.000158010792802088
+3 0.000156682188389823
+4 0.000158815033501014
+5 0.000152267224621028
+6 0.00015149440150708
+7 0.000152027045260184
+8 0.00015710735169705
+9 0.000159741481184028
+10 0.000156012392835692
+11 0.000158097216626629
+12 0.000156798647367395
+13 0.000154810608364642
+14 0.000156183188664727
+15 0.000157370479428209
+16 0.000155511312186718
+17 0.000158599257702008
+18 0.000155340967467055
+19 0.000154848996317014
+20 0.000156389898620546
+21 0.000153601751662791
+22 0.000158294045832008
+23 0.000155420624651015
+24 0.000158839029609226
+25 0.000157222268171608
+26 0.000155684523633681
+27 0.000153531989781186
+28 0.000155578687554225
+29 0.000153882530867122
+30 0.000158579932758585
+31 0.000154663401190192
+32 0.000155440429807641
+33 0.000156373076606542
+34 0.000159360744873993
+35 0.000157503818627447
+36 0.000158145194291137
+37 0.000160929921548814
+38 0.000156445530592464
+39 0.000157340473379008
+40 0.000159210481797345
+41 0.000154812587425113
+42 0.000158647817443125
+43 0.000157205329742283
+44 0.000156613896251656
+45 0.000154054912854917
+46 0.000155711808474734
+47 0.00015531710232608
+48 0.00147090957034379
+49 0.000155380286742002
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000174071043147705
+1 0.00016407719522249
+2 0.000144492092658766
+3 0.000153340079123154
+4 0.000131947745103389
+5 0.000191225874004886
+6 0.000198623354663141
+7 0.000190299222595058
+8 0.000148516075569205
+9 0.000122322773677297
+10 0.000162076947162859
+11 0.000137220937176608
+12 0.000145699741551653
+13 0.000165150937391445
+14 0.000157882270286791
+15 0.000148946812259965
+16 0.000176187764736824
+17 0.000136859292979352
+18 0.000163221644470468
+19 0.000169714170624502
+20 0.000153401313582435
+21 0.000173276974237524
+22 0.000139275245601311
+23 0.000164867640705779
+24 0.00014048746379558
+25 0.000151153450133279
+26 0.000159065893967636
+27 0.000179985261638649
+28 0.000170232015079819
+29 0.000179676440893672
+30 0.000139237978146411
+31 0.000170623054145835
+32 0.000170169412740506
+33 0.00015196917229332
+34 0.000131086359033361
+35 0.000143970319186337
+36 0.000137879091198556
+37 0.000118007395940367
+38 0.000160521129146218
+39 0.000146073813084513
+40 0.000132229426526465
+41 0.00017914742056746
+42 0.000137486305902712
+43 0.000151117637869902
+44 0.000152631298988126
+45 0.000179508191649802
+46 0.000167656035046093
+47 0.000165917619597167
+48 0.000176733461557887
+49 0.000166249606991187
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007062135999176431, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007062135999176431, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..669ac839dffd22327b4f69d9928ee648c9c597a5
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007062135999176431, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007062135999176431, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007062135999176431, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..d4e6d0563e1c72fa5e63358fe85d188a8c3dd565
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007062135999176431, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=6.1888248601424e-08, ymax=0.000264986069975811,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000136732312967069
+1 1.66351837833645e-05
+2 6.78345122651081e-06
+3 3.78733784600627e-06
+4 2.55873646892724e-06
+5 1.85266128482908e-06
+6 1.40136364734644e-06
+7 1.14630290681816e-06
+8 1.05653089121915e-06
+9 8.30863598366705e-07
+10 7.04373178450624e-07
+11 6.16244562934298e-07
+12 5.65657842344081e-07
+13 5.05087257351988e-07
+14 4.64704356772927e-07
+15 4.27685051818116e-07
+16 3.9615682112526e-07
+17 3.72572543483329e-07
+18 3.487836295335e-07
+19 3.14009810153948e-07
+20 2.94460591021561e-07
+21 2.7412920644565e-07
+22 2.51943589546499e-07
+23 2.38243160310958e-07
+24 2.23460787651675e-07
+25 2.24927134695463e-07
+26 2.09757459401771e-07
+27 2.06269163527395e-07
+28 2.01259865661996e-07
+29 1.81045905378596e-07
+30 1.70439534485922e-07
+31 1.63465102787086e-07
+32 1.58792033744248e-07
+33 1.5340772563377e-07
+34 1.52909180428651e-07
+35 1.41390316343859e-07
+36 1.39477279503808e-07
+37 1.33628645926365e-07
+38 1.27951935269266e-07
+39 1.23191156831126e-07
+40 1.27017074191826e-07
+41 1.18527758274922e-07
+42 1.12897843962401e-07
+43 1.12192601875449e-07
+44 1.0618221324421e-07
+45 1.03300649811899e-07
+46 1.02134940505039e-07
+47 1.02471616969524e-07
+48 1.00540155756335e-07
+49 9.57256958145081e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000151586471474729
+1 1.90154532901943e-05
+2 5.51341281607165e-06
+3 2.86511954072921e-06
+4 2.58221052718e-06
+5 1.65935671248008e-06
+6 1.53777477862604e-06
+7 1.58038017161743e-06
+8 1.44387365708099e-06
+9 7.32451553631108e-07
+10 8.86694408563926e-07
+11 7.09711173385585e-07
+12 5.64262506941304e-07
+13 5.27568943198276e-07
+14 4.97050962167123e-07
+15 4.34564725537712e-07
+16 3.79497521407757e-07
+17 3.29593120795835e-07
+18 3.09300247636202e-07
+19 3.10708770712154e-07
+20 2.87978622282026e-07
+21 2.54015020573206e-07
+22 2.52354055874093e-07
+23 2.24374232971059e-07
+24 2.18459021539275e-07
+25 1.85543953534761e-07
+26 2.21395026755999e-07
+27 1.82504237500325e-07
+28 1.90017090062611e-07
+29 1.88341900297928e-07
+30 1.94886027315988e-07
+31 1.67267486972378e-07
+32 1.44225609233217e-07
+33 1.45884811786345e-07
+34 1.21912464123852e-07
+35 1.58186807652783e-07
+36 1.37036209935104e-07
+37 1.49298699625433e-07
+38 1.10107798434456e-07
+39 1.37238927777616e-07
+40 9.47516554106187e-08
+41 1.22642219935187e-07
+42 1.13032250226297e-07
+43 9.85012107435068e-08
+44 1.22810419611596e-07
+45 1.09949610305193e-07
+46 1.26588602711308e-07
+47 9.59012496082323e-08
+48 2.33603927313197e-07
+49 9.05068802126152e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000139328520162962
+1 0.000139787283842452
+2 0.000138783230795525
+3 0.000136942166136578
+4 0.000135621696244925
+5 0.000136460264911875
+6 0.000139191251946613
+7 0.000133576424559578
+8 0.000141367840114981
+9 0.00013992574531585
+10 0.000135330279590562
+11 0.00014024339907337
+12 0.00014052729238756
+13 0.000139420357299969
+14 0.00013946475519333
+15 0.000140712698339485
+16 0.000137839437229559
+17 0.000139822470373474
+18 0.000138921197503805
+19 0.000138130533741787
+20 0.000138902003527619
+21 0.000141596290632151
+22 0.000136476999614388
+23 0.000139595998916775
+24 0.00014144740998745
+25 0.000133756286231801
+26 0.000134075642563403
+27 0.000139448515255935
+28 0.000138685922138393
+29 0.000137009265017696
+30 0.000138087823870592
+31 0.000138816089020111
+32 0.000137572045787238
+33 0.00013626369764097
+34 0.000140138945425861
+35 0.000134570407681167
+36 0.000137785944389179
+37 0.000136527654831298
+38 0.000141295080538839
+39 0.000138527844683267
+40 0.000138256655191071
+41 0.000137840921524912
+42 0.000137351162265986
+43 0.00014007993740961
+44 0.000140358868520707
+45 0.000133854351588525
+46 0.00014195118274074
+47 0.000138948409585282
+48 0.000139945317641832
+49 0.000133933877805248
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.00012785557191819
+1 0.00012319118832238
+2 0.000131951295770705
+3 0.000153156797750853
+4 0.00016166060231626
+5 0.000153137370944023
+6 0.000131611202959903
+7 0.000181196432095021
+8 0.000110442262666766
+9 0.000123825724585913
+10 0.000166482277563773
+11 0.000119615950097796
+12 0.000118677715363447
+13 0.000127384715597145
+14 0.000126999730127864
+15 0.000114908456453122
+16 0.000141608863486908
+17 0.00012406415771693
+18 0.000128910789499059
+19 0.000138202216476202
+20 0.000131423395941965
+21 0.000110480876173824
+22 0.000152027307194658
+23 0.000129458494484425
+24 0.000113423637230881
+25 0.000179582013515756
+26 0.000174540036823601
+27 0.000128203580970876
+28 0.000135451860842295
+29 0.000151381609612145
+30 0.000139789117383771
+31 0.000134156944113784
+32 0.000145084733958356
+33 0.000155720976181328
+34 0.000121991150081158
+35 0.000170388564583845
+36 0.000143775963806547
+37 0.000153106899233535
+38 0.000110104636405595
+39 0.00013463273353409
+40 0.000136629547341727
+41 0.000142066739499569
+42 0.000146320962812752
+43 0.00012193188740639
+44 0.000120987533591688
+45 0.000179289418156259
+46 0.000107367108284961
+47 0.000131631924887188
+48 0.000123039397294633
+49 0.000176690125954337
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007073381541421462, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007073381541421462, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..477aa541609f6731c0d60564926bc204b56155da
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007073381541421462, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007073381541421462, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007073381541421462, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..e1c89e3ad02fce7b8d64f2e14265466a5dd18349
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007073381541421462, Learning_Process.tex	
@@ -0,0 +1,255 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.20220374244057e-06, ymax=0.000718158979284027,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00011859063670272
+1 4.1322986362502e-05
+2 0.000247580639552325
+3 0.000561522727366537
+4 4.54813889518846e-05
+5 3.88879998354241e-05
+6 3.18052443617489e-05
+7 2.89239924313733e-05
+8 2.62773792201187e-05
+9 2.43566937569994e-05
+10 2.24052746489178e-05
+11 2.05012620426714e-05
+12 1.88099838851485e-05
+13 1.71907704498153e-05
+14 1.65836499945726e-05
+15 1.56650421558879e-05
+16 1.42088347274694e-05
+17 1.34653055283707e-05
+18 1.24893531392445e-05
+19 1.20950553537114e-05
+20 1.14206695798202e-05
+21 1.10960181700648e-05
+22 1.0537833077251e-05
+23 9.66561583481962e-06
+24 9.32066814129939e-06
+25 9.0223702500225e-06
+26 8.52161883813096e-06
+27 8.49387015477987e-06
+28 7.76047818362713e-06
+29 7.75749776948942e-06
+30 7.56944837121409e-06
+31 7.12734890839783e-06
+32 6.84428323438624e-06
+33 6.53636334391194e-06
+34 6.40399139228975e-06
+35 6.14438295087893e-06
+36 5.97648613620549e-06
+37 5.7411057241552e-06
+38 5.69950543649611e-06
+39 5.56728036826826e-06
+40 5.19251898367656e-06
+41 5.07366803503828e-06
+42 4.93639527121559e-06
+43 4.88411296828417e-06
+44 4.82947416458046e-06
+45 4.66789106212673e-06
+46 4.53262418886879e-06
+47 4.37248218077002e-06
+48 4.31444641435519e-06
+49 4.20323203798034e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000102954007161316
+1 2.235702231701e-05
+2 8.17885884316638e-05
+3 0.000529797689523548
+4 3.34543146891519e-05
+5 2.47776679316303e-05
+6 3.6911922506988e-05
+7 3.00764568237355e-05
+8 2.89795952994609e-05
+9 2.11058777495055e-05
+10 1.94757922145072e-05
+11 1.89203565241769e-05
+12 1.86183606274426e-05
+13 1.99764817807591e-05
+14 1.38452114697429e-05
+15 1.14768399726017e-05
+16 1.49893376146792e-05
+17 1.33330750031746e-05
+18 1.45625353979995e-05
+19 1.16055280159344e-05
+20 1.14315253085806e-05
+21 8.71902739163488e-06
+22 8.08196637080982e-06
+23 1.11570534500061e-05
+24 1.12036359496415e-05
+25 8.58691328176064e-06
+26 9.60577108344296e-06
+27 6.1671171351918e-06
+28 9.51795391301857e-06
+29 6.34238404018106e-06
+30 5.04843546877964e-06
+31 6.42318946120213e-06
+32 6.44740657662624e-06
+33 6.97391078574583e-06
+34 5.9589215197775e-06
+35 6.3069296629692e-06
+36 5.81232552576694e-06
+37 6.15673343418166e-06
+38 5.94282528254553e-06
+39 4.93146171720582e-06
+40 6.09261996942223e-06
+41 5.78961135033751e-06
+42 5.6227067943837e-06
+43 4.89513786305906e-06
+44 4.0954555515782e-06
+45 4.30987893196288e-06
+46 4.34188268627622e-06
+47 4.57189025837579e-06
+48 4.43338240074809e-06
+49 4.15004024034715e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000114796595880762
+1 0.000116370334581006
+2 0.000116290197183844
+3 0.0001173434429802
+4 0.000117601884994656
+5 0.000116209266707301
+6 0.000121229721116833
+7 0.00011646901111817
+8 0.000117333176604006
+9 0.000117094365123194
+10 0.000116731309390161
+11 0.000117750125355087
+12 0.000116106159111951
+13 0.000119010757771321
+14 0.000115581126010511
+15 0.000118683150503784
+16 0.000115687813377008
+17 0.000115396251203492
+18 0.000116911985969637
+19 0.000118501651741099
+20 0.000115285962237976
+21 0.000117966606921982
+22 0.00011548387556104
+23 0.00011209260992473
+24 0.000118073185149115
+25 0.000116382565465756
+26 0.000120409909868613
+27 0.000114566646516323
+28 0.000117014031275176
+29 0.000120400705782231
+30 0.000118882540846244
+31 0.000116294002509676
+32 0.000117455216241069
+33 0.000115628477942664
+34 0.000115169328637421
+35 0.000119209602416959
+36 0.000118958589155227
+37 0.000118829004350118
+38 0.000118629432108719
+39 0.000117412717372645
+40 0.000116352719487622
+41 0.000119282056402881
+42 0.000118591422506142
+43 0.000115925358841196
+44 0.000119061376608443
+45 0.000118471536552534
+46 0.000121000703074969
+47 0.000115217953862157
+48 0.000115217226266395
+49 0.000118685311463196
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000137426453875378
+1 0.000122594574349932
+2 0.000125536971609108
+3 0.000113400026748423
+4 0.000112761874333955
+5 0.000122822588309646
+6 8.04492738097906e-05
+7 0.000120743636216503
+8 0.000115877926873509
+9 0.000115471266326495
+10 0.000119988042570185
+11 0.000110760236566421
+12 0.000125692997244187
+13 0.000100072553323116
+14 0.000129937718156725
+15 0.000102182188129518
+16 0.000128827232401818
+17 0.000131232882267796
+18 0.000119095922855195
+19 0.00010290584032191
+20 0.000132567642140202
+21 0.000107048683275934
+22 0.000129812629893422
+23 0.000161051779286936
+24 0.000107431740616448
+25 0.000121728357044049
+26 8.56827973620966e-05
+27 0.000136435541207902
+28 0.000115964001452085
+29 8.80270890775137e-05
+30 0.00010042069334304
+31 0.000123274541692808
+32 0.000112219851871487
+33 0.000129655149066821
+34 0.000132754561491311
+35 9.65397775871679e-05
+36 9.97575916699134e-05
+37 0.000102564983535558
+38 0.000102495891042054
+39 0.000113852263893932
+40 0.000124993428471498
+41 9.71882036537863e-05
+42 0.000100782774097752
+43 0.000126519837067463
+44 9.92662971839309e-05
+45 0.000105549777799752
+46 8.22354122647084e-05
+47 0.000132444736664183
+48 0.000131166540086269
+49 9.90721091511659e-05
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007136884718719229, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007136884718719229, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..8042d5c1c3cf0e157f77aae00e404220191f5da9
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007136884718719229, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007136884718719229, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007136884718719229, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..55f84ef8a87b10752ae0dfae760bfc233880aa29
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007136884718719229, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=4.79312620365534e-08, ymax=0.000248743876561473,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000134935544338077
+1 1.55230463860789e-05
+2 2.15860891330522e-05
+3 5.73072293263976e-06
+4 3.05659750665654e-06
+5 2.21889172280498e-06
+6 1.54613962877193e-06
+7 1.25280598695099e-06
+8 1.00388490409387e-06
+9 8.86653083398414e-07
+10 7.50558228901355e-07
+11 6.59797990465449e-07
+12 5.77612581764697e-07
+13 5.44093268217694e-07
+14 4.78591459796007e-07
+15 4.39698169429903e-07
+16 3.99298755837663e-07
+17 3.51444043644733e-07
+18 3.27927580201504e-07
+19 3.05244469700483e-07
+20 2.8338379820525e-07
+21 2.70267065616281e-07
+22 2.63961084101538e-07
+23 2.47601207092885e-07
+24 2.4097099071696e-07
+25 2.28388600476137e-07
+26 2.03767584139314e-07
+27 1.96119245288173e-07
+28 1.8261901857386e-07
+29 1.79540521116905e-07
+30 1.72414445387403e-07
+31 1.62591206276375e-07
+32 1.72838312550994e-07
+33 1.70726494275186e-07
+34 1.58707464947838e-07
+35 1.52401909758737e-07
+36 1.44462177331661e-07
+37 1.34201741275319e-07
+38 1.2823115014271e-07
+39 1.29868112708209e-07
+40 1.22005744174203e-07
+41 1.18549785099731e-07
+42 1.1745842698474e-07
+43 1.10813665799014e-07
+44 1.11580433781455e-07
+45 1.01307705335785e-07
+46 1.02648343158762e-07
+47 1.00284019310948e-07
+48 9.66164961369032e-08
+49 9.60370272196087e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000127806546515785
+1 1.28949004647438e-05
+2 8.26394898467697e-06
+3 5.29366525370278e-06
+4 2.94517099064251e-06
+5 2.26155361815472e-06
+6 1.89091952051967e-06
+7 1.28335886984132e-06
+8 1.27963926388475e-06
+9 8.83130667261867e-07
+10 8.46080467908905e-07
+11 6.67819335831155e-07
+12 6.33462093446724e-07
+13 4.73847848070363e-07
+14 4.40155503156348e-07
+15 4.33918188491589e-07
+16 3.53505612338267e-07
+17 4.48196800562073e-07
+18 3.51290395883552e-07
+19 3.1961926083568e-07
+20 3.21167334504935e-07
+21 2.54313761161029e-07
+22 2.2886470674166e-07
+23 2.8376953764564e-07
+24 2.00292475938113e-07
+25 2.34332091508804e-07
+26 2.52870421491025e-07
+27 1.83933025255101e-07
+28 2.18945189089936e-07
+29 1.59535389343546e-07
+30 1.86589403483595e-07
+31 1.60512584557182e-07
+32 1.77173035353917e-07
+33 2.02781151870113e-07
+34 1.46595297678687e-07
+35 1.35206946083599e-07
+36 1.45906852822009e-07
+37 1.76329962187083e-07
+38 1.31234315858819e-07
+39 1.1403306388047e-07
+40 1.06212858952404e-07
+41 1.16862132415463e-07
+42 1.02393549639146e-07
+43 1.19575361168245e-07
+44 9.69206013223811e-08
+45 1.24502818721339e-07
+46 8.67802256721006e-08
+47 9.14987055011807e-08
+48 8.3895827174274e-08
+49 7.07112590703218e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000136983217089437
+1 0.000130866930703633
+2 0.000133851644932292
+3 0.000134977570269257
+4 0.000134109301143326
+5 0.000134518835693598
+6 0.000136285947519355
+7 0.000134969421196729
+8 0.000131450593471527
+9 0.000138669769512489
+10 0.000135389404022135
+11 0.000137032329803333
+12 0.000134821064420976
+13 0.000133235851535574
+14 0.000133280147565529
+15 0.000135735055664554
+16 0.000130903223180212
+17 0.000135272333864123
+18 0.000134940550196916
+19 0.00013319963181857
+20 0.000134400557726622
+21 0.000132233661133796
+22 0.000133972076582722
+23 0.000133726804051548
+24 0.000132571527501568
+25 0.0001366119395243
+26 0.000134231057018042
+27 0.000135806971229613
+28 0.000132971035782248
+29 0.000137641953187995
+30 0.00013717680121772
+31 0.000133754030684941
+32 0.000131779306684621
+33 0.000135602575028315
+34 0.000132448287331499
+35 0.000132509201648645
+36 0.000133664914756082
+37 0.000132456058054231
+38 0.000135785478050821
+39 0.000135440917802043
+40 0.000133966488647275
+41 0.000136614908115007
+42 0.000133765293867327
+43 0.000133006295072846
+44 0.000131537992274389
+45 0.000133640758576803
+46 0.000131840890389867
+47 0.000135564769152552
+48 0.000138016228447668
+49 0.000133191089844331
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.00011244914639974
+1 0.000163357457495295
+2 0.000140218515298329
+3 0.00012882545706816
+4 0.000134554735268466
+5 0.000131585300550796
+6 0.000118074589408934
+7 0.000124109326861799
+8 0.000161375137395225
+9 0.000153245913679712
+10 0.000125290127471089
+11 0.00010857563756872
+12 0.000131161228637211
+13 0.000143533165100962
+14 0.000145886588143185
+15 0.000126505721709691
+16 0.000168609753018245
+17 0.000128424493595958
+18 0.000128162704640999
+19 0.000146361475344747
+20 0.000135430876980536
+21 0.000155135974637233
+22 0.000139852316351607
+23 0.000139470357680693
+24 0.000151403466588818
+25 0.00011306740634609
+26 0.000134401227114722
+27 0.000122199562611058
+28 0.000147183644003235
+29 0.000111680266854819
+30 0.000113230853457935
+31 0.000138828036142513
+32 0.000159146642545238
+33 0.000128117375425063
+34 0.000151299682329409
+35 0.000149554965901189
+36 0.000141161857754923
+37 0.000150681036757305
+38 0.000123526246170513
+39 0.000130279920995235
+40 0.000138209492433816
+41 0.00011346151586622
+42 0.000142225180752575
+43 0.000148151229950599
+44 0.000161006333655678
+45 0.000143294950248674
+46 0.000157454560394399
+47 0.000123002915643156
+48 0.000136288930661976
+49 0.00014471763279289
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007156893272915114, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007156893272915114, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..670a2cfdcb0e74c157151011e314d5ef658c96e5
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007156893272915114, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007156893272915114, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007156893272915114, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..f69077ad79f6182735f116320eb98d8464a831c8
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007156893272915114, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.84902369992985e-08, ymax=0.000377488278772357,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000195139757124707
+1 1.08922395156696e-05
+2 4.73363616038114e-06
+3 2.44480202127306e-06
+4 1.01148009434837e-06
+5 6.60912007788284e-07
+6 5.20211813181959e-07
+7 3.98960963821082e-07
+8 3.206795895494e-07
+9 2.84995167021407e-07
+10 2.35573082818519e-07
+11 2.1617692880227e-07
+12 1.86651789135794e-07
+13 1.73256523794407e-07
+14 1.52876069137164e-07
+15 1.41889884730517e-07
+16 1.30500453110471e-07
+17 1.18511529478837e-07
+18 1.08413445332189e-07
+19 1.03707947118892e-07
+20 9.48646032838951e-08
+21 9.02527190760338e-08
+22 8.32655473459454e-08
+23 8.08461919632464e-08
+24 7.66708367905267e-08
+25 7.21620381227694e-08
+26 6.8033401134926e-08
+27 6.47175610879458e-08
+28 6.25629610340184e-08
+29 6.20843465526377e-08
+30 5.81792747311738e-08
+31 5.38409246075844e-08
+32 5.35999298278966e-08
+33 5.27733945432374e-08
+34 5.08915647401409e-08
+35 4.8262009499922e-08
+36 4.7606349085072e-08
+37 4.53385204934875e-08
+38 4.41120597827194e-08
+39 4.10611811219042e-08
+40 4.17703631683253e-08
+41 3.85278582371029e-08
+42 3.87237442112109e-08
+43 3.83385838631511e-08
+44 3.79874336431385e-08
+45 3.69160098045995e-08
+46 3.75034545641029e-08
+47 3.35443246513023e-08
+48 3.35737517787038e-08
+49 3.2004834338295e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000178327158209868
+1 1.24410671560327e-05
+2 3.72827707906254e-06
+3 1.91001140592562e-06
+4 8.33735725791485e-07
+5 6.1225614444993e-07
+6 4.27659699653304e-07
+7 3.9209709257193e-07
+8 3.39565133344877e-07
+9 2.69175018274836e-07
+10 2.35377441981655e-07
+11 2.11869632948947e-07
+12 2.15564213590369e-07
+13 1.54893925241595e-07
+14 1.35520039634685e-07
+15 1.40478206844818e-07
+16 1.25942435147408e-07
+17 1.12002133789701e-07
+18 1.23578956845449e-07
+19 8.7857330299812e-08
+20 9.65963309340623e-08
+21 8.52661301564694e-08
+22 8.77106884900059e-08
+23 6.90436365857749e-08
+24 7.1683189162286e-08
+25 7.12198229280148e-08
+26 6.66282531369689e-08
+27 6.76593785442492e-08
+28 5.89675437367987e-08
+29 4.90526872454211e-08
+30 5.0837133613868e-08
+31 6.7605547826588e-08
+32 5.04187198657746e-08
+33 4.49348256381654e-08
+34 4.98957000161226e-08
+35 5.36903321801674e-08
+36 4.2634987096335e-08
+37 4.05713436180122e-08
+38 4.03889188760331e-08
+39 4.99183556712524e-08
+40 3.49638362706628e-08
+41 4.82174762339582e-08
+42 3.6509455014766e-08
+43 3.00782154738499e-08
+44 3.62933576525393e-08
+45 3.19577075913458e-08
+46 2.9030184478529e-08
+47 3.59542404737567e-08
+48 3.05313569981536e-08
+49 4.06267410824057e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000193089319509454
+1 0.000198560752323829
+2 0.000191347135114484
+3 0.000195082990103401
+4 0.000195714674191549
+5 0.000193103711353615
+6 0.000192119885468856
+7 0.000194189167814329
+8 0.000196889217477292
+9 0.000192518913536333
+10 0.000190200080396608
+11 0.000193477753782645
+12 0.000189714963198639
+13 0.000195158281712793
+14 0.000195929285837337
+15 0.000198417372303084
+16 0.000192920095287263
+17 0.000191671628272161
+18 0.000189805941772647
+19 0.000196347260498442
+20 0.000193142157513648
+21 0.000193873886018991
+22 0.000192426479770802
+23 0.000189710015547462
+24 0.000195080094272271
+25 0.000193354702787474
+26 0.00018792471382767
+27 0.000188642079592682
+28 0.000193094383575954
+29 0.000197560468222946
+30 0.000188815101864748
+31 0.000194510372239165
+32 0.000191911734873429
+33 0.000194414751604199
+34 0.000196337641682476
+35 0.00019705411978066
+36 0.000195057204109617
+37 0.000192968349438161
+38 0.000197110450244509
+39 0.000198941314010881
+40 0.000193517495063134
+41 0.000198039953829721
+42 0.000196041088202037
+43 0.000190318358363584
+44 0.000192133302334696
+45 0.000193883694009855
+46 0.000192666906514205
+47 0.000192587191122584
+48 0.0001930606958922
+49 0.000194841151824221
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000195439541130327
+1 0.000145629470353015
+2 0.000211170510738157
+3 0.000181693932972848
+4 0.000169226274010725
+5 0.000195557062397711
+6 0.00020180297724437
+7 0.000183460811967961
+8 0.000159631235874258
+9 0.00020174756355118
+10 0.000221451788092963
+11 0.000189770929864608
+12 0.000225050011067651
+13 0.000178004091139883
+14 0.000166614408954047
+15 0.000147445636685006
+16 0.000200285110622644
+17 0.000205654185265303
+18 0.000224137707846239
+19 0.000165129313245416
+20 0.000194436375750229
+21 0.000187468263902701
+22 0.000201321745407768
+23 0.000224850824452005
+24 0.000181941417395137
+25 0.000192082006833516
+26 0.000240434150327928
+27 0.000231378828175366
+28 0.000191974701010622
+29 0.00015774775238242
+30 0.000237119020312093
+31 0.000184192933375016
+32 0.000211833656067029
+33 0.00018582290795166
+34 0.000165245190146379
+35 0.000160088384291157
+36 0.000176582558196969
+37 0.00019613686890807
+38 0.000159478629939258
+39 0.000145053520100191
+40 0.000187713449122384
+41 0.000150510415551253
+42 0.000167630452779122
+43 0.000216584332520142
+44 0.000202729119337164
+45 0.000190760983969085
+46 0.000195693966816179
+47 0.000195380809600465
+48 0.000194169697351754
+49 0.000179588401806541
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007199353708930736, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007199353708930736, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..c6681edd20f7c7a4a8f4a2a4cb2f2e8ea1fd63ab
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007199353708930736, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007199353708930736, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007199353708930736, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..be048858ee9d3bff694429ef8c870f29d61344f2
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007199353708930736, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.12396503338761e-06, ymax=0.000219627100486415,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000147838814882562
+1 7.8361488704104e-05
+2 3.98600241169333e-05
+3 2.96644557238324e-05
+4 2.24704836000456e-05
+5 1.83522988663753e-05
+6 1.49723118738621e-05
+7 1.24426933325594e-05
+8 1.12605011963751e-05
+9 9.55459017859539e-06
+10 8.86837278812891e-06
+11 8.02667909738375e-06
+12 7.5040206866106e-06
+13 6.6306788539805e-06
+14 6.18378226135974e-06
+15 5.94305674894713e-06
+16 5.14863086209516e-06
+17 4.95335825689835e-06
+18 4.57906799056218e-06
+19 4.33213563155732e-06
+20 3.95960114474292e-06
+21 3.85480916520464e-06
+22 3.64588481716055e-06
+23 3.40723727276782e-06
+24 3.36004245582444e-06
+25 3.27246129927516e-06
+26 3.04137620332767e-06
+27 2.85917235487432e-06
+28 2.77629260381218e-06
+29 2.66154029304744e-06
+30 2.62119510807679e-06
+31 2.44021293838159e-06
+32 2.40576628129929e-06
+33 2.28942531066423e-06
+34 2.24226869249833e-06
+35 2.0983241029171e-06
+36 2.04041748474992e-06
+37 2.02042247110512e-06
+38 1.9486321889417e-06
+39 1.93009623217222e-06
+40 1.88415629054361e-06
+41 1.85957992471231e-06
+42 1.74586796219955e-06
+43 1.69828035723185e-06
+44 1.66402980994462e-06
+45 1.60055424203165e-06
+46 1.52430027355877e-06
+47 1.56007320128992e-06
+48 1.51398603520647e-06
+49 1.44458874729025e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000164984056027606
+1 1.12460784293944e-05
+2 4.24471290898509e-05
+3 2.91837623080937e-05
+4 2.08226556424052e-05
+5 1.45671438076533e-05
+6 1.4088410352997e-05
+7 1.60926083481172e-05
+8 1.0070507414639e-05
+9 1.26014001580188e-05
+10 8.87444639374735e-06
+11 8.22495803731726e-06
+12 5.97645203015418e-06
+13 7.1904046308191e-06
+14 5.76298180021695e-06
+15 4.61144009022973e-06
+16 6.31938473816263e-06
+17 4.71628800369217e-06
+18 4.84385464005754e-06
+19 4.15127669839421e-06
+20 5.13862505613361e-06
+21 3.99210830437369e-06
+22 3.74113983525604e-06
+23 4.3300728975737e-06
+24 3.02957255371439e-06
+25 2.2763831566408e-06
+26 3.04391937788751e-06
+27 3.40805013365753e-06
+28 2.85485202766722e-06
+29 2.82315227195795e-06
+30 2.14584451896371e-06
+31 2.82501400761248e-06
+32 2.39760606746131e-06
+33 2.44326906795322e-06
+34 2.19833850678697e-06
+35 2.86915064862114e-06
+36 2.67120117314334e-06
+37 2.13765520129527e-06
+38 2.19240337173687e-06
+39 1.84821783477673e-06
+40 1.6093147223728e-06
+41 1.42851934015198e-06
+42 1.9367555523786e-06
+43 1.92949801203213e-06
+44 1.82245810265158e-06
+45 1.8917493207482e-06
+46 2.30678392654227e-06
+47 1.52420159338362e-06
+48 1.59386058840028e-06
+49 1.83774807283044e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000149132742080837
+1 0.000149823812535033
+2 0.000149189116200432
+3 0.000150556035805494
+4 0.000149541199789383
+5 0.000147968545206822
+6 0.000150131134432741
+7 0.000148116654600017
+8 0.000145899670314975
+9 0.000151871892740019
+10 0.000150002320879139
+11 0.000149437619256787
+12 0.000148309205542319
+13 0.000148949475260451
+14 0.000149343919474632
+15 0.000148988590808585
+16 0.000150289328303188
+17 0.000149423329276033
+18 0.000149447470903397
+19 0.000151239146362059
+20 0.000149630039231852
+21 0.000149930143379606
+22 0.000148236387758516
+23 0.000149224550114013
+24 0.000148624560097232
+25 0.000147964936331846
+26 0.000148956445627846
+27 0.000148457082104869
+28 0.000147343089338392
+29 0.000147506449138746
+30 0.000149434301420115
+31 0.000146218386362307
+32 0.000149223153130151
+33 0.000149803192471154
+34 0.000146712045534514
+35 0.000147143917274661
+36 0.00014762491628062
+37 0.000148908467963338
+38 0.000149714178405702
+39 0.000148406965308823
+40 0.000148980267113075
+41 0.000147330603795126
+42 0.000149555649841204
+43 0.000148724982864223
+44 0.000149483428685926
+45 0.000152363572851755
+46 0.000146712438436225
+47 0.000145802681799978
+48 0.000150211621075869
+49 0.00014654609549325
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000143707962706685
+1 0.000133867346448824
+2 0.000143239230965264
+3 0.000128861356643029
+4 0.000138639574288391
+5 0.00015273607277777
+6 0.000133761190227233
+7 0.000152079097460955
+8 0.000172803527675569
+9 0.000119297161290888
+10 0.000137860828544945
+11 0.000141263328259811
+12 0.00015012601215858
+13 0.000144095902214758
+14 0.000139511801535264
+15 0.000144487843499519
+16 0.000135865862830542
+17 0.000141772237839177
+18 0.000137371956952848
+19 0.000124956903164275
+20 0.000140678035677411
+21 0.000134668065584265
+22 0.000149100247654133
+23 0.00014012077008374
+24 0.000149089159094729
+25 0.000152571185026318
+26 0.000143185214255936
+27 0.000146971317008138
+28 0.000158811060828157
+29 0.000161357151228003
+30 0.000141093711135909
+31 0.000170523228007369
+32 0.000144084988278337
+33 0.000137006820295937
+34 0.00016356997366529
+35 0.000159383562277071
+36 0.000158901631948538
+37 0.000145413898280822
+38 0.000137329770950601
+39 0.000148868493852206
+40 0.00014139452832751
+41 0.000161039337399416
+42 0.000139285810291767
+43 0.00014715846918989
+44 0.000139868192491122
+45 0.000116775852802675
+46 0.00016029377002269
+47 0.000172102169017307
+48 0.000133245601318777
+49 0.000167210353538394
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007225287193731778, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007225287193731778, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..f478dacc1b416af2b0d3f63947272911120a236c
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007225287193731778, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007225287193731778, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007225287193731778, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..4eec3599cbf916bd4d57622ad55b4f9214096318
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007225287193731778, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.39855298639413e-06, ymax=0.000281797486845425,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000149618645082228
+1 5.4937871027505e-05
+2 3.448857114563e-06
+3 0.000168054044479504
+4 0.0002214104461018
+5 9.83267236733809e-05
+6 5.46099945495371e-05
+7 3.80722594854888e-05
+8 2.86863814835669e-05
+9 2.31350932153873e-05
+10 1.89993716048775e-05
+11 1.65981200552778e-05
+12 1.40845977512072e-05
+13 1.23883473861497e-05
+14 1.10903547465568e-05
+15 1.00683491837117e-05
+16 8.96151232154807e-06
+17 8.13373662822414e-06
+18 7.32464013708523e-06
+19 6.9906191129121e-06
+20 6.32260935162776e-06
+21 5.89196451983298e-06
+22 5.5525015341118e-06
+23 5.30128090758808e-06
+24 5.01344084113953e-06
+25 4.73983300253167e-06
+26 4.44425313617103e-06
+27 4.20973901782418e-06
+28 4.00729049943038e-06
+29 3.81357745027344e-06
+30 3.62566083822458e-06
+31 3.45401963386394e-06
+32 3.27964858115593e-06
+33 3.24169650411932e-06
+34 3.14709677695646e-06
+35 2.96986627290607e-06
+36 2.88006413029507e-06
+37 2.71529938800086e-06
+38 2.63602987615741e-06
+39 2.57582041740534e-06
+40 2.56765838457795e-06
+41 2.38727216128609e-06
+42 2.30694240599405e-06
+43 2.23798770093708e-06
+44 2.19350818042585e-06
+45 2.08284359359823e-06
+46 2.07796460927057e-06
+47 1.99172268366965e-06
+48 1.94695712707471e-06
+49 1.90869172911334e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000163814504048787
+1 5.54991420358419e-05
+2 3.59172963726451e-06
+3 4.67471618321724e-05
+4 0.000144802339491434
+5 0.000105290942883585
+6 4.8591125960229e-05
+7 3.08711314573884e-05
+8 2.85562891804148e-05
+9 2.06475415325258e-05
+10 1.92893385246862e-05
+11 1.33188241306925e-05
+12 1.37906026793644e-05
+13 1.19015967356972e-05
+14 9.70446217252174e-06
+15 8.12394137028605e-06
+16 8.25293136585969e-06
+17 8.2663218563539e-06
+18 8.68173083290458e-06
+19 6.16717807133682e-06
+20 7.08951574779348e-06
+21 6.84065662426292e-06
+22 5.93349750488414e-06
+23 5.66652079214691e-06
+24 4.84685506307869e-06
+25 4.09499989473261e-06
+26 4.63973583464394e-06
+27 4.23413393946248e-06
+28 3.89677143175504e-06
+29 3.89185879612342e-06
+30 3.7346587760112e-06
+31 3.58859483640117e-06
+32 3.89514707421768e-06
+33 2.56571433965291e-06
+34 2.47240745920863e-06
+35 2.78130801234511e-06
+36 2.31130843530991e-06
+37 2.91875016955601e-06
+38 2.64249320025556e-06
+39 2.81391362477734e-06
+40 2.16318017010053e-06
+41 2.333987822567e-06
+42 2.40036206378136e-06
+43 2.18763580051018e-06
+44 1.93850428331643e-06
+45 2.31656781579659e-06
+46 1.88360979791469e-06
+47 2.12696022572345e-06
+48 1.79153209955984e-06
+49 1.77999152128905e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000152043314301409
+1 0.000150424471939914
+2 0.000153352608322166
+3 0.000151739586726762
+4 0.000149865445564501
+5 0.00014977490354795
+6 0.00014854472829029
+7 0.000151029729750007
+8 0.000149794184835628
+9 0.000151590866153128
+10 0.00015413215442095
+11 0.000150406980537809
+12 0.000150120744365267
+13 0.000152346852701157
+14 0.000150954496348277
+15 0.000145889716804959
+16 0.000151988613652065
+17 0.000150341147673316
+18 0.000148375664139166
+19 0.000151903659570962
+20 0.000155122776050121
+21 0.000152235152199864
+22 0.000150315740029328
+23 0.000146186503116041
+24 0.00015162248746492
+25 0.000149303406942636
+26 0.000150897889398038
+27 0.000154853580170311
+28 0.000153518951265141
+29 0.000146545746247284
+30 0.000152117529069073
+31 0.00014876967179589
+32 0.000150995329022408
+33 0.000151950036524795
+34 0.00014926164294593
+35 0.000146191741805524
+36 0.000153168846736662
+37 0.000150859646964818
+38 0.000151362401084043
+39 0.000152046501170844
+40 0.000151753207319416
+41 0.000151106505654752
+42 0.000150448133354075
+43 0.000154592678882182
+44 0.000148316510603763
+45 0.000150628984556533
+46 0.000150840263813734
+47 0.000151942818774842
+48 0.000151673608343117
+49 0.000149735875311308
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000140162810566835
+1 0.000155374291352928
+2 0.000131249063997529
+3 0.000143394281622022
+4 0.000161797943292186
+5 0.000161117161042057
+6 0.000172740357811563
+7 0.000149071944179013
+8 0.000161476462380961
+9 0.000147334387293085
+10 0.0001213743162225
+11 0.000155628033098765
+12 0.000158057315275073
+13 0.000139783893246204
+14 0.00015113984409254
+15 0.00019650835020002
+16 0.000142562435939908
+17 0.000156321737449616
+18 0.000173581400304101
+19 0.000141541706398129
+20 0.000111560912046116
+21 0.000140838979859836
+22 0.000157655085786246
+23 0.000195014508790337
+24 0.000144581485074013
+25 0.00016588979633525
+26 0.000148259670822881
+27 0.000116721566882916
+28 0.000128512619994581
+29 0.000190160921192728
+30 0.000139772775582969
+31 0.000170070328749716
+32 0.000150101303006522
+33 0.000141235723276623
+34 0.000165696270414628
+35 0.000193476138520055
+36 0.000131649037939496
+37 0.000151284315506928
+38 0.000147622922668234
+39 0.000140856005600654
+40 0.000143403813126497
+41 0.000150405947351828
+42 0.00015571340918541
+43 0.000118520925752819
+44 0.000174677770701237
+45 0.000153930610395037
+46 0.000152003529365174
+47 0.000143510056659579
+48 0.000144054705742747
+49 0.000162467113113962
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0072306681489433255, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0072306681489433255, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..1326e6fdc054c485029835e4f02335b68683420d
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0072306681489433255, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0072306681489433255, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0072306681489433255, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..b979fe12363c5d62409bb6cd6d1926272d97b6ad
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0072306681489433255, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.30823810378961e-08, ymax=0.000284740450539833,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000141913740662858
+1 1.9716073438758e-05
+2 4.64298136648722e-06
+3 5.2351151680341e-06
+4 2.03579429580714e-06
+5 1.29081490740646e-06
+6 9.67051050793089e-07
+7 7.4339010325275e-07
+8 6.29524095074885e-07
+9 5.27203155797906e-07
+10 4.41194060840644e-07
+11 4.05810027359621e-07
+12 3.46474251955442e-07
+13 3.15747797685617e-07
+14 2.83894848962518e-07
+15 2.47958780619228e-07
+16 2.30315066573894e-07
+17 2.15481023246866e-07
+18 1.98309308530042e-07
+19 1.82421302952207e-07
+20 1.61683402666313e-07
+21 1.67419955232617e-07
+22 1.52275603682028e-07
+23 1.43092862003869e-07
+24 1.44218134323637e-07
+25 1.30919303842347e-07
+26 1.18484194899793e-07
+27 1.19138633181137e-07
+28 1.08654909070083e-07
+29 1.04437418713133e-07
+30 9.57114636435108e-08
+31 9.46420115610636e-08
+32 9.1349669162355e-08
+33 8.74316299359634e-08
+34 8.24392216713932e-08
+35 8.18662684309857e-08
+36 8.70831087240731e-08
+37 7.74501387468263e-08
+38 8.21698549202665e-08
+39 7.30856086761378e-08
+40 7.13542007702017e-08
+41 6.63230110831137e-08
+42 6.57509318102711e-08
+43 6.17977420347415e-08
+44 6.03546581601222e-08
+45 5.89074673484902e-08
+46 5.76556793419059e-08
+47 5.52330732261908e-08
+48 5.24439620619432e-08
+49 5.37174678072461e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000171132414834574
+1 1.35544169097557e-05
+2 3.60290505341254e-06
+3 4.85187547383248e-06
+4 2.10214898288541e-06
+5 1.22029416615987e-06
+6 1.01416651432373e-06
+7 8.36725519093307e-07
+8 5.27976681041764e-07
+9 5.05725154198444e-07
+10 4.66973233415047e-07
+11 3.89569862591088e-07
+12 4.2026604774037e-07
+13 3.20407906428954e-07
+14 2.42828832597297e-07
+15 2.54123278864427e-07
+16 2.38106949268513e-07
+17 2.06988033824018e-07
+18 1.78853824195357e-07
+19 1.5455808011211e-07
+20 2.03819723765264e-07
+21 1.48737854033243e-07
+22 1.28426862033848e-07
+23 1.50709965396345e-07
+24 1.02492826670186e-07
+25 1.06432366919762e-07
+26 1.12978661093166e-07
+27 1.37468148864173e-07
+28 1.21389575724606e-07
+29 8.94280489660559e-08
+30 1.03901541592677e-07
+31 1.14298849496208e-07
+32 8.57942197285411e-08
+33 8.5360284174385e-08
+34 9.46775102761421e-08
+35 8.08086255688067e-08
+36 6.51971845400112e-08
+37 5.85377399886511e-08
+38 6.66701325258146e-08
+39 5.77776972932043e-08
+40 5.08192741222047e-08
+41 6.05084977678416e-08
+42 5.20186311803172e-08
+43 8.12134999250702e-08
+44 5.37878683815052e-08
+45 5.68624685115537e-08
+46 5.61812889543489e-08
+47 4.9940592106168e-08
+48 6.72617943564546e-08
+49 8.54688764206912e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000144103920320049
+1 0.000143092693178914
+2 0.000144893390825018
+3 0.00014650724187959
+4 0.000146826248965226
+5 0.000143568991916254
+6 0.000147075144923292
+7 0.000146416656207293
+8 0.000143847355502658
+9 0.00014694310084451
+10 0.000145078869536519
+11 0.000141613039886579
+12 0.000147478931467049
+13 0.000146493664942682
+14 0.000143634548294358
+15 0.000144139034091495
+16 0.000139734489494003
+17 0.000144738776725717
+18 0.000143449564347975
+19 0.000146494072396308
+20 0.000146298771142028
+21 0.000147192302392796
+22 0.000142728647915646
+23 0.000145052006701007
+24 0.000146336809848435
+25 0.000142872115247883
+26 0.000145579717354849
+27 0.000142978402436711
+28 0.000145145546412095
+29 0.000143946002935991
+30 0.000142366072395816
+31 0.000144013232784346
+32 0.000144671852467582
+33 0.000144827354233712
+34 0.000145170110045001
+35 0.000144410252687521
+36 0.000147987972013652
+37 0.000144684352562763
+38 0.000144856661790982
+39 0.000144278630614281
+40 0.00014440284576267
+41 0.000147012411616743
+42 0.000145887737744488
+43 0.000148183855344541
+44 0.000143108671181835
+45 0.000146009275340475
+46 0.000142539749504067
+47 0.000144555189763196
+48 0.000144827616168186
+49 0.000150008767377585
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000151371888932772
+1 0.000162151685799472
+2 0.000151996602653526
+3 0.000138395334943198
+4 0.000127760344184935
+5 0.00015368168533314
+6 0.000125545659102499
+7 0.000128929561469704
+8 0.000152500768308528
+9 0.000125466773170047
+10 0.000142637363751419
+11 0.000173356878804043
+12 0.000121835553727578
+13 0.000127973486087285
+14 0.000154625784489326
+15 0.000150753185153008
+16 0.000188621954293922
+17 0.000145761150633916
+18 0.000156085035996512
+19 0.000125886057503521
+20 0.000132951288833283
+21 0.000121021061204374
+22 0.00016236281953752
+23 0.000142067510751076
+24 0.000134579895529896
+25 0.000162608208484016
+26 0.000136293252580799
+27 0.000159330069436692
+28 0.000141160198836587
+29 0.000150569234392606
+30 0.000163638716912828
+31 0.000148402104969136
+32 0.00014614914834965
+33 0.000143031458719634
+34 0.000142632401548326
+35 0.000148706458276138
+36 0.000118273826956283
+37 0.000149620929732919
+38 0.000144749152241275
+39 0.000151500949868932
+40 0.000146473059430718
+41 0.000125395294162445
+42 0.000138075614813715
+43 0.000112809029815253
+44 0.000159630973939784
+45 0.000131664812215604
+46 0.000163821619935334
+47 0.000146224265336059
+48 0.000144817284308374
+49 0.000108752203232143
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007249291499608723, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007249291499608723, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..d34d3c8b9279355a8ac0c07d7fa7f1b3dacb2111
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007249291499608723, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007249291499608723, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007249291499608723, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..7eb20c5997b0b6ff46d371b2d2cc1b616695705a
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007249291499608723, Learning_Process.tex	
@@ -0,0 +1,265 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=6.97739199952506e-09, ymax=0.000296286473325576,
+ymode=log,
+ytick style={color=black},
+ytick={1e-10,1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-10}}\),
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000126131999422796
+1 5.51839821127942e-06
+2 1.32436514377332e-06
+3 6.0356688891261e-07
+4 3.90073921607836e-07
+5 7.77907644078368e-07
+6 2.14686110666662e-07
+7 1.74547594156138e-07
+8 1.41585573487646e-07
+9 1.14902682923912e-07
+10 1.07408475003012e-07
+11 9.33117263457461e-08
+12 8.04118940322951e-08
+13 7.14749859298536e-08
+14 6.21349940388427e-08
+15 5.80380863368646e-08
+16 5.53612480302945e-08
+17 4.92637859395018e-08
+18 4.54566126961709e-08
+19 4.04719102675699e-08
+20 4.08847675714696e-08
+21 3.84958198651475e-08
+22 3.42447812329283e-08
+23 3.47046906767901e-08
+24 3.17352188972109e-08
+25 3.12173717986752e-08
+26 2.95505291347808e-08
+27 2.76175633473486e-08
+28 2.66030397710892e-08
+29 2.96852906700451e-08
+30 2.39243238553399e-08
+31 2.34991208714064e-08
+32 2.29559926623324e-08
+33 2.15623057187031e-08
+34 2.11231618862939e-08
+35 2.03328998082952e-08
+36 2.07452899303462e-08
+37 1.88609217133262e-08
+38 1.82644814827881e-08
+39 1.80796231319391e-08
+40 1.76416552477576e-08
+41 1.81701338419771e-08
+42 1.69191860521778e-08
+43 1.63077302772763e-08
+44 1.56002872842009e-08
+45 1.54325583423542e-08
+46 1.42066305386379e-08
+47 1.49295402707139e-08
+48 1.47587471133193e-08
+49 1.39894629214155e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000135557958856225
+1 4.47307593276491e-06
+2 1.04230798569915e-06
+3 5.71498674162285e-07
+4 3.24577769106327e-07
+5 3.10642491285762e-07
+6 1.80057284637769e-07
+7 1.79001432343284e-07
+8 1.34917641503307e-07
+9 1.38360334744903e-07
+10 9.27136269979201e-08
+11 7.22629849292389e-08
+12 6.07699135457551e-08
+13 7.12742007635825e-08
+14 7.1564308257166e-08
+15 6.44636912738861e-08
+16 4.36302798334509e-08
+17 5.6814538851313e-08
+18 4.3461081844498e-08
+19 5.36160484898573e-08
+20 4.38583036554974e-08
+21 3.31785230400783e-08
+22 4.51824995195693e-08
+23 3.5621031457822e-08
+24 3.27860298909854e-08
+25 2.29650733984954e-08
+26 2.17314291006687e-08
+27 2.39633841658815e-08
+28 2.41992506033739e-08
+29 2.18413678254592e-08
+30 2.73356537405789e-08
+31 2.3324110642875e-08
+32 2.24660947623079e-08
+33 2.60920387518127e-08
+34 1.95735996300073e-08
+35 1.91468245702708e-08
+36 2.06136991920403e-08
+37 2.17357154497222e-08
+38 2.08004795609895e-08
+39 1.66613780550051e-08
+40 1.55529100709373e-08
+41 1.44691867376423e-08
+42 2.27171081945698e-08
+43 1.88775235443472e-08
+44 2.23665583831689e-08
+45 1.68577880543808e-08
+46 2.11836095331819e-08
+47 1.2977800167846e-08
+48 1.13255058664663e-08
+49 1.44810092805869e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000126309911138378
+1 0.000127031133160926
+2 0.000128550454974174
+3 0.000124945305287838
+4 0.000129057589219883
+5 0.000127476116176695
+6 0.000126514394651167
+7 0.000126512357383035
+8 0.000127550418255851
+9 0.000123517645988613
+10 0.000125387494335882
+11 0.000124218393466435
+12 0.000127781910123304
+13 0.000130018088384531
+14 0.000130021551740356
+15 0.000125902093714103
+16 0.000126393715618178
+17 0.000128783285617828
+18 0.000126486367662437
+19 0.000125760852824897
+20 0.000128898347611539
+21 0.000127637904370204
+22 0.000128309795400128
+23 0.000127322971820831
+24 0.000125670660054311
+25 0.000123701829579659
+26 0.000120812306704465
+27 0.000128198182210326
+28 0.000128620769828558
+29 0.0001292437518714
+30 0.000127888313727453
+31 0.000127992636407726
+32 0.000128455794765614
+33 0.000129574720631354
+34 0.000128328640130349
+35 0.000126395141705871
+36 0.000128442770801485
+37 0.000127038525533862
+38 0.000125079081044532
+39 0.00012809198233299
+40 0.000127346385852434
+41 0.000126791928778403
+42 0.000128716652397998
+43 0.000127417166368105
+44 0.000126936312881298
+45 0.000123741425340995
+46 0.000123148958664387
+47 0.000125851423945278
+48 0.000124261059681885
+49 0.000124318568850867
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000132978108013049
+1 0.000124637488625012
+2 0.000111564433609601
+3 0.000145623955177143
+4 0.000108622123661917
+5 0.000122995683341287
+6 0.000131994529510848
+7 0.000135612834128551
+8 0.000121317127195653
+9 0.000158491704496555
+10 0.000139702809974551
+11 0.00015312030154746
+12 0.000118568183097523
+13 9.95669179246761e-05
+14 0.000102908234111965
+15 0.00013901294732932
+16 0.000135152484290302
+17 0.000109177468402777
+18 0.000131691558635794
+19 0.000141370270284824
+20 0.000111250978079624
+21 0.000123381600133143
+22 0.000115418748464435
+23 0.000122460958664306
+24 0.000137211711262353
+25 0.000153321409015916
+26 0.000182535499334335
+27 0.000114740709250327
+28 0.000113834161311388
+29 0.000109352775325533
+30 0.000118082643894013
+31 0.00011926193110412
+32 0.00011533605720615
+33 0.000105399165477138
+34 0.000116469273052644
+35 0.000132474684505723
+36 0.000111206820292864
+37 0.000125213715364225
+38 0.0001448664261261
+39 0.000115832175652031
+40 0.000124821366625838
+41 0.000129312538774684
+42 0.000112601439468563
+43 0.000124523183330894
+44 0.000126906132209115
+45 0.000161352378199808
+46 0.000161866235430352
+47 0.000139535739435814
+48 0.000153413144289516
+49 0.000150747830048203
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007251604306895674, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007251604306895674, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..1194a8611f05c7137c9dce5d49da4fc0df6fda53
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007251604306895674, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007251604306895674, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007251604306895674, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..8a8394ab7789bf5aeb8f118606f8ff50c131f150
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007251604306895674, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.87670000724597e-08, ymax=0.000272551697335472,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000134587127831765
+1 1.51568119690637e-05
+2 2.8110566745454e-06
+3 1.40656356961699e-06
+4 9.19349758987664e-07
+5 6.36381685126253e-07
+6 4.94281039209454e-07
+7 4.13603288507147e-07
+8 3.54792206280763e-07
+9 2.84472406519853e-07
+10 2.55438720841994e-07
+11 2.24793197389772e-07
+12 2.11385653869911e-07
+13 1.8386147360161e-07
+14 1.60233994961345e-07
+15 1.55014873826076e-07
+16 1.47771814340558e-07
+17 1.29955012084793e-07
+18 1.25716539400855e-07
+19 1.10734973191029e-07
+20 1.05316871668037e-07
+21 1.02111521016468e-07
+22 9.66180877526313e-08
+23 8.59088515881012e-08
+24 8.78801102999205e-08
+25 8.2899163089678e-08
+26 7.32720479845739e-08
+27 7.41858698916076e-08
+28 6.79006646464586e-08
+29 6.6532741982428e-08
+30 6.4696344281856e-08
+31 5.85505119943264e-08
+32 5.73007561399663e-08
+33 5.61907356200209e-08
+34 5.07099890967311e-08
+35 5.31354196198208e-08
+36 5.06129858024451e-08
+37 4.78314952090386e-08
+38 4.55936159937664e-08
+39 4.42255903010391e-08
+40 4.26784758644772e-08
+41 4.41765024561391e-08
+42 4.06173974454305e-08
+43 3.88302012765962e-08
+44 3.71099346807569e-08
+45 3.58984095782944e-08
+46 3.4423603523237e-08
+47 3.53948905740253e-08
+48 3.45476429686187e-08
+49 3.37297372254852e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000140950694913045
+1 1.28955725813285e-05
+2 2.31789726967691e-06
+3 1.53934308855241e-06
+4 8.24348546757392e-07
+5 6.64814649553591e-07
+6 5.51888831523684e-07
+7 3.67542014600986e-07
+8 2.25758299166046e-07
+9 3.13542528829203e-07
+10 2.54249897579939e-07
+11 2.31455445032225e-07
+12 1.61676055654425e-07
+13 1.52977676748378e-07
+14 1.66778917787269e-07
+15 1.46777423992717e-07
+16 1.38423203566163e-07
+17 1.11919689516071e-07
+18 1.11404631297773e-07
+19 1.00622401077999e-07
+20 9.31445072183124e-08
+21 9.06716124404738e-08
+22 8.90294273858672e-08
+23 1.14582626054016e-07
+24 7.82851756753189e-08
+25 7.45894226383825e-08
+26 8.21250907279136e-08
+27 5.98784737348979e-08
+28 7.50437791907643e-08
+29 6.75280702466807e-08
+30 5.73495988476225e-08
+31 5.41560005729025e-08
+32 5.58250015103567e-08
+33 4.74986912024633e-08
+34 5.66047404504388e-08
+35 4.68262051356305e-08
+36 4.1471349021549e-08
+37 3.62581822344055e-08
+38 3.83981237916942e-08
+39 3.85709384431721e-08
+40 4.29957474068487e-08
+41 3.86684213538047e-08
+42 4.15082119786803e-08
+43 3.83872915676875e-08
+44 2.90120976131902e-08
+45 3.37267600514224e-08
+46 3.03861718009557e-08
+47 3.18687014555508e-08
+48 3.59387861692539e-08
+49 3.57107303727844e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000137798837386072
+1 0.000134960428113118
+2 0.000133278124849312
+3 0.000135408379719593
+4 0.000131446766317822
+5 0.000137047551106662
+6 0.000134307963890024
+7 0.000135104652144946
+8 0.00013473501894623
+9 0.000134836518554948
+10 0.000133479261421598
+11 0.000136203059810214
+12 0.000136014423333108
+13 0.000134261281345971
+14 0.00013317413686309
+15 0.000134830857859924
+16 0.000130183776491322
+17 0.000134239642648026
+18 0.000135347960167564
+19 0.000135212685563602
+20 0.000135159818455577
+21 0.000137097347760573
+22 0.000132381159346551
+23 0.000135783484438434
+24 0.000134909350890666
+25 0.000133297362481244
+26 0.000136085378471762
+27 0.000134147325297818
+28 0.000134663714561611
+29 0.000135028516524471
+30 0.000132969100377522
+31 0.000134760543005541
+32 0.000134316520416178
+33 0.000132675224449486
+34 0.00013457729073707
+35 0.000131674751173705
+36 0.000135788868647069
+37 0.000133095702040009
+38 0.00013617730292026
+39 0.000134512316435575
+40 0.000137689770781435
+41 0.000136753093102016
+42 0.000132699438836426
+43 0.000132839864818379
+44 0.000133153298520483
+45 0.000137515540700406
+46 0.000132968212710693
+47 0.00013345229672268
+48 0.000135493799461983
+49 0.00013672148634214
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.00011177227133885
+1 0.000144054807606153
+2 0.000148099454236217
+3 0.000131330438307486
+4 0.00017122294229921
+5 0.000109355329186656
+6 0.000141657583299093
+7 0.000126540850033052
+8 0.000140039119287394
+9 0.000133125387947075
+10 0.000150391584611498
+11 0.000121367062092759
+12 0.000130791406263597
+13 0.000142956618219614
+14 0.000150184918311425
+15 0.000136217568069696
+16 0.000176304994965903
+17 0.000138287301524542
+18 0.00013109965948388
+19 0.00013184487761464
+20 0.000134097339469008
+21 0.000113943046017084
+22 0.000158376744366251
+23 0.000125291699077934
+24 0.000137484850711189
+25 0.000149662082549185
+26 0.000125985854538158
+27 0.000145299462019466
+28 0.000137404218548909
+29 0.000134855552460067
+30 0.000152236942085437
+31 0.000136000089696608
+32 0.000143017299706116
+33 0.000154469656990841
+34 0.000140453994390555
+35 0.000168716927873902
+36 0.000127638762933202
+37 0.000150238076457754
+38 0.000126317405374721
+39 0.000141252181492746
+40 0.000112449713924434
+41 0.000115656832349487
+42 0.000153008790221065
+43 0.000154019668116234
+44 0.000152141554281116
+45 0.000109464490378741
+46 0.000153283981489949
+47 0.000149723680806346
+48 0.000130636952235363
+49 0.000118320866022259
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007256539706629733, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007256539706629733, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..eec02ee4d1b22965a09e2a0ce9b0f40352496ca0
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007256539706629733, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007256539706629733, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007256539706629733, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..5724fe75efc381fface2aa922820e053d30a898a
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007256539706629733, Learning_Process.tex	
@@ -0,0 +1,256 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.83976964216619e-06, ymax=0.00227236075406269,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000154961628140882
+1 0.000445421668700874
+2 0.00167692604009062
+3 0.000182069881702773
+4 4.35745932918508e-05
+5 3.59058140020352e-05
+6 3.06069196085446e-05
+7 2.86475860775681e-05
+8 2.61993973253993e-05
+9 2.30753284995444e-05
+10 2.14596457226435e-05
+11 2.00859740289161e-05
+12 1.88695958058815e-05
+13 1.75660024979152e-05
+14 1.66710633493494e-05
+15 1.54280787683092e-05
+16 1.46054835568066e-05
+17 1.38217692438047e-05
+18 1.29686468426371e-05
+19 1.23217778309481e-05
+20 1.1659395568131e-05
+21 1.14069634946645e-05
+22 1.09666361822747e-05
+23 1.01217647170415e-05
+24 9.87861403700663e-06
+25 9.4317847469938e-06
+26 9.14202064450365e-06
+27 8.75488785823109e-06
+28 8.49154548632214e-06
+29 8.0988302215701e-06
+30 7.88502165960381e-06
+31 7.47002331991098e-06
+32 7.4603908615245e-06
+33 7.22198228686466e-06
+34 7.02995657775318e-06
+35 6.54015593681834e-06
+36 6.4751175159472e-06
+37 6.34871730653686e-06
+38 6.15379667578964e-06
+39 6.04395791015122e-06
+40 5.72695489609032e-06
+41 5.70689371670596e-06
+42 5.45302464161068e-06
+43 5.3116027629585e-06
+44 5.38637414138066e-06
+45 5.00308533446514e-06
+46 4.99693942401791e-06
+47 4.89229887534748e-06
+48 4.84814790979726e-06
+49 4.76281638839282e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000171754552866332
+1 2.76272676273948e-05
+2 0.000257176725426689
+3 7.37676818971522e-05
+4 4.77373578178231e-05
+5 3.32126110151876e-05
+6 3.78342447220348e-05
+7 2.4355515051866e-05
+8 2.24602390517248e-05
+9 2.85472287941957e-05
+10 2.48105297941947e-05
+11 1.89218098967103e-05
+12 1.85855587915285e-05
+13 1.76592675416032e-05
+14 1.48263925439096e-05
+15 1.60435920406599e-05
+16 1.63632248586509e-05
+17 1.31213400891284e-05
+18 1.39418307298911e-05
+19 1.33565890791942e-05
+20 1.34495148813585e-05
+21 1.00421993920463e-05
+22 8.39252697915072e-06
+23 1.16160344987293e-05
+24 9.83000336418627e-06
+25 9.73779424384702e-06
+26 8.3601471487782e-06
+27 8.73284170666011e-06
+28 7.16752128937514e-06
+29 8.02313934400445e-06
+30 7.33817887521582e-06
+31 8.24976632429752e-06
+32 5.49452443010523e-06
+33 6.04479464527685e-06
+34 5.24947927260655e-06
+35 7.28481109035783e-06
+36 6.20749915469787e-06
+37 6.49233197691501e-06
+38 5.96941390540451e-06
+39 5.53236395717249e-06
+40 5.98606948187808e-06
+41 5.00336000186508e-06
+42 5.77495802644989e-06
+43 5.79289462621091e-06
+44 4.30871477874462e-06
+45 5.97331336393836e-06
+46 4.91241917188745e-06
+47 4.91693026560824e-06
+48 4.14761188949342e-06
+49 3.84810118703172e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000159058618010022
+1 0.000157127200509422
+2 0.000153826695168391
+3 0.000155746092787012
+4 0.000157731512445025
+5 0.000157344533363357
+6 0.000157923786900938
+7 0.000156635986058973
+8 0.000155862318933941
+9 0.000156278154463507
+10 0.000157603310071863
+11 0.000160888943355531
+12 0.000152767490362749
+13 0.000155011468450539
+14 0.000152722728671506
+15 0.000157088143168949
+16 0.000156459151185118
+17 0.000154441047925502
+18 0.000156219335622154
+19 0.000155088870087638
+20 0.000158811104483902
+21 0.000154621127876453
+22 0.000157260685227811
+23 0.000157903807121329
+24 0.000156457143020816
+25 0.000160236886586063
+26 0.000157149319420569
+27 0.000153357264935039
+28 0.000156799636897631
+29 0.000157285583554767
+30 0.000157304384629242
+31 0.000156704598339275
+32 0.000154792360262945
+33 0.00015307187277358
+34 0.000155611531226896
+35 0.00015796537627466
+36 0.000156974361743778
+37 0.000155644069309346
+38 0.000157505390234292
+39 0.000156410285853781
+40 0.000157859351020306
+41 0.000156348425662145
+42 0.000157036891323514
+43 0.000158475988428108
+44 0.00015752439503558
+45 0.000157850110554136
+46 0.000156645081005991
+47 0.000155809218995273
+48 0.000155468820594251
+49 0.000155816524056718
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000134253394207917
+1 0.000149515180964954
+2 0.000178739413968287
+3 0.000162611482664943
+4 0.000147152692079544
+5 0.000149230138049461
+6 0.000142458273330703
+7 0.000152417240315117
+8 0.000165343910339288
+9 0.000157307164045051
+10 0.000148433347931132
+11 0.00011629234359134
+12 0.00019272013742011
+13 0.000177586742211133
+14 0.000189173413673416
+15 0.000153709392179735
+16 0.000157769987708889
+17 0.000174129861989059
+18 0.000163019285537302
+19 0.000168837024830282
+20 0.000138218267238699
+21 0.000175165114342235
+22 0.000152103064465337
+23 0.000144068035297096
+24 0.000156450158101507
+25 0.000122870551422238
+26 0.000151998028741218
+27 0.000177322523086332
+28 0.000152614156831987
+29 0.000147838916745968
+30 0.00015072911628522
+31 0.000155782327055931
+32 0.00017518647655379
+33 0.000185390657861717
+34 0.000163701319252141
+35 0.000143606492201798
+36 0.000149856728967279
+37 0.000164304845384322
+38 0.0001505590043962
+39 0.000155146670294926
+40 0.00014319630281534
+41 0.000159787363372743
+42 0.000155110959894955
+43 0.000137817958602682
+44 0.000147258324432187
+45 0.000137086128233932
+46 0.000152779670315795
+47 0.000159610717673786
+48 0.000162418771651573
+49 0.000161695716087706
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00726378880649718, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00726378880649718, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..58f02cc66641128ff2bb21db93f690d8abd94850
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00726378880649718, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00726378880649718, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00726378880649718, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..8c992a8987732789fe39b89b5a47eb5548477092
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00726378880649718, Learning_Process.tex	
@@ -0,0 +1,256 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.25859592229227e-06, ymax=0.00665202360148722,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00015332740440499
+1 1.07616433524527e-05
+2 3.13295890919107e-06
+3 4.47375314251985e-05
+4 0.00450529716908932
+5 0.00381168792955577
+6 0.0012257230700925
+7 0.000501061382237822
+8 0.000324816646752879
+9 0.000241615096456371
+10 0.000191113271284848
+11 0.000157911417772993
+12 0.00013451831182465
+13 0.000115759103209712
+14 0.000103790494904388
+15 9.30008609429933e-05
+16 8.15186285763048e-05
+17 7.4980671342928e-05
+18 6.77472926327027e-05
+19 6.02386353421025e-05
+20 5.6709504860919e-05
+21 5.23494782100897e-05
+22 4.81089082313702e-05
+23 4.47306374553591e-05
+24 4.21597869717516e-05
+25 4.10181273764465e-05
+26 3.78516160708386e-05
+27 3.56124692189042e-05
+28 3.33254429278895e-05
+29 3.16357327392325e-05
+30 3.04278619296383e-05
+31 2.85494879790349e-05
+32 2.75787697319174e-05
+33 2.64483423961792e-05
+34 2.53222788160201e-05
+35 2.37925341934897e-05
+36 2.3117512682802e-05
+37 2.20772199099883e-05
+38 2.20685215026606e-05
+39 2.17068190977443e-05
+40 1.98937668756116e-05
+41 1.91798753803596e-05
+42 1.8262218873133e-05
+43 1.7608606867725e-05
+44 1.73655716935173e-05
+45 1.68707538250601e-05
+46 1.61930129252141e-05
+47 1.59861028805608e-05
+48 1.54101853695465e-05
+49 1.49501611304004e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000127688123029657
+1 1.43114057209459e-05
+2 0.000434088957263157
+3 1.85830356258521e-06
+4 0.000103027865407057
+5 0.000245708768488839
+6 0.00134055770467967
+7 0.000362648745067418
+8 0.000307101377984509
+9 0.000239082830375992
+10 0.000192379840882495
+11 0.000153918284922838
+12 0.000135739493998699
+13 0.000118507727165706
+14 9.14745178306475e-05
+15 7.59984613978304e-05
+16 7.94190855231136e-05
+17 6.72389214741997e-05
+18 5.99251725361682e-05
+19 7.01399039826356e-05
+20 5.3048937843414e-05
+21 5.03800074511673e-05
+22 5.22004229424056e-05
+23 4.95378299092408e-05
+24 4.43507669842802e-05
+25 3.85467974410858e-05
+26 3.35170261678286e-05
+27 3.33453972416464e-05
+28 3.47469358530361e-05
+29 3.2777403248474e-05
+30 2.76077189482749e-05
+31 2.99513631034642e-05
+32 2.7444173611002e-05
+33 2.50499870162457e-05
+34 2.23077149712481e-05
+35 2.56267794611631e-05
+36 2.15206746361218e-05
+37 2.22059952648124e-05
+38 1.92992156371474e-05
+39 2.06337372219423e-05
+40 1.80795486812713e-05
+41 1.82036037585931e-05
+42 1.92792722373269e-05
+43 1.88290105143096e-05
+44 1.55756715685129e-05
+45 1.44554096550564e-05
+46 1.57097638293635e-05
+47 1.25508840937982e-05
+48 1.45080794027308e-05
+49 1.27601888380013e-05
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000151093510794453
+1 0.000150891661178321
+2 0.000154073000885546
+3 0.000148228529724292
+4 0.000150988140376285
+5 0.000151345171616413
+6 0.000150027597555891
+7 0.000150504056364298
+8 0.000152790191350505
+9 0.000149135405081324
+10 0.00015489432553295
+11 0.000150213410961442
+12 0.000149380168295465
+13 0.000151105632539839
+14 0.000148890088894404
+15 0.000151930013089441
+16 0.000155024434207007
+17 0.000152871507452801
+18 0.000152238484588452
+19 0.000149625251651742
+20 0.000149872677866369
+21 0.000150482417666353
+22 0.000151257219840772
+23 0.00015141288167797
+24 0.000147649625432678
+25 0.000150877254782245
+26 0.000144494799314998
+27 0.000152425142005086
+28 0.000150172694702633
+29 0.000151865067891777
+30 0.000151684042066336
+31 0.000153779401443899
+32 0.00014996160462033
+33 0.000150052554090507
+34 0.000151614149217494
+35 0.000152006643475033
+36 0.000149855972267687
+37 0.000147526297951117
+38 0.00014657540305052
+39 0.000148431354318745
+40 0.000151124142576009
+41 0.000153242595843039
+42 0.000148737628478557
+43 0.00015245599206537
+44 0.000147294951602817
+45 0.000156410576892085
+46 0.00015417484974023
+47 0.000149574043462053
+48 0.000151954314787872
+49 0.000153195156599395
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000147185448440723
+1 0.000147316648508422
+2 0.000120308970508631
+3 0.000170676066773012
+4 0.000148212289786898
+5 0.00014478484808933
+6 0.000154939058120362
+7 0.000152613545651548
+8 0.000133897745399736
+9 0.00016219646204263
+10 0.000123462741612457
+11 0.000154661014676094
+12 0.000163233620696701
+13 0.000147970233228989
+14 0.000167250327649526
+15 0.000139662995934486
+16 0.000114713868242688
+17 0.000131513501401059
+18 0.000138092305860482
+19 0.000159854462253861
+20 0.00015913053357508
+21 0.000154733032104559
+22 0.000144395729876123
+23 0.000146362232044339
+24 0.000177288049599156
+25 0.00014938747335691
+26 0.000207338598556817
+27 0.000134085406898521
+28 0.000156901296577416
+29 0.000140106843900867
+30 0.000137259165057912
+31 0.000121518540254328
+32 0.000158449693117291
+33 0.000157220187247731
+34 0.000145254321978427
+35 0.000140637319418602
+36 0.000160179828526452
+37 0.000179998474777676
+38 0.000187917961739004
+39 0.000169418533914723
+40 0.000148067440022714
+41 0.000127971841720864
+42 0.000167983875144273
+43 0.000134910034830682
+44 0.000181005510967225
+45 0.000100400087831076
+46 0.000118780320917722
+47 0.00016147515270859
+48 0.000138879622681998
+49 0.000127101156977005
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007281847600323151, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007281847600323151, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..dc81c47f6ccd5e3051b825269d462d84f9c7d0ed
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007281847600323151, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007281847600323151, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007281847600323151, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..58d80aa7f8c0d07bcb390f1baa14bba003ac004b
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007281847600323151, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.26975532427342e-08, ymax=0.000273701513792835,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000142467397381552
+1 1.29052878037328e-05
+2 1.99850501303445e-06
+3 9.70679138845298e-07
+4 6.82351753766852e-07
+5 4.57290013855527e-07
+6 3.45610089880211e-07
+7 2.84711489939582e-07
+8 2.33028288221249e-07
+9 2.07165783194796e-07
+10 1.8036560334167e-07
+11 1.50734393855601e-07
+12 1.39178439440002e-07
+13 1.23573627774931e-07
+14 1.12343563785089e-07
+15 1.04801095801577e-07
+16 9.46693532455356e-08
+17 8.43733474198416e-08
+18 7.76028201698864e-08
+19 7.60712879355196e-08
+20 6.87757477635387e-08
+21 6.70532784852185e-08
+22 6.5400030280216e-08
+23 5.88570827630974e-08
+24 5.71140255090086e-08
+25 5.41777680496125e-08
+26 5.05306871900757e-08
+27 4.66042173741243e-08
+28 4.34896669787577e-08
+29 4.39994956025203e-08
+30 4.21114982884774e-08
+31 4.03757454137121e-08
+32 4.08729192713508e-08
+33 3.88428738062885e-08
+34 3.5839459400222e-08
+35 3.3559647505399e-08
+36 3.24929629869075e-08
+37 3.28823084316809e-08
+38 3.03921297017951e-08
+39 3.09965635381104e-08
+40 3.06169205543938e-08
+41 2.80210574743478e-08
+42 2.88788672975215e-08
+43 2.76623381978425e-08
+44 2.60522892148174e-08
+45 2.5496699862515e-08
+46 2.42602435918116e-08
+47 2.55300065532538e-08
+48 2.36499850814198e-08
+49 2.39427713211171e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000134404792333953
+1 2.26552456297213e-05
+2 1.79673259026458e-06
+3 1.12092834569921e-06
+4 5.47473575807089e-07
+5 3.25133669321076e-07
+6 3.42028044997278e-07
+7 2.42272761852291e-07
+8 2.89105372530685e-07
+9 2.0205375506066e-07
+10 2.16005247466455e-07
+11 1.96167363242239e-07
+12 1.27202923749792e-07
+13 1.34516753291791e-07
+14 1.29338715737504e-07
+15 9.23926748441772e-08
+16 8.11439804238034e-08
+17 1.22260658486084e-07
+18 1.19702562528801e-07
+19 8.62188969108502e-08
+20 8.36971238982187e-08
+21 6.06768324473705e-08
+22 5.22853156326164e-08
+23 6.6686375532754e-08
+24 4.41846808030277e-08
+25 4.41457750355312e-08
+26 3.99311197440966e-08
+27 4.40843024307469e-08
+28 6.01426677349082e-08
+29 3.68029446917717e-08
+30 3.49187594395062e-08
+31 3.71851562874781e-08
+32 3.85458065466082e-08
+33 3.50604096865936e-08
+34 3.44358745962836e-08
+35 4.03937754356321e-08
+36 3.45303767801397e-08
+37 2.89800823338737e-08
+38 3.32804468428094e-08
+39 2.79329732677525e-08
+40 3.09310514978733e-08
+41 2.75523586168447e-08
+42 2.35775150514428e-08
+43 2.5269057957189e-08
+44 2.62780073256863e-08
+45 2.94493389674244e-08
+46 2.80787251227821e-08
+47 2.11191117927001e-08
+48 2.81745951014045e-08
+49 1.99848049220464e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000140437230584212
+1 0.000139182491693646
+2 0.000139815179863945
+3 0.000141990269185044
+4 0.000140288088005036
+5 0.000144062127219513
+6 0.000143156925332732
+7 0.000141640353831463
+8 0.000144246107083745
+9 0.000140440155519173
+10 0.00013813262921758
+11 0.000141924581839703
+12 0.00014443248801399
+13 0.000143121127621271
+14 0.000140341930091381
+15 0.000144741381518543
+16 0.000140774354804307
+17 0.000141804426675662
+18 0.000148267950862646
+19 0.000139116556965746
+20 0.000144673555041663
+21 0.000142793011036702
+22 0.000141482989420183
+23 0.000141777345561422
+24 0.000142113392939791
+25 0.000142139615491033
+26 0.000140481861308217
+27 0.0001422544446541
+28 0.00014144646411296
+29 0.0001420709741069
+30 0.000142319520819001
+31 0.000141721538966522
+32 0.000140464966534637
+33 0.000141759897815064
+34 0.000140782649395987
+35 0.000144648613058962
+36 0.000140296542667784
+37 0.000142330347443931
+38 0.000139460957143456
+39 0.000140002724947408
+40 0.000144426638144068
+41 0.000141519863973372
+42 0.000143074779771268
+43 0.000142656994285062
+44 0.000143456796649843
+45 0.000142990393214859
+46 0.000142384960781783
+47 0.000140820979140699
+48 0.000141198514029384
+49 0.000141807031468488
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000148626815644093
+1 0.000165320045198314
+2 0.000161062125698663
+3 0.000138701390824281
+4 0.000154061359353364
+5 0.000118312302220147
+6 0.000131307897390798
+7 0.000140202260809019
+8 0.000118515687063336
+9 0.000151829372043721
+10 0.000173899097717367
+11 0.000139490643050522
+12 0.000117054165457375
+13 0.000129079242469743
+14 0.000156000009155832
+15 0.000114598449727055
+16 0.00015182989591267
+17 0.0001394969294779
+18 0.000137710172566585
+19 0.000165753386681899
+20 0.000114986280095764
+21 0.000132095301523805
+22 0.000141085125505924
+23 0.000140322357765399
+24 0.000138343079015613
+25 0.000135929047246464
+26 0.000153286426211707
+27 0.000136747767101042
+28 0.000145382364280522
+29 0.000137933675432578
+30 0.000134045796585269
+31 0.000142076256452128
+32 0.000152027379954234
+33 0.00014128714974504
+34 0.000146828009746969
+35 0.000119795324280858
+36 0.000153528279042803
+37 0.000134255722514354
+38 0.00016017300367821
+39 0.000156246169353835
+40 0.000115165654278826
+41 0.000141665441333316
+42 0.000127608553157188
+43 0.000134168993099593
+44 0.000126263985293917
+45 0.000130301079479977
+46 0.000134956469992176
+47 0.000149211409734562
+48 0.000146020465763286
+49 0.000139644602313638
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007305852616227515, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007305852616227515, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..245b043506cc34e112b082bcb030db8963d621c9
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007305852616227515, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007305852616227515, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007305852616227515, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..2965deddf38b0a885b161fc2d0982d9dc4fe82e4
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007305852616227515, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.05775790036447e-08, ymax=0.000356176517546769,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000151805827044882
+1 6.51061054668389e-06
+2 1.73981538864609e-06
+3 9.47606451973115e-07
+4 5.59005911782151e-07
+5 3.83550656124498e-07
+6 2.85794413912299e-07
+7 2.22072159772324e-07
+8 1.9094571257483e-07
+9 1.61059247716366e-07
+10 1.44246001809734e-07
+11 1.2283246064726e-07
+12 1.0755005774854e-07
+13 9.47122344996387e-08
+14 8.50927932560808e-08
+15 7.85006903925023e-08
+16 7.16822228241654e-08
+17 6.68867699005204e-08
+18 6.09648793670203e-08
+19 5.61705419954706e-08
+20 5.45565477239052e-08
+21 5.00216081888993e-08
+22 4.76109534019997e-08
+23 4.46035208767626e-08
+24 4.26942854403478e-08
+25 4.05438633777067e-08
+26 3.85361218491198e-08
+27 3.72065436238245e-08
+28 3.42182921997392e-08
+29 3.21966595606682e-08
+30 3.12323535922587e-08
+31 3.16335189154415e-08
+32 2.8513403194097e-08
+33 2.85897385765566e-08
+34 2.70282587422344e-08
+35 2.57888093102565e-08
+36 2.52908343156832e-08
+37 2.51873544243608e-08
+38 2.38291200105323e-08
+39 2.23743281679845e-08
+40 2.17601545671187e-08
+41 2.09517452276486e-08
+42 2.06464694230135e-08
+43 2.0396656807975e-08
+44 2.04044390272884e-08
+45 1.94111056117663e-08
+46 1.83497714800751e-08
+47 1.7898548421158e-08
+48 1.72832841371928e-08
+49 1.76268315499328e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000181955765583552
+1 7.37840309739113e-06
+2 1.57543456680287e-06
+3 9.77645754574041e-07
+4 4.60002610225274e-07
+5 3.65400438795405e-07
+6 2.5956745730582e-07
+7 2.7429686610958e-07
+8 1.83819665267038e-07
+9 1.59041164238261e-07
+10 1.18791284364761e-07
+11 1.05281309004113e-07
+12 1.07796338966182e-07
+13 1.08982661117807e-07
+14 8.61986890754451e-08
+15 7.89144891655269e-08
+16 7.70582957443366e-08
+17 7.4246202075301e-08
+18 5.66185569539357e-08
+19 5.58042891896093e-08
+20 5.59930803945008e-08
+21 5.75582923545426e-08
+22 5.09633188983116e-08
+23 4.03939921511665e-08
+24 4.22412398393135e-08
+25 3.64718175660528e-08
+26 4.45346373112443e-08
+27 2.99003488635208e-08
+28 3.63385836976704e-08
+29 3.20250563845548e-08
+30 3.23645075184231e-08
+31 2.43271962574454e-08
+32 2.94734157080256e-08
+33 3.41321992891608e-08
+34 2.67695394740031e-08
+35 2.34492176787171e-08
+36 2.54233878393961e-08
+37 2.64846047315359e-08
+38 2.12261710430539e-08
+39 2.63133586031472e-08
+40 1.9620378211016e-08
+41 2.34118981978781e-08
+42 1.95244655998295e-08
+43 1.89302742370501e-08
+44 1.9198012068955e-08
+45 2.21321414528575e-08
+46 1.80821171369416e-08
+47 1.82970918416459e-08
+48 1.88273183709953e-08
+49 1.69891514190113e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000153068816871382
+1 0.000149327795952559
+2 0.000155298243043944
+3 0.000154763751197606
+4 0.000154735025716946
+5 0.000152171807712875
+6 0.000157954447786324
+7 0.000156197769683786
+8 0.000152234657434747
+9 0.000153279019286856
+10 0.000153710585436784
+11 0.000157712987856939
+12 0.000156080976012163
+13 0.000159430666826665
+14 0.000156750145833939
+15 0.000154557710629888
+16 0.000151868109242059
+17 0.000158085691509768
+18 0.000149320301716216
+19 0.000156402704305947
+20 0.000161569580086507
+21 0.000155457324581221
+22 0.00014994916273281
+23 0.000156985057401471
+24 0.000156587208039127
+25 0.000147042141179554
+26 0.000152918466483243
+27 0.00015470247308258
+28 0.000155618545250036
+29 0.00015579306636937
+30 0.000151413085404783
+31 0.000156926747877151
+32 0.00015032735245768
+33 0.00015655517927371
+34 0.000153802800923586
+35 0.000155945541337132
+36 0.000153235683683306
+37 0.000155332250869833
+38 0.0001492422161391
+39 0.000156240319483913
+40 0.00015429689665325
+41 0.000153731380123645
+42 0.000157710659550503
+43 0.000154614899656735
+44 0.000156490597873926
+45 0.000154358975123614
+46 0.000148335224366747
+47 0.000157566770212725
+48 0.000147604121593758
+49 0.000155978923430666
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000168682541698217
+1 0.000201574366656132
+2 0.000147997328895144
+3 0.00015609800175298
+4 0.0001551497989567
+5 0.000177021094714291
+6 0.000124269325169735
+7 0.000140324889798649
+8 0.000176199624547735
+9 0.000166476544109173
+10 0.000162005322636105
+11 0.000128746003611013
+12 0.000143199693411589
+13 0.000113290676381439
+14 0.000138362680445425
+15 0.000155230038217269
+16 0.000179895738256164
+17 0.000125555277918465
+18 0.000201433242182247
+19 0.000149304090882652
+20 9.31989707169123e-05
+21 0.000146865640999749
+22 0.000196651322767138
+23 0.000133316571009345
+24 0.000138646384584717
+25 0.000221758295083418
+26 0.000173937252839096
+27 0.000154868292156607
+28 0.000147431244840845
+29 0.000144737350638025
+30 0.000181916650035419
+31 0.000136612012283877
+32 0.000192995430552401
+33 0.000137625029310584
+34 0.000164435929036699
+35 0.000142887802212499
+36 0.000169461680343375
+37 0.000145579484524205
+38 0.000204823678359389
+39 0.000143663273775019
+40 0.000155425106640905
+41 0.000163216871442273
+42 0.000127295206766576
+43 0.000157348928041756
+44 0.000139665469760075
+45 0.000156781636178493
+46 0.000212057304452173
+47 0.000130199550767429
+48 0.000220652946154587
+49 0.000142234479426406
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007316027298607551, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007316027298607551, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..dca90b4f1fc80c7f5b6d1cdbae5baddb7df90958
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007316027298607551, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007316027298607551, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007316027298607551, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..cc6bb2748641d1ff536cec6ca9c864446b42dc26
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007316027298607551, Learning_Process.tex	
@@ -0,0 +1,265 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=7.78753432199561e-09, ymax=0.000324856884617158,
+ymode=log,
+ytick style={color=black},
+ytick={1e-10,1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-10}}\),
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000142491626320407
+1 7.98364635556936e-06
+2 1.47726098020939e-06
+3 6.94788809596503e-07
+4 4.17269546915122e-07
+5 3.07059593751546e-07
+6 2.25613945303849e-07
+7 1.87766460157945e-07
+8 1.45669432072282e-07
+9 1.24696143188885e-07
+10 1.12887917680382e-07
+11 9.38790165605496e-08
+12 8.42657641442202e-08
+13 7.81659892368225e-08
+14 6.85180623349879e-08
+15 6.18238900074175e-08
+16 5.67464262246631e-08
+17 5.36023385677709e-08
+18 4.79854058710316e-08
+19 4.78378368029553e-08
+20 4.44707382030174e-08
+21 4.4210128891109e-08
+22 3.96915247335983e-08
+23 3.73661457331309e-08
+24 3.59994700716015e-08
+25 3.42124160113144e-08
+26 3.17994270915278e-08
+27 3.03023206527087e-08
+28 2.90444717165883e-08
+29 2.6883476778039e-08
+30 2.67636206530142e-08
+31 2.54482888095708e-08
+32 2.53752787671147e-08
+33 2.44558080453317e-08
+34 2.3337195287354e-08
+35 2.12347543993019e-08
+36 2.04881782650546e-08
+37 2.01942711441916e-08
+38 1.99631724484561e-08
+39 1.90106703712445e-08
+40 1.93142124516044e-08
+41 1.82402857262787e-08
+42 1.7659735007669e-08
+43 1.73192002961287e-08
+44 1.68794951349582e-08
+45 1.62616267118665e-08
+46 1.60631969947644e-08
+47 1.56285278052337e-08
+48 1.53159849247686e-08
+49 1.46587231242279e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000165268313139677
+1 9.01089242688613e-06
+2 1.43003671837505e-06
+3 5.2320910981507e-07
+4 3.85726224294558e-07
+5 2.22965240936901e-07
+6 2.54068567073773e-07
+7 1.33171170091373e-07
+8 1.76537227503104e-07
+9 1.37341359618404e-07
+10 1.11956389048373e-07
+11 1.21239892791891e-07
+12 9.21471539072627e-08
+13 6.55293916906885e-08
+14 7.25558848557739e-08
+15 7.07382383779986e-08
+16 6.12827051327258e-08
+17 5.0204711499191e-08
+18 5.62039943474701e-08
+19 4.0153192770731e-08
+20 4.35919673691387e-08
+21 3.41678472182139e-08
+22 4.20038226423003e-08
+23 4.24626414030627e-08
+24 3.52972904238413e-08
+25 3.03774605470153e-08
+26 2.67040896062554e-08
+27 2.80718559508841e-08
+28 2.67858695224277e-08
+29 2.70644999744718e-08
+30 2.11441264497125e-08
+31 2.74142575307224e-08
+32 1.86259150325441e-08
+33 2.23649578856566e-08
+34 1.80937185234598e-08
+35 2.20659970295856e-08
+36 2.40386981431584e-08
+37 2.17649684941534e-08
+38 1.98993923561375e-08
+39 1.72741874138183e-08
+40 1.26302879266404e-08
+41 1.41387630492318e-08
+42 1.26899228902744e-08
+43 1.54884123304555e-08
+44 1.59560062940045e-08
+45 1.56743116264124e-08
+46 1.67331872802379e-08
+47 1.55710129234876e-08
+48 1.38813858185927e-08
+49 1.65184594891343e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000144284596899524
+1 0.000147735729115084
+2 0.000143863609991968
+3 0.000144018995342776
+4 0.000147400671266951
+5 0.000141080134199001
+6 0.00014626604388468
+7 0.000141744560096413
+8 0.000141327967867255
+9 0.000143609941005707
+10 0.000141073498525657
+11 0.000138675590278581
+12 0.00014272662519943
+13 0.00014434233889915
+14 0.000142805321956985
+15 0.000145148427691311
+16 0.000141947995871305
+17 0.00014430214650929
+18 0.000144529549288563
+19 0.000147468017530628
+20 0.000146420701639727
+21 0.000144393998198211
+22 0.000146088714245707
+23 0.000147126746014692
+24 0.0001466452376917
+25 0.000146420701639727
+26 0.000140747331897728
+27 0.000148429855471477
+28 0.000143890647450462
+29 0.000145651982165873
+30 0.000145741709275171
+31 0.000146558464621194
+32 0.000145881029311568
+33 0.000148968669236638
+34 0.000144160891068168
+35 0.000147244994877838
+36 0.000145862519275397
+37 0.00014389495481737
+38 0.000144312609336339
+39 0.000147130922414362
+40 0.000145344791235402
+41 0.000146666730870493
+42 0.000142558361403644
+43 0.000142131262691692
+44 0.000145052021252923
+45 0.000148991428432055
+46 0.000145318466820754
+47 0.00014692748663947
+48 0.000145804180647247
+49 0.000147260972880758
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000150135834701359
+1 0.000118625488539692
+2 0.00015300975064747
+3 0.000152642838656902
+4 0.000121991375635844
+5 0.00017631080118008
+6 0.00013122362724971
+7 0.000172326414030977
+8 0.000177738475031219
+9 0.000156041976879351
+10 0.000178705624421127
+11 0.000200299007701688
+12 0.00016621538088657
+13 0.000148595558130182
+14 0.000166642290423624
+15 0.000142349905217998
+16 0.000171113162650727
+17 0.000148010207340121
+18 0.000150929816300049
+19 0.000121853539894801
+20 0.000130035099573433
+21 0.000148760620504618
+22 0.000136578164529055
+23 0.000123399731819518
+24 0.000128683415823616
+25 0.000131263353978284
+26 0.000181030060048215
+27 0.000112584057205822
+28 0.00015240945504047
+29 0.000137883864226751
+30 0.000136543923872523
+31 0.00013088718696963
+32 0.000136368020321243
+33 0.000107742685941048
+34 0.000144908553920686
+35 0.000124128317111172
+36 0.000135986585519277
+37 0.00015421723946929
+38 0.000153338172822259
+39 0.000124869315186515
+40 0.00013896387827117
+41 0.00013015020522289
+42 0.000165084245963953
+43 0.000170790575793944
+44 0.000144001212902367
+45 0.000111466019006912
+46 0.000141610114951618
+47 0.000125751059385948
+48 0.000134674919536337
+49 0.000123769146739505
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007326556756796545, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007326556756796545, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..e519edd13c1893f5527c19b1cef5ca45291eec63
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007326556756796545, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007326556756796545, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007326556756796545, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..e2156cbae4606a994e28ea743fe162c26f768095
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007326556756796545, Learning_Process.tex	
@@ -0,0 +1,257 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=9.43745134168051e-07, ymax=0.00453360570169858,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000133759327582084
+1 8.81004780239891e-06
+2 1.07088635559194e-05
+3 0.00308388937264681
+4 5.55550213903189e-05
+5 0.000147093727719039
+6 5.75102167204022e-05
+7 3.80659475922585e-05
+8 2.94446726911701e-05
+9 2.44684470089851e-05
+10 2.14327683352167e-05
+11 2.00806298380485e-05
+12 1.83518677658867e-05
+13 1.65000747074373e-05
+14 1.48583003465319e-05
+15 1.38997465910506e-05
+16 1.26539125631098e-05
+17 1.16790106403641e-05
+18 1.12293055281043e-05
+19 1.12822344817687e-05
+20 1.00841316452716e-05
+21 9.09203572518891e-06
+22 9.06883360585198e-06
+23 8.77574257174274e-06
+24 8.08445474831387e-06
+25 7.74227100919234e-06
+26 7.37272603146266e-06
+27 7.15379928806215e-06
+28 6.78695641909144e-06
+29 6.55133453619783e-06
+30 6.24881249677856e-06
+31 6.13704924035119e-06
+32 5.88851435168181e-06
+33 5.71348618905176e-06
+34 5.73432407691143e-06
+35 5.42178986506769e-06
+36 5.22460413776571e-06
+37 4.97880546390661e-06
+38 4.81075903735473e-06
+39 4.76874083688017e-06
+40 4.61100671600434e-06
+41 4.48954870080343e-06
+42 4.39724544776254e-06
+43 4.24641075369436e-06
+44 4.09739277529297e-06
+45 4.18050149164628e-06
+46 4.0603690649732e-06
+47 3.89543856726959e-06
+48 3.76371576749079e-06
+49 3.64694346899341e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000159004775923677
+1 5.21213723914116e-06
+2 1.38739358135354e-06
+3 1.1690441169776e-05
+4 3.82277321477886e-05
+5 0.000134509216877632
+6 6.03728112764657e-05
+7 3.00266310659936e-05
+8 2.92810000246391e-05
+9 2.65247836068738e-05
+10 2.65536364167929e-05
+11 2.21414939005626e-05
+12 1.96019482245902e-05
+13 1.62517007993301e-05
+14 1.51629428728484e-05
+15 1.14419372039265e-05
+16 1.21192779261037e-05
+17 1.3778978427581e-05
+18 1.19974356493913e-05
+19 8.94452023203485e-06
+20 8.90856608748436e-06
+21 1.17240006147767e-05
+22 7.2860493673943e-06
+23 6.16798342889524e-06
+24 7.90926696936367e-06
+25 7.00139662512811e-06
+26 7.35216462999233e-06
+27 6.5925923991017e-06
+28 7.40265022614039e-06
+29 6.36967388345511e-06
+30 7.18974342817091e-06
+31 5.51039511265117e-06
+32 5.59569480174105e-06
+33 5.36080278834561e-06
+34 4.44537909061182e-06
+35 4.38013148595928e-06
+36 4.60273622593377e-06
+37 5.44138811164885e-06
+38 5.28537839272758e-06
+39 4.555686700769e-06
+40 4.74670332550886e-06
+41 4.50783727501403e-06
+42 4.19230627812794e-06
+43 4.51711684945622e-06
+44 5.26002486367361e-06
+45 3.38715449288429e-06
+46 3.5161392588634e-06
+47 4.18095578424982e-06
+48 4.18935178458923e-06
+49 4.60767432741704e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000134463625727221
+1 0.000136616843519732
+2 0.000135289068566635
+3 0.000137130584334955
+4 0.000140839270898141
+5 0.000136400238261558
+6 0.000138734263600782
+7 0.000139385345391929
+8 0.000138165094540454
+9 0.000137166469357908
+10 0.000134037356474437
+11 0.000133962108520791
+12 0.000140848016599193
+13 0.000138092480483465
+14 0.000136755974381231
+15 0.000137260707560927
+16 0.000136195725644939
+17 0.000134755740873516
+18 0.000133044552057981
+19 0.000137707960675471
+20 0.000135549867991358
+21 0.00013801158638671
+22 0.000135259062517434
+23 0.000136495058541186
+24 0.000140942822326906
+25 0.000136658884002827
+26 0.000137231778353453
+27 0.000136680755531415
+28 0.000135569353005849
+29 0.000138344534207135
+30 0.000139614989166148
+31 0.000135070004034787
+32 0.000137730850838125
+33 0.00013840792234987
+34 0.000136970047606155
+35 0.000133053938043304
+36 0.000133302630274557
+37 0.000136788192321546
+38 0.000135970039991662
+39 0.000134627422085032
+40 0.000136815273435786
+41 0.00013580487575382
+42 0.000139432668220252
+43 0.00013539387146011
+44 0.000137730065034702
+45 0.0001354706910206
+46 0.000135499009047635
+47 0.000138471397804096
+48 0.000136347953230143
+49 0.000137078430270776
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000149386774864979
+1 0.000137673065182753
+2 0.000144626261317171
+3 0.000129652369651012
+4 9.27866349229589e-05
+5 0.000131786335259676
+6 0.000116096511192154
+7 0.000117509152914863
+8 0.000119303025712725
+9 0.000124969868920743
+10 0.000159958261065185
+11 0.000156311230966821
+12 9.49800160015002e-05
+13 0.000123149293358438
+14 0.000129587555420585
+15 0.000126952916616574
+16 0.00013849837705493
+17 0.000147686849231832
+18 0.000163636432262138
+19 0.000120344819151796
+20 0.000139248208142817
+21 0.000120131138828583
+22 0.000143618148285896
+23 0.00013523900997825
+24 9.40638710744679e-05
+25 0.000133397756144404
+26 0.000275061058346182
+27 0.000131813852931373
+28 0.000142001139465719
+29 0.000115331225970294
+30 0.000105007864476647
+31 0.000147089769598097
+32 0.000122950528748333
+33 0.000117118077469058
+34 0.000129180363728665
+35 0.000166265250300057
+36 0.000160468451213092
+37 0.000132474800921045
+38 0.000138191942824051
+39 0.000151093729073182
+40 0.000127338222227991
+41 0.000140120260766707
+42 0.000105599254311528
+43 0.000143431985634379
+44 0.000121898796351161
+45 0.000140523407026194
+46 0.000142018296173774
+47 0.000116831986815669
+48 0.000136591741465963
+49 0.000129736697999761
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007350218372436676, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007350218372436676, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..de2b71beae549473170a290f7d59ecf4a7f4691b
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007350218372436676, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007350218372436676, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007350218372436676, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..d1d107f142aa537d412c556cd15b8af1d35362ea
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007350218372436676, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.30463941191051e-08, ymax=0.000248464888450057,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000117132156447042
+1 7.44193494028877e-06
+2 2.78764809991117e-06
+3 1.8499060843169e-06
+4 8.28802228625136e-07
+5 5.64984020456905e-07
+6 4.09503201126427e-07
+7 3.15038334974815e-07
+8 2.57924568813905e-07
+9 2.15781909673751e-07
+10 1.84973842465297e-07
+11 1.65173048571887e-07
+12 1.51570091588837e-07
+13 1.33193992724046e-07
+14 1.19717824986765e-07
+15 1.11118467316373e-07
+16 1.01454411094437e-07
+17 9.26722591998441e-08
+18 8.83677415686179e-08
+19 7.775320653991e-08
+20 7.62511263019405e-08
+21 1.94351670756987e-07
+22 6.43758681917461e-08
+23 6.06144254788887e-08
+24 5.52668346642804e-08
+25 5.37027524671885e-08
+26 5.22598284646847e-08
+27 4.87023505968409e-08
+28 4.49714363526255e-08
+29 4.34759996892353e-08
+30 4.23160138041112e-08
+31 4.06099545102734e-08
+32 3.96345036790535e-08
+33 3.85202625352576e-08
+34 3.55544500507676e-08
+35 3.46843336274105e-08
+36 3.28824576456554e-08
+37 3.22089661608516e-08
+38 3.06745597811187e-08
+39 2.90828268134646e-08
+40 2.83168812842405e-08
+41 2.76551173072903e-08
+42 2.73286744345569e-08
+43 2.65042192637566e-08
+44 2.55144367855564e-08
+45 2.49260061480072e-08
+46 2.36670025799413e-08
+47 2.36243504758704e-08
+48 2.26170691064453e-08
+49 2.22606306721218e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000153132874402218
+1 6.89246007823385e-06
+2 2.42305554820632e-06
+3 1.5129816119952e-06
+4 9.39617734729836e-07
+5 5.66292328585405e-07
+6 4.39423104126035e-07
+7 2.98021205935584e-07
+8 2.62549008311908e-07
+9 2.33873834076803e-07
+10 2.02000322246931e-07
+11 1.85490250714793e-07
+12 1.42841145134298e-07
+13 1.29377227153782e-07
+14 1.30363886796658e-07
+15 1.02675180357892e-07
+16 9.76615552872317e-08
+17 9.45393807683104e-08
+18 6.92939678970106e-08
+19 7.48913393522344e-08
+20 7.39780645631072e-08
+21 5.81918015996052e-08
+22 6.17210673681257e-08
+23 5.19842053847697e-08
+24 5.76909364724543e-08
+25 5.95255649216142e-08
+26 5.84730308617054e-08
+27 4.44837198187997e-08
+28 5.30349062444202e-08
+29 5.08583575253851e-08
+30 8.24579302616257e-08
+31 4.00954434098821e-08
+32 3.16148138779226e-08
+33 3.92348979971757e-08
+34 3.27054330284682e-08
+35 3.03604323903528e-08
+36 3.50716398145323e-08
+37 3.6874858722058e-08
+38 2.55639296398158e-08
+39 2.38154811427194e-08
+40 2.87727921488568e-08
+41 3.15808001971618e-08
+42 2.34648194208376e-08
+43 2.72948543766915e-08
+44 2.08327204376246e-08
+45 2.04185877095142e-08
+46 2.51514684634913e-08
+47 2.62816453044934e-08
+48 2.85059460480852e-08
+49 2.26731646790768e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000119966010970529
+1 0.000116479961434379
+2 0.000119951451779343
+3 0.000123039659229107
+4 0.000121760174806695
+5 0.000119699870992918
+6 0.000121287914225832
+7 0.000124081168905832
+8 0.000118957672384568
+9 0.000121525059512351
+10 0.000121570948977023
+11 0.000122369237942621
+12 0.000119627147796564
+13 0.000118867748824414
+14 0.000120741671707947
+15 0.000119405201985501
+16 0.000119565411296207
+17 0.000117620125820395
+18 0.000120908312965184
+19 0.000119073731184471
+20 0.000121987228340004
+21 0.000120639946544543
+22 0.000122416269732639
+23 0.000122475568787195
+24 0.000121083910926245
+25 0.000119723234092817
+26 0.000121887700515799
+27 0.000122682191431522
+28 0.000121350341942161
+29 0.00012094357953174
+30 0.000118309384561144
+31 0.000119427219033241
+32 0.000120353884994984
+33 0.000120919037726708
+34 0.000117938194307499
+35 0.000121539771498647
+36 0.000121630226203706
+37 0.000124673984828405
+38 0.000121830984426197
+39 0.000121439603390172
+40 0.000120640215754975
+41 0.000121877397759818
+42 0.000123184887343086
+43 0.000120010874525178
+44 0.000120049342513084
+45 0.000122617100714706
+46 0.00011693307897076
+47 0.000120960554340854
+48 0.00012217799667269
+49 0.000122833080240525
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000126002007164061
+1 0.000158755879965611
+2 0.000127041974337772
+3 9.77823510766029e-05
+4 0.000110807646706235
+5 0.000131525870529003
+6 0.000114671325718518
+7 8.97336503840052e-05
+8 0.000136739254230633
+9 0.000111842287878972
+10 0.000114473332359921
+11 0.000104597995232325
+12 0.000130493761389516
+13 0.000138503601192497
+14 0.000122024539450649
+15 0.000136503993417136
+16 0.000128691244754009
+17 0.000145266356412321
+18 0.00011725771764759
+19 0.000135725393192843
+20 0.000112673769763205
+21 0.000120386946946383
+22 0.000104472928796895
+23 0.000102620157122146
+24 0.000118446689157281
+25 0.0001285645266762
+26 0.000108835483842995
+27 0.000102808749943506
+28 0.000110223387309816
+29 0.000113511508970987
+30 0.000142056975164451
+31 0.000129173582536168
+32 0.000122450437629595
+33 0.000117550836876035
+34 0.000141021984745748
+35 0.000112162459117826
+36 0.00011252514377702
+37 8.33536905702204e-05
+38 0.000110553788545076
+39 0.000114230380859226
+40 0.000119375064969063
+41 0.000112119960249402
+42 9.90872722468339e-05
+43 0.000126457700389437
+44 0.000123900550534017
+45 0.000101181074569467
+46 0.000153596643940546
+47 0.00011822199303424
+48 0.000104724800621625
+49 0.000102602818515152
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007361494833257649, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007361494833257649, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..43f5d5fd1c18acb437773fb13bf5359c86a2282d
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007361494833257649, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007361494833257649, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007361494833257649, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..705744cc1cde55e29564519d1dc1de4b45c99e81
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007361494833257649, Learning_Process.tex	
@@ -0,0 +1,256 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.77280123328394e-06, ymax=0.00484362334984337,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00013021040649619
+1 1.50166715684463e-05
+2 0.000289180083200336
+3 0.000389207503758371
+4 0.00344981090165675
+5 0.000197179833776318
+6 0.00024283429956995
+7 0.00017943412240129
+8 0.000149303930811584
+9 0.000127833074657246
+10 0.000113041998702101
+11 9.9475437309593e-05
+12 8.98120124475099e-05
+13 8.26510731712915e-05
+14 7.46047153370455e-05
+15 6.89309817971662e-05
+16 6.35758478892967e-05
+17 5.91595671721734e-05
+18 5.50378426851239e-05
+19 5.13846061949152e-05
+20 5.02353032061365e-05
+21 4.62158495793119e-05
+22 4.28808962169569e-05
+23 4.0724356949795e-05
+24 3.83544393116608e-05
+25 3.74970186385326e-05
+26 3.45409971487243e-05
+27 3.4005173802143e-05
+28 3.19404389301781e-05
+29 3.16807818308007e-05
+30 2.94379024126101e-05
+31 2.89339095616015e-05
+32 2.70025939244078e-05
+33 2.68013063760009e-05
+34 2.5900691980496e-05
+35 2.50983684964012e-05
+36 2.44432085310109e-05
+37 2.31861195061356e-05
+38 2.19512894545915e-05
+39 2.19272660615388e-05
+40 2.16353037103545e-05
+41 2.09778136195382e-05
+42 1.99013556994032e-05
+43 1.94389485841384e-05
+44 1.96232922462514e-05
+45 1.81666364369448e-05
+46 1.79664657480316e-05
+47 1.75764889718266e-05
+48 1.68631686392473e-05
+49 1.67001944646472e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000110493929241784
+1 1.56182341015665e-05
+2 3.89308434023405e-06
+3 1.64860302902525e-05
+4 0.00142293388489634
+5 0.00018057668057736
+6 0.000233527418458834
+7 0.000203005969524384
+8 0.00015001607243903
+9 0.00012937949213665
+10 0.000105995532067027
+11 0.000102037389297038
+12 9.06955829123035e-05
+13 6.97142022545449e-05
+14 7.62572235544212e-05
+15 6.69189830659889e-05
+16 6.45446634734981e-05
+17 5.79972875129897e-05
+18 5.38899912498891e-05
+19 5.45939365110826e-05
+20 3.67304783139843e-05
+21 4.20173200836871e-05
+22 4.83054682263173e-05
+23 4.44641591457184e-05
+24 4.44309735030401e-05
+25 3.68020664609503e-05
+26 4.29256760980934e-05
+27 3.25806868204381e-05
+28 3.68367655028123e-05
+29 2.53281159530161e-05
+30 3.43426509061828e-05
+31 2.64009577222168e-05
+32 3.31093069689814e-05
+33 2.50998546107439e-05
+34 2.50134962698212e-05
+35 2.20124693441903e-05
+36 2.05284868570743e-05
+37 2.28958979278104e-05
+38 2.68327839876292e-05
+39 2.11526330531342e-05
+40 1.75396489794366e-05
+41 1.74698125192663e-05
+42 2.05882024602033e-05
+43 1.92092738870997e-05
+44 1.24116331789992e-05
+45 2.0715240680147e-05
+46 1.72398777067428e-05
+47 1.67082216648851e-05
+48 1.82550556928618e-05
+49 1.64539105753647e-05
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000129871637909673
+1 0.000124244645121507
+2 0.000130034517496824
+3 0.000127630497445352
+4 0.000129335690871812
+5 0.000129235282656737
+6 0.00012809966574423
+7 0.000131519045680761
+8 0.000127770326798782
+9 0.000127712744870223
+10 0.000123964375234209
+11 0.000127961218822747
+12 0.000127224426250905
+13 0.000125921258586459
+14 0.000130096217617393
+15 0.000129987500258721
+16 0.000125479811686091
+17 0.000129639738588594
+18 0.000130727305077016
+19 0.000127825362142175
+20 0.00012758033699356
+21 0.000129932464915328
+22 0.000128052939544432
+23 0.000128031344502233
+24 0.000129520791233517
+25 0.000127576291561127
+26 0.000126040715258569
+27 0.000126938335597515
+28 0.00012799545947928
+29 0.000131946013425477
+30 0.000126837097923271
+31 0.00012915454863105
+32 0.000126353319501504
+33 0.000128430096083321
+34 0.000128834886709228
+35 0.000129467560327612
+36 0.000130424770759419
+37 0.000129273161292076
+38 0.000128429281176068
+39 0.000130008294945583
+40 0.000126109312986955
+41 0.000130247266497463
+42 0.000127892970340326
+43 0.00012899337161798
+44 0.000126877115690149
+45 0.000125798498629592
+46 0.000127875391626731
+47 0.000129130814457312
+48 0.000126382146845572
+49 0.00013001928164158
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000115639813884627
+1 0.000164126817253418
+2 0.000112086090666708
+3 0.000135376161779277
+4 0.000119569849630352
+5 0.000120918106404133
+6 0.000130398548208177
+7 9.82680503511801e-05
+8 0.000132716158987023
+9 0.000133852285216562
+10 0.000165347140864469
+11 0.000131965774926357
+12 0.000136702510644682
+13 0.000148250095662661
+14 0.000112917325168382
+15 0.000111418812593911
+16 0.000150810956256464
+17 0.000116008290206082
+18 0.000105468396213837
+19 0.000130503016407602
+20 0.000133012581500225
+21 0.000113246867840644
+22 0.000129291249322705
+23 0.000132787434267811
+24 0.000115512477350421
+25 0.000136091344757006
+26 0.000150438892887905
+27 0.000139418581966311
+28 0.000133914669277146
+29 9.62421036092564e-05
+30 0.00013838785525877
+31 0.000118707728688605
+32 0.000145717393024825
+33 0.000130583110149018
+34 0.000123610196169466
+35 0.000116920935397502
+36 0.000109658052679151
+37 0.000118661089800298
+38 0.000127493622130714
+39 0.000111846638901625
+40 0.000148425693623722
+41 0.000109176289697643
+42 0.000129418098367751
+43 0.000121927136206068
+44 0.000138683346449398
+45 0.000149931278428994
+46 0.000132311004563235
+47 0.000119905780593399
+48 0.000147798695252277
+49 0.000109919281385373
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007364017563224253, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007364017563224253, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..02608d01dfc5cbfae688f46a18e56f7f3dbdc218
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007364017563224253, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007364017563224253, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007364017563224253, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..474b8323bf0187f259b5f50ed0423c6b0d5745bd
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007364017563224253, Learning_Process.tex	
@@ -0,0 +1,255 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=4.33328358615356e-06, ymax=0.000851901730133878,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000153185348608531
+1 1.35532391141169e-05
+2 8.11729114502668e-05
+3 0.000670094741508365
+4 6.76896306686103e-05
+5 5.16401305503678e-05
+6 4.40344119851943e-05
+7 3.88618209399283e-05
+8 3.4001608582912e-05
+9 3.06162801280152e-05
+10 2.80067051789956e-05
+11 2.53248035733122e-05
+12 2.33226128329989e-05
+13 2.23129009100376e-05
+14 2.06587046704954e-05
+15 1.92760726349661e-05
+16 1.82991770998342e-05
+17 1.73298558365786e-05
+18 1.59138508024625e-05
+19 1.51569765876047e-05
+20 1.44005734910024e-05
+21 1.38889481604565e-05
+22 1.29202562675346e-05
+23 1.26110626297304e-05
+24 1.18545676741633e-05
+25 1.13833139039343e-05
+26 1.10866340037319e-05
+27 1.06927127490053e-05
+28 1.01176228781696e-05
+29 9.8166292445967e-06
+30 9.54025927057955e-06
+31 9.16799672268098e-06
+32 8.86674661160214e-06
+33 8.36033814266557e-06
+34 8.2659125837381e-06
+35 7.9930514402804e-06
+36 7.64680680731544e-06
+37 7.63459411246004e-06
+38 7.20508660378982e-06
+39 7.26792586647207e-06
+40 6.69439987177611e-06
+41 6.72199803375406e-06
+42 6.56154588796198e-06
+43 6.31805096418248e-06
+44 6.14372038398869e-06
+45 6.09165681453305e-06
+46 5.86426813242724e-06
+47 5.76453385292552e-06
+48 5.62262493986054e-06
+49 5.57004113943549e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000161467716679908
+1 1.05746321423794e-05
+2 6.09450908086728e-05
+3 0.000446147576440126
+4 6.94127375027165e-05
+5 5.47248746443074e-05
+6 4.50320876552723e-05
+7 3.4793123631971e-05
+8 3.79458724637516e-05
+9 3.35262666339986e-05
+10 3.039312105102e-05
+11 3.05561297864188e-05
+12 2.91031847154954e-05
+13 2.05238375201588e-05
+14 2.129311360477e-05
+15 1.97902081708889e-05
+16 1.67866965057328e-05
+17 1.46278389365762e-05
+18 1.78274203790352e-05
+19 1.59378887474304e-05
+20 1.47604005178437e-05
+21 1.24908983707428e-05
+22 1.48840917972848e-05
+23 1.16822648124071e-05
+24 1.3483294424077e-05
+25 1.2421575775079e-05
+26 1.10008450064925e-05
+27 9.8792170319939e-06
+28 1.08519916466321e-05
+29 1.00056049632258e-05
+30 8.66121172293788e-06
+31 9.0763833213714e-06
+32 8.67325434228405e-06
+33 1.0241502423014e-05
+34 8.42066219775006e-06
+35 8.19849446997978e-06
+36 8.70281382958638e-06
+37 6.63221726426855e-06
+38 8.70276744535659e-06
+39 5.89295677855262e-06
+40 9.02426018001279e-06
+41 7.15241912985221e-06
+42 6.67414087729412e-06
+43 7.08063771526213e-06
+44 7.2057432589645e-06
+45 6.06876074016327e-06
+46 6.68418806526461e-06
+47 6.09151447861223e-06
+48 6.32933597444207e-06
+49 5.50896993445349e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000155059577082284
+1 0.000156262773089111
+2 0.00015150812396314
+3 0.000153084096382372
+4 0.000153235974721611
+5 0.000154959503561258
+6 0.000153493092511781
+7 0.000154624198330566
+8 0.000153971384861507
+9 0.000159465562319383
+10 0.000158932627527975
+11 0.000154235764057375
+12 0.000157031550770625
+13 0.000157104208483361
+14 0.000156024732859805
+15 0.000156121794134378
+16 0.000154247769387439
+17 0.000155671456013806
+18 0.000155967602040619
+19 0.000159161456394941
+20 0.000150408042827621
+21 0.000154285793541931
+22 0.000153793196659535
+23 0.000154128822032362
+24 0.000148882900248282
+25 0.000157269183546305
+26 0.000156647758558393
+27 0.00015059215365909
+28 0.000152548323967494
+29 0.000150650943396613
+30 0.000155731453560293
+31 0.000154092616867274
+32 0.000154730907524936
+33 0.000153198096086271
+34 0.000147101323818788
+35 0.00015330221503973
+36 0.000154297784320079
+37 0.000154610577737913
+38 0.000153006170876324
+39 0.000159868475748226
+40 0.0001485609827796
+41 0.000154096065671183
+42 0.000152481850818731
+43 0.000154372639372014
+44 0.000152811931911856
+45 0.000150038526044227
+46 0.000155807108967565
+47 0.00015710543084424
+48 0.000151910237036645
+49 0.0001542857644381
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000147023500176147
+1 0.00013594537449535
+2 0.000183393553015776
+3 0.000165987221407704
+4 0.00016307427722495
+5 0.000149872153997421
+6 0.000164749275427312
+7 0.000151432512211613
+8 0.000159393923240714
+9 0.000120511678687762
+10 0.000111115681647789
+11 0.000154096662299708
+12 0.000131667402456515
+13 0.000127917461213656
+14 0.000138546485686675
+15 0.000137550581712276
+16 0.000155697416630574
+17 0.000140360716613941
+18 0.000139320734888315
+19 0.000106163322925568
+20 0.000188793579582125
+21 0.000153469925862737
+22 0.000154402790940367
+23 0.000152912107296288
+24 0.000201391245354898
+25 0.000123466001241468
+26 0.000132661720272154
+27 0.00019194271590095
+28 0.000168500322615728
+29 0.000203090356080793
+30 0.00014212318637874
+31 0.000156106994836591
+32 0.000148118910146877
+33 0.000164547600434162
+34 0.000220487971091643
+35 0.000162896278197877
+36 0.000153314074850641
+37 0.000152972235810012
+38 0.00016518727352377
+39 0.000103484861028846
+40 0.000208564990316518
+41 0.0001560209057061
+42 0.000170580737176351
+43 0.000151736283442006
+44 0.000168714905157685
+45 0.000191467101103626
+46 0.000141782395076007
+47 0.000131921915453859
+48 0.000175524939550087
+49 0.000149493978824466
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007370243441050823, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007370243441050823, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..57ea47b25003cfe56b2cba50d8eb264239f3fe88
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007370243441050823, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007370243441050823, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007370243441050823, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..a34bfc1ec032c6c615f812d559178578b6939d50
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007370243441050823, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.02071179081901e-08, ymax=0.000301048140795059,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000151839674799703
+1 7.2822003858164e-06
+2 1.62799631198141e-06
+3 7.83221992151084e-07
+4 5.15156159508479e-07
+5 3.8340385799529e-07
+6 2.93097258463604e-07
+7 2.40103787518819e-07
+8 2.02075383981537e-07
+9 1.67352268931609e-07
+10 1.46559457903095e-07
+11 1.29956845285051e-07
+12 1.16755700219073e-07
+13 1.04111002485752e-07
+14 9.13173323624505e-08
+15 8.25070856080856e-08
+16 7.87569547355815e-08
+17 7.07372151964591e-08
+18 6.37528358993222e-08
+19 5.92559565859574e-08
+20 5.76095438020729e-08
+21 5.3601606708753e-08
+22 4.93080740682217e-08
+23 4.63414124851624e-08
+24 4.53669812827684e-08
+25 4.06329938584804e-08
+26 4.10083274005046e-08
+27 3.70713486574914e-08
+28 3.62814525090016e-08
+29 3.48929383164887e-08
+30 3.3573517299601e-08
+31 3.18526574005773e-08
+32 3.03460794270904e-08
+33 3.01570253213868e-08
+34 2.7573005212389e-08
+35 2.70133782009907e-08
+36 2.64473740685389e-08
+37 2.49501805882346e-08
+38 2.48788083467844e-08
+39 2.44160229811996e-08
+40 2.27903758087677e-08
+41 2.34015971045665e-08
+42 2.2098953778027e-08
+43 2.24838636597724e-08
+44 2.18549871533469e-08
+45 6.90532360181351e-08
+46 1.97887146669018e-08
+47 1.96357223813948e-08
+48 1.90748412620678e-08
+49 1.81210353389361e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000181288603926077
+1 1.23086238090764e-05
+2 1.28302281154902e-06
+3 9.26126006106642e-07
+4 5.14693226705276e-07
+5 3.38886508188807e-07
+6 2.97552929851008e-07
+7 2.33026142382187e-07
+8 1.80133184812803e-07
+9 1.72344655879897e-07
+10 1.46849160387319e-07
+11 1.12952193376259e-07
+12 9.3977497783726e-08
+13 1.00820045645378e-07
+14 8.60174793615442e-08
+15 9.71508953284683e-08
+16 6.85044838633075e-08
+17 5.87168891286183e-08
+18 7.04500990877932e-08
+19 6.53051301924279e-08
+20 5.31242676515831e-08
+21 5.33679447300983e-08
+22 5.18372758051555e-08
+23 5.23969667654001e-08
+24 4.14647693958159e-08
+25 5.19739629112337e-08
+26 2.92012938274411e-08
+27 3.79588342980242e-08
+28 3.54332634344701e-08
+29 3.18134816268412e-08
+30 3.53366047534109e-08
+31 2.8774028493217e-08
+32 3.19712860630261e-08
+33 2.59445425143667e-08
+34 2.92590467410037e-08
+35 2.83483245766547e-08
+36 2.3281769401251e-08
+37 2.97970199625297e-08
+38 2.8914190153273e-08
+39 2.4693710187762e-08
+40 2.58383749951463e-08
+41 1.8630572640177e-08
+42 2.02271621674299e-08
+43 1.87994455558282e-08
+44 2.2510933561648e-08
+45 1.79453198967394e-08
+46 2.00671319561252e-08
+47 1.62956919069757e-08
+48 1.66995928196911e-08
+49 2.03584313851479e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00015438262198586
+1 0.000156025678734295
+2 0.000154001842020079
+3 0.000156474096002057
+4 0.000153291679453105
+5 0.000156264824909158
+6 0.000151337560964748
+7 0.000155057685333304
+8 0.000156260633957572
+9 0.000157379239681177
+10 0.000155169502249919
+11 0.000157624366693199
+12 0.000155774861923419
+13 0.000156425259774551
+14 0.000152212131069973
+15 0.00015338858065661
+16 0.000154461682541296
+17 0.000155803063535132
+18 0.000156900234287605
+19 0.000155904708663002
+20 0.000152640292071737
+21 0.000156104433699511
+22 0.000153728484292515
+23 0.000152201173477806
+24 0.000153052737005055
+25 0.000158182680024765
+26 0.000153000568388961
+27 0.000157292568474077
+28 0.000155334215378389
+29 0.000155018278746866
+30 0.000157605987624265
+31 0.000157987655256875
+32 0.000154836990986951
+33 0.00015643346705474
+34 0.000156339388922788
+35 0.000152220687596127
+36 0.000155990055645816
+37 0.000158456619828939
+38 0.000156284513650462
+39 0.000154860652401112
+40 0.000152823544340208
+41 0.000154120658407919
+42 0.000156082096509635
+43 0.000155181609443389
+44 0.000156070731463842
+45 0.000154687950271182
+46 0.000158435243065469
+47 0.000156165056978352
+48 0.000151889529661275
+49 0.000155180576257408
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000159973700647242
+1 0.00014638552966062
+2 0.00016271295316983
+3 0.000141522730700672
+4 0.000170288258232176
+5 0.000141437165439129
+6 0.000188567253644578
+7 0.000153400978888385
+8 0.000144219404319301
+9 0.000132352710352279
+10 0.000154177934746258
+11 0.000128537212731317
+12 0.000145461861393414
+13 0.000141615455504507
+14 0.000178742266143672
+15 0.000169058432220481
+16 0.000157859991304576
+17 0.000146453559864312
+18 0.000135840440634638
+19 0.000145702011650428
+20 0.000174805711139925
+21 0.000144524441566318
+22 0.000163626609719358
+23 0.00017813233716879
+24 0.00017159862909466
+25 0.000125226040836424
+26 0.000171382111147977
+27 0.000134549845824949
+28 0.000151579995872453
+29 0.000153398650581948
+30 0.000129522159113549
+31 0.000125756021589041
+32 0.000156178735778667
+33 0.000141235097544268
+34 0.00014105967420619
+35 0.000178255984792486
+36 0.000144792953506112
+37 0.000122378973173909
+38 0.000142055738251656
+39 0.000155535686644726
+40 0.000173286069184542
+41 0.000162774042109959
+42 0.00014448375441134
+43 0.000153191489516757
+44 0.000146195452543907
+45 0.000154764726175927
+46 0.000122272220323794
+47 0.000145396596053615
+48 0.000181711002369411
+49 0.000151817555888556
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007423760875658943, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007423760875658943, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..69d1497578ff0685899d9853c19d7035609eb88e
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007423760875658943, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007423760875658943, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007423760875658943, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..51b86ddce637a9af78460eda0060c1a143409cbd
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007423760875658943, Learning_Process.tex	
@@ -0,0 +1,266 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.03,0.97)},
+  anchor=north west,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.04454619096586e-06, ymax=3958905.87506938,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-06,0.0001,0.01,1,100,10000,1000000,100000000,10000000000},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{0}}\),
+  \(\displaystyle {10^{2}}\),
+  \(\displaystyle {10^{4}}\),
+  \(\displaystyle {10^{6}}\),
+  \(\displaystyle {10^{8}}\),
+  \(\displaystyle {10^{10}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000137895942316391
+1 1.11007520899875e-05
+2 1.94375970750116e-05
+3 6.47510569251608e-06
+4 0.00151447427924722
+5 0.968209862709045
+6 0.155263856053352
+7 0.999999582767487
+8 0.999999165534973
+9 0.999998569488525
+10 0.999998152256012
+11 0.999997675418854
+12 0.999997735023499
+13 0.99999737739563
+14 0.999997079372406
+15 0.999996781349182
+16 0.999996542930603
+17 0.999996542930603
+18 0.99999612569809
+19 0.99999588727951
+20 0.999995589256287
+21 0.999995589256287
+22 0.999995291233063
+23 0.999995350837708
+24 0.999994874000549
+25 0.99999475479126
+26 0.999993860721588
+27 0.999993979930878
+28 0.999993741512299
+29 0.999993324279785
+30 0.999992549419403
+31 0.999992370605469
+32 0.999991714954376
+33 0.999992251396179
+34 0.999991178512573
+35 0.999991357326508
+36 0.999991297721863
+37 0.999990344047546
+38 0.999990046024323
+39 0.999990046024323
+40 0.999989569187164
+41 0.999989032745361
+42 0.999987959861755
+43 0.999988496303558
+44 0.999988079071045
+45 0.999987304210663
+46 0.999987483024597
+47 0.999987542629242
+48 0.999986290931702
+49 0.999985754489899
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000151146115968004
+1 9.9807384685846e-06
+2 2.44843231484992e-05
+3 4.95200356454006e-06
+4 3.89658680433058e-06
+5 160.72135925293
+6 0.130873054265976
+7 1061251.875
+8 519318.3125
+9 149757.65625
+10 202673.390625
+11 102572.1875
+12 67829.15625
+13 78963.828125
+14 138711.421875
+15 105281.2265625
+16 118428.1171875
+17 63093.7890625
+18 101199.4765625
+19 59873.73046875
+20 50231.73046875
+21 41428.80078125
+22 61926.41796875
+23 33162.64453125
+24 40628.8359375
+25 43032.12890625
+26 44967.12109375
+27 37518.71484375
+28 49052.3046875
+29 38794.3984375
+30 38281.52734375
+31 45698.57421875
+32 39605.73046875
+33 27363.640625
+34 21116.849609375
+35 42454.51953125
+36 22393.125
+37 29483.23828125
+38 25344.884765625
+39 21265.728515625
+40 39310.06640625
+41 21423.544921875
+42 27881.357421875
+43 17683.259765625
+44 16968.990234375
+45 19251.17578125
+46 22266.73046875
+47 19914.41015625
+48 21272.732421875
+49 31111.115234375
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00013621935795527
+1 0.000142632197821513
+2 0.000141418960993178
+3 0.000133902562083676
+4 0.000138600924401544
+5 0.000136950489832088
+6 0.000141038544825278
+7 0.000139734140248038
+8 0.0001397642045049
+9 0.000142387681989931
+10 0.000139553274493665
+11 0.000140793126774952
+12 0.000139123352710158
+13 0.000140131698572077
+14 0.000141763375722803
+15 0.000137388124130666
+16 0.000141703189001419
+17 0.000138147137477063
+18 0.000139940457302146
+19 0.000139418974868022
+20 0.000138492847327143
+21 0.00013504788512364
+22 0.000138581264764071
+23 0.0001399668835802
+24 0.000138482675538398
+25 0.000144099889439531
+26 0.000139090203447267
+27 0.000139054987812415
+28 0.000139888565172441
+29 0.000139650554046966
+30 0.000141477867146023
+31 0.000136351067340001
+32 0.00013854427379556
+33 0.000139590236358345
+34 0.00014092841593083
+35 0.000140791293233633
+36 0.000141478391014971
+37 0.000141533048008569
+38 0.000139608135214075
+39 0.00013858696911484
+40 0.000142955293995328
+41 0.000138061179313809
+42 0.000142367047374137
+43 0.000139067429699935
+44 0.000137903800350614
+45 0.0001377646549372
+46 0.000139058029162697
+47 0.000139215087983757
+48 0.000138793358928524
+49 0.000137097886181436
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.00016505345411133
+1 0.000109656008135062
+2 0.000120759497804102
+3 0.000189179583685473
+4 0.000147123748320155
+5 0.000161600997671485
+6 0.000124807920656167
+7 0.00013578127254732
+8 0.000136029600980692
+9 0.000117870724352542
+10 0.000140401112730615
+11 0.000127669671201147
+12 0.00014040908718016
+13 0.000131192020489834
+14 0.000119548720249441
+15 0.000155964735313319
+16 0.000120059776236303
+17 0.000150790874613449
+18 0.00013665683218278
+19 0.000139801064506173
+20 0.000148403094499372
+21 0.000183684620424174
+22 0.0001461975480197
+23 0.000134963265736587
+24 0.000145631478517316
+25 9.72102716332301e-05
+26 0.000144118603202514
+27 0.000153432934894226
+28 0.000135263355332427
+29 0.000136814618599601
+30 0.000122120283776894
+31 0.000166577112395316
+32 0.000147389058838598
+33 0.000139486539410427
+34 0.000124560072435997
+35 0.000125925638712943
+36 0.000121980861877091
+37 0.000126684113638476
+38 0.000136490751174279
+39 0.000145105281262659
+40 0.00010703329462558
+41 0.000146700142067857
+42 0.000113933812826872
+43 0.000142480290378444
+44 0.000153334127389826
+45 0.000154641151311807
+46 0.000142084652907215
+47 0.000142410848638974
+48 0.00014512000780087
+49 0.000159326154971495
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007444618269199212, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007444618269199212, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..c1f1b3ac9d601906b10b59f1218d3fe09d114a17
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007444618269199212, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007444618269199212, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007444618269199212, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..33ed2812f5d75cc06988b522b2a5c4d36731157c
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007444618269199212, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.37633249735904e-08, ymax=0.000298114337046881,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000144671852467582
+1 7.56996723794146e-06
+2 2.11347992262745e-06
+3 1.04045568605216e-06
+4 7.56497684051283e-07
+5 5.71809323446359e-07
+6 3.97045056388379e-07
+7 3.19461207709537e-07
+8 2.61346087881975e-07
+9 2.24303121854064e-07
+10 1.94402943520799e-07
+11 1.72836664091847e-07
+12 1.48026870760987e-07
+13 1.34518472805212e-07
+14 1.20462246400166e-07
+15 1.11824142834394e-07
+16 1.03501491821589e-07
+17 9.36586772581904e-08
+18 8.86856170723149e-08
+19 2.49326876655687e-06
+20 7.4100398705923e-08
+21 6.90697774530236e-08
+22 6.72554136826875e-08
+23 6.07356298587547e-08
+24 5.7457899771407e-08
+25 5.52984822377312e-08
+26 5.20762135636232e-08
+27 4.93830434322717e-08
+28 4.73032351067104e-08
+29 4.4249382824546e-08
+30 4.42004797207574e-08
+31 4.24881818616996e-08
+32 4.04377509255482e-08
+33 3.93138996912512e-08
+34 3.69461936600146e-08
+35 3.6190606067521e-08
+36 3.44473853886029e-08
+37 4.00417157209176e-08
+38 3.14377857080217e-08
+39 3.00156948185304e-08
+40 2.84658430160789e-08
+41 2.82222849534719e-08
+42 2.64700155128139e-08
+43 2.70195315010824e-08
+44 2.53020324691988e-08
+45 2.53519978343775e-08
+46 2.56333905213069e-08
+47 2.32725696491798e-08
+48 2.31405437034482e-08
+49 2.31304611020278e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000136239992571063
+1 5.61862589165685e-06
+2 2.13664611692366e-06
+3 1.20029233130481e-06
+4 6.05560501298896e-07
+5 4.19943631868591e-07
+6 4.1692734953358e-07
+7 3.00670166097916e-07
+8 2.6587309776005e-07
+9 2.16567386246425e-07
+10 1.71113441638227e-07
+11 1.53048077322637e-07
+12 1.67300186149077e-07
+13 1.24107643273419e-07
+14 1.31788212343054e-07
+15 1.25261109928942e-07
+16 9.97372850974898e-08
+17 9.45523623840927e-08
+18 8.1917896466166e-08
+19 9.07445425468723e-08
+20 9.33728045993121e-08
+21 7.37757375190995e-08
+22 6.13149424566473e-08
+23 6.81170249094976e-08
+24 6.68389716906859e-08
+25 4.93421019598372e-08
+26 4.7930871716062e-08
+27 5.84885597731954e-08
+28 4.7655138502023e-08
+29 5.02197465834797e-08
+30 4.40366569876005e-08
+31 3.7388044660247e-08
+32 3.99074018275769e-08
+33 3.32702931871154e-08
+34 3.51473481430276e-08
+35 3.41986812202322e-08
+36 3.40999868342351e-08
+37 3.46613511226224e-08
+38 2.94092963315506e-08
+39 2.96250828313305e-08
+40 3.61961625117146e-08
+41 2.88508097412432e-08
+42 3.07792866749423e-08
+43 2.78836349565381e-08
+44 2.50307721216814e-08
+45 2.16670006381037e-08
+46 2.63049972915042e-08
+47 2.18326459133777e-08
+48 2.47492213389933e-08
+49 2.88010877369516e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000145215468364768
+1 0.000141623138915747
+2 0.000142241216963157
+3 0.000145299243740737
+4 0.000140484306029975
+5 0.000146553808008321
+6 0.000145818834425882
+7 0.000143105702591129
+8 0.0001455921883462
+9 0.00014293726417236
+10 0.000143364944960922
+11 0.000143600511364639
+12 0.00014377009938471
+13 0.000141664000693709
+14 0.000144864781759679
+15 0.000148221573908813
+16 0.000145463811350055
+17 0.000145833037095144
+18 0.000141965108923614
+19 0.000139531155582517
+20 0.000149129846249707
+21 0.000144563062349334
+22 0.000143147757626139
+23 0.000147068523801863
+24 0.000142994729685597
+25 0.000141227355925366
+26 0.000143195851705968
+27 0.000143095356179401
+28 0.000148592138430104
+29 0.00014282220217865
+30 0.000145990692544729
+31 0.000145236917887814
+32 0.000143845129059628
+33 0.000143315002787858
+34 0.000143568307976238
+35 0.00014271485270001
+36 0.000146562946611084
+37 0.000143600627779961
+38 0.00014274769637268
+39 0.000144930760143325
+40 0.000142958975629881
+41 0.000138528892421164
+42 0.000147397178807296
+43 0.00014307931996882
+44 0.000147090031532571
+45 0.000144630597787909
+46 0.000141492098919116
+47 0.000142271223012358
+48 0.000140462085255422
+49 0.00014021540118847
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000132569883135147
+1 0.000171963154571131
+2 0.000156893482198939
+3 0.000129847903735936
+4 0.000174413318745792
+5 0.000114800364826806
+6 0.000123778183478862
+7 0.000154295179527253
+8 0.000128643951029517
+9 0.000148584716953337
+10 0.000145289566717111
+11 0.000144582969369367
+12 0.000143257158924825
+13 0.000171744657563977
+14 0.000130233500385657
+15 0.000100415803899523
+16 0.000130639047711156
+17 0.000119642412755638
+18 0.000162522905156948
+19 0.000180466289748438
+20 9.97879469650798e-05
+21 0.000133819470647722
+22 0.000147144935908727
+23 0.000122797777294181
+24 0.000149460320244543
+25 0.000165730351000093
+26 0.000148546067066491
+27 0.00014830099826213
+28 0.000105940482171718
+29 0.000151008367538452
+30 0.000127956853248179
+31 0.000128638741443865
+32 0.000143240205943584
+33 0.00014559667033609
+34 0.000146533639053814
+35 0.00015358864038717
+36 0.000115836715849582
+37 0.000145610785693862
+38 0.000151661137351766
+39 0.000139111463795416
+40 0.00014783778169658
+41 0.00018936836568173
+42 0.00010840885079233
+43 0.000152706561493687
+44 0.000111434761493001
+45 0.00013162124378141
+46 0.000166152094607241
+47 0.00015598714526277
+48 0.000169034654390998
+49 0.000179521113750525
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007445367092554804, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007445367092554804, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..7f4cb4265742880a6bd1ff3fc0c08431e11a0036
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007445367092554804, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007445367092554804, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007445367092554804, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..86f4412d0c0d6d1bfcc6f481850147ff41ee7cf0
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007445367092554804, Learning_Process.tex	
@@ -0,0 +1,265 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=8.33963343873106e-09, ymax=0.000314627578793829,
+ymode=log,
+ytick style={color=black},
+ytick={1e-10,1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-10}}\),
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00015318910300266
+1 6.96316874382319e-06
+2 1.32558250243164e-06
+3 6.91136449404439e-07
+4 4.44787332298802e-07
+5 3.25513610732742e-07
+6 2.55956905448329e-07
+7 2.04014625637683e-07
+8 1.69112070125266e-07
+9 1.44540280189176e-07
+10 1.25739447298656e-07
+11 1.1057626636557e-07
+12 1.01915048844603e-07
+13 9.02234518207479e-08
+14 8.35278726185607e-08
+15 7.36014058588808e-08
+16 6.62489085812012e-08
+17 6.09476131785414e-08
+18 5.62235378254172e-08
+19 5.34460617984678e-08
+20 5.14538740503667e-08
+21 4.60471625274295e-08
+22 4.30377156135364e-08
+23 3.95695636257187e-08
+24 3.71929864684262e-08
+25 3.62907961459769e-08
+26 3.42985302381749e-08
+27 3.12355616927107e-08
+28 3.19103747870031e-08
+29 2.94292483715708e-08
+30 2.80647380890287e-08
+31 2.71286815234362e-08
+32 2.59010501935109e-08
+33 2.4397094122719e-08
+34 2.44816824590544e-08
+35 2.25848832968722e-08
+36 2.22863754117952e-08
+37 2.1601417543593e-08
+38 2.06649932721348e-08
+39 2.0973851988515e-08
+40 1.97215523911609e-08
+41 1.88690947311443e-08
+42 1.88234565712264e-08
+43 1.88851956295366e-08
+44 1.67489826452538e-08
+45 1.68413638590437e-08
+46 1.63765356830936e-08
+47 1.57834758596209e-08
+48 1.55110164712369e-08
+49 1.4827868710654e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.00013807944196742
+1 3.98894326281152e-06
+2 1.60009642513614e-06
+3 5.74875343772874e-07
+4 3.75453652168289e-07
+5 2.91174131916705e-07
+6 2.05295194177779e-07
+7 2.17360366150388e-07
+8 1.88886517094033e-07
+9 1.60949170435742e-07
+10 1.36131944827866e-07
+11 1.25557932051379e-07
+12 9.78351408775779e-08
+13 9.0187292300925e-08
+14 7.11208301140687e-08
+15 6.27128429186996e-08
+16 6.63598598293902e-08
+17 6.60388224105191e-08
+18 6.26522407287666e-08
+19 4.29029292092764e-08
+20 4.42607408501772e-08
+21 4.40596004125382e-08
+22 3.45231789822265e-08
+23 4.03607280929918e-08
+24 3.68588608523623e-08
+25 3.17138102445824e-08
+26 3.05555936108703e-08
+27 3.59767149404888e-08
+28 2.70913265154604e-08
+29 2.92517778888168e-08
+30 3.06221998869205e-08
+31 2.55440628649239e-08
+32 2.52852885296306e-08
+33 2.44426932027864e-08
+34 2.16632685123841e-08
+35 2.5464501618444e-08
+36 2.39650326250285e-08
+37 1.82519528379999e-08
+38 1.93783762370003e-08
+39 1.75866059493046e-08
+40 2.02789678382942e-08
+41 1.77142407409292e-08
+42 1.61532440756673e-08
+43 1.69470038002828e-08
+44 1.97149940817098e-08
+45 1.34640742999181e-08
+46 1.74503806960047e-08
+47 1.63849254164461e-08
+48 1.67177400811624e-08
+49 1.56638630954831e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000154151901369914
+1 0.000151034255395643
+2 0.000146891994518228
+3 0.000152543812873773
+4 0.000153388857143
+5 0.000150751351611689
+6 0.000150853331433609
+7 0.000152816195623018
+8 0.000146477948874235
+9 0.000153727101860568
+10 0.000153778368257917
+11 0.000148658684338443
+12 0.000150177234900184
+13 0.000150122315972112
+14 0.000151706888573244
+15 0.000151941043441184
+16 0.00015062338206917
+17 0.000151095984620042
+18 0.000149336570757441
+19 0.000150915802805685
+20 0.000148339124280028
+21 0.000150404215673916
+22 0.000151805492350832
+23 0.000148419727338478
+24 0.000149692903505638
+25 0.000148681487189606
+26 0.000153047862113453
+27 0.000153349639731459
+28 0.000150735097122379
+29 0.000154373585246503
+30 0.000151081345393322
+31 0.000153441171278246
+32 0.000149295214214362
+33 0.000150624808156863
+34 0.000152967186295427
+35 0.000152193038957193
+36 0.000149094237713143
+37 0.000153358720126562
+38 0.000151037485920824
+39 0.000150050997035578
+40 0.00015083811013028
+41 0.000151785323396325
+42 0.000151975415064953
+43 0.000154776163981296
+44 0.000146925536682829
+45 0.000149289466207847
+46 0.000152417662320659
+47 0.000151117739733309
+48 0.000152416090713814
+49 0.000150502601172775
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000126375074614771
+1 0.000153784902067855
+2 0.000189284037332982
+3 0.000141388765769079
+4 0.000132472065160982
+5 0.000155994392116554
+6 0.000152691194671206
+7 0.000137937357067131
+8 0.000194879990885966
+9 0.000130960266687907
+10 0.000129547886899672
+11 0.000175571258296259
+12 0.000164367942488752
+13 0.000161277464940213
+14 0.000147830389323644
+15 0.000144993493449874
+16 0.000157944319653325
+17 0.000157735470565967
+18 0.00017319964536
+19 0.000156440641148947
+20 0.000177401103428565
+21 0.000159643284860067
+22 0.000145835176226683
+23 0.000175896377186291
+24 0.000165399353136308
+25 0.000174014930962585
+26 0.000136241171276197
+27 0.000134686342789792
+28 0.000157409100211225
+29 0.000124355894513428
+30 0.000152215274283662
+31 0.000132473927806132
+32 0.000169188511790708
+33 0.00015802109555807
+34 0.000137123628519475
+35 0.000142451259307563
+36 0.000170775063452311
+37 0.000131736538605765
+38 0.000153692046296783
+39 0.000161858552019112
+40 0.000154955996549688
+41 0.000147849830682389
+42 0.000148604536661878
+43 0.000119705837278161
+44 0.000190246850252151
+45 0.000170933941262774
+46 0.000139926938572899
+47 0.000153452958329581
+48 0.00014078950334806
+49 0.000158651135279797
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007448033171542339, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007448033171542339, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..5213478997232e8cd4b308f5e8d3c3b579aba3d8
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007448033171542339, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007448033171542339, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007448033171542339, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..017837eb67938fbb0fe54eef83e8195fe8b92a85
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007448033171542339, Learning_Process.tex	
@@ -0,0 +1,263 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.39315824915924e-07, ymax=0.000265599685201043,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000168510421644896
+1 0.000110415632661898
+2 2.84439938695868e-05
+3 1.26244813145604e-05
+4 9.91967863228638e-06
+5 8.01071655587293e-06
+6 7.00323698765715e-06
+7 5.8991290643462e-06
+8 5.17980652148253e-06
+9 4.57141550214146e-06
+10 4.0966647247842e-06
+11 3.60115245712223e-06
+12 3.30765305989189e-06
+13 3.09202073367487e-06
+14 2.77393883152399e-06
+15 2.55706686402846e-06
+16 2.43436966229638e-06
+17 2.21275695366785e-06
+18 2.05388778340421e-06
+19 1.95395386981545e-06
+20 1.80523272774735e-06
+21 1.74850981693453e-06
+22 1.62028584327345e-06
+23 1.56014834828966e-06
+24 1.45488081670919e-06
+25 1.41043960866227e-06
+26 1.35170625981118e-06
+27 1.29904708501272e-06
+28 1.23387212624948e-06
+29 1.17336730909301e-06
+30 1.11204701624956e-06
+31 1.06421327927819e-06
+32 1.02920409972285e-06
+33 1.05134063232981e-06
+34 9.6966061846615e-07
+35 9.31878616938775e-07
+36 8.93232311227621e-07
+37 8.62036245052877e-07
+38 8.50276990149723e-07
+39 8.15752571270423e-07
+40 7.84501025918871e-07
+41 7.54216898712912e-07
+42 7.29232397134183e-07
+43 7.08758818745991e-07
+44 7.05973150161299e-07
+45 6.91649461259658e-07
+46 6.62050808841741e-07
+47 6.48942375391925e-07
+48 6.59764907595672e-07
+49 6.12425822055229e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000161175848916173
+1 1.18596317406627e-05
+2 1.50774303619983e-05
+3 1.35202981255134e-05
+4 9.85947008302901e-06
+5 8.89987131813541e-06
+6 5.82755546929548e-06
+7 5.69882422496448e-06
+8 4.56483166999533e-06
+9 4.29238070864812e-06
+10 3.73352463611809e-06
+11 4.12559438700555e-06
+12 3.67769644071814e-06
+13 2.62287244368054e-06
+14 2.93065409096016e-06
+15 2.58777367889707e-06
+16 2.12323561754602e-06
+17 2.50643438448606e-06
+18 2.21320124182967e-06
+19 1.81775794771966e-06
+20 1.96334758584271e-06
+21 1.56680982854596e-06
+22 1.65048572853266e-06
+23 1.37566701141623e-06
+24 1.64685104664386e-06
+25 1.24325708839024e-06
+26 1.17808292543486e-06
+27 9.84346911536704e-07
+28 1.0226370932287e-06
+29 1.01851901490591e-06
+30 1.15430123059923e-06
+31 1.10228381799971e-06
+32 1.0675020121198e-06
+33 9.80063077804516e-07
+34 7.81988092057873e-07
+35 8.8001036147034e-07
+36 8.15748990135035e-07
+37 8.78002651916177e-07
+38 6.41425629055448e-07
+39 7.74418822402367e-07
+40 8.27008648229821e-07
+41 7.77811692387331e-07
+42 7.88949080288148e-07
+43 8.09761729669844e-07
+44 6.40117605144042e-07
+45 5.64375511658e-07
+46 6.35503056400921e-07
+47 6.46750208943558e-07
+48 4.59338082237082e-07
+49 6.89378680363006e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000163678225362673
+1 0.000163201271789148
+2 0.000161524920258671
+3 0.000164069308084436
+4 0.000162074982654303
+5 0.000162556025316007
+6 0.000158939263201319
+7 0.000163571166922338
+8 0.000162814496434294
+9 0.000160209223395213
+10 0.000163813005201519
+11 0.000162629046826623
+12 0.000165903722518124
+13 0.000163885255460627
+14 0.000160511481226422
+15 0.000163945078384131
+16 0.000165106466738507
+17 0.000165689692948945
+18 0.000163822231115773
+19 0.000159182760398835
+20 0.000159718809300102
+21 0.000161736592417583
+22 0.000163882243214175
+23 0.000165609933901578
+24 0.000162223208462819
+25 0.000162838725373149
+26 0.000162851079949178
+27 0.000163261443958618
+28 0.000162312760949135
+29 0.000161890216986649
+30 0.000165484554599971
+31 0.00016074554878287
+32 0.000160815048730001
+33 0.000164233118994161
+34 0.000164633369422518
+35 0.0001617472153157
+36 0.000160506839165464
+37 0.000160334471729584
+38 0.000161880816449411
+39 0.000163981691002846
+40 0.000161257645231672
+41 0.000162380267283879
+42 0.000161967851454392
+43 0.000162990618264303
+44 0.000164696262800135
+45 0.000161340809427202
+46 0.000163465432706289
+47 0.000160747600602917
+48 0.000163685210281983
+49 0.000163817341672257
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000151864180224948
+1 0.000161721822223626
+2 0.000172778018168174
+3 0.00015199847985059
+4 0.000166621161042713
+5 0.00015527181676589
+6 0.000196200096979737
+7 0.000160406387294643
+8 0.000159924253239296
+9 0.000179911497980356
+10 0.000149735671584494
+11 0.000161774092703126
+12 0.000132600427605212
+13 0.000157890230184421
+14 0.000182432617293671
+15 0.000155251414980739
+16 0.000143970843055286
+17 0.000135399895953014
+18 0.000163237957167439
+19 0.000190745471627451
+20 0.000187807891052216
+21 0.000169508144608699
+22 0.00015377311501652
+23 0.000137707145768218
+24 0.000162306692800485
+25 0.00015834609803278
+26 0.000156971771502867
+27 0.000155014684423804
+28 0.000168443701113574
+29 0.00016815795970615
+30 0.000135590700665489
+31 0.000181757655809633
+32 0.000179569164174609
+33 0.000150193212903105
+34 0.000144121469929814
+35 0.000167378850164823
+36 0.000178927424713038
+37 0.000182267031050287
+38 0.000171104897162877
+39 0.000151292522787116
+40 0.000171830106410198
+41 0.00016755863907747
+42 0.000163948730914854
+43 0.000159542076289654
+44 0.000147575919982046
+45 0.000166476849699393
+46 0.000153531756950542
+47 0.000180589893716387
+48 0.000154274152009748
+49 0.00015139409515541
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007454500197235155, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007454500197235155, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..dc6eeec9d69b1b97b450af7494ca5281695b8d50
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007454500197235155, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007454500197235155, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007454500197235155, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..cc7d64a77db4946e63dac036f1194a5c3f5d27c7
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007454500197235155, Learning_Process.tex	
@@ -0,0 +1,265 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=9.19031651236266e-09, ymax=0.000279896200141897,
+ymode=log,
+ytick style={color=black},
+ytick={1e-10,1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-10}}\),
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000141246055136435
+1 6.80366338201566e-06
+2 1.6640041167193e-06
+3 8.5591659626516e-07
+4 1.15521459065349e-06
+5 6.17956743553805e-07
+6 3.6209644349583e-07
+7 2.46503560674682e-07
+8 1.87819068742101e-07
+9 1.58063627964111e-07
+10 1.33455955619866e-07
+11 1.09611626442074e-07
+12 9.74311191725974e-08
+13 8.52075672241881e-08
+14 7.82815448019392e-08
+15 7.00541136211541e-08
+16 6.31923526839273e-08
+17 5.76837990706736e-08
+18 5.47893854729864e-08
+19 5.28933234988926e-08
+20 4.64457947657593e-08
+21 4.36297291628307e-08
+22 3.95607493430816e-08
+23 3.83627387634533e-08
+24 3.64159866705904e-08
+25 3.44509665239912e-08
+26 3.38704069235973e-08
+27 3.09435215228859e-08
+28 2.98465288040006e-08
+29 2.88742842968759e-08
+30 2.64900492652487e-08
+31 2.60743195923396e-08
+32 2.42757423052353e-08
+33 2.36736479308775e-08
+34 2.26134648784182e-08
+35 2.18327294021492e-08
+36 2.19509246335292e-08
+37 2.04923580326977e-08
+38 1.99000069756039e-08
+39 2.04577350615409e-08
+40 1.83488317873071e-08
+41 1.8575667226628e-08
+42 1.76618435432374e-08
+43 1.72072365245413e-08
+44 1.71508549584587e-08
+45 1.69447957887314e-08
+46 1.63603441905025e-08
+47 1.48042804681836e-08
+48 1.50050496472431e-08
+49 1.4693778638275e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000128344239783473
+1 5.78877870793804e-06
+2 1.588633153915e-06
+3 7.1677101232126e-07
+4 1.08768585960206e-06
+5 7.64331559821585e-07
+6 2.84075980516718e-07
+7 1.92627226169861e-07
+8 1.77393857825336e-07
+9 1.56337691237241e-07
+10 1.26078091966519e-07
+11 1.14912324988836e-07
+12 8.50218881964793e-08
+13 8.38607547848369e-08
+14 6.79675835613125e-08
+15 7.29973450575017e-08
+16 6.49584563916505e-08
+17 5.42754960974889e-08
+18 6.37494323996179e-08
+19 3.7481154180341e-08
+20 3.96860961870971e-08
+21 4.07733793394982e-08
+22 4.82773110377366e-08
+23 3.87498388931817e-08
+24 3.90731251798115e-08
+25 3.65261954016205e-08
+26 3.03705363080553e-08
+27 3.23927586975969e-08
+28 2.79446492612578e-08
+29 2.7077925679464e-08
+30 2.81627166032195e-08
+31 2.26493721555698e-08
+32 2.38631834292846e-08
+33 2.05434140809757e-08
+34 2.19679030522002e-08
+35 2.41171758119663e-08
+36 1.94868334801868e-08
+37 2.27953318443497e-08
+38 2.37223130028497e-08
+39 2.01675671718249e-08
+40 2.19373639254172e-08
+41 1.60970508034097e-08
+42 1.8988421501831e-08
+43 1.80139920757938e-08
+44 1.47979024589517e-08
+45 1.7010689745689e-08
+46 1.59724447001963e-08
+47 1.88032380776804e-08
+48 1.64174878136691e-08
+49 1.61563473710657e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000138178787892684
+1 0.000141795811941847
+2 0.000141261596581899
+3 0.000138750081532635
+4 0.00014191895024851
+5 0.000139063660753891
+6 0.000140608928631991
+7 0.000140558244311251
+8 0.000138792427605949
+9 0.000142388831591234
+10 0.000140108735649846
+11 0.000141186872497201
+12 0.000137665731017478
+13 0.000141719399834983
+14 0.000142055345349945
+15 0.000139912488521077
+16 0.000138909366796724
+17 0.000141569267725572
+18 0.000140133764944039
+19 0.0001414799480699
+20 0.000141432843520306
+21 0.000141432348755188
+22 0.000138161994982511
+23 0.000135780515847728
+24 0.000140462550916709
+25 0.000139522366225719
+26 0.000138249481096864
+27 0.000138206145493314
+28 0.00014003028627485
+29 0.000138453091494739
+30 0.000137428505695425
+31 0.000138123650685884
+32 0.000140376869239844
+33 0.000140957461553626
+34 0.000140393865876831
+35 0.00014019561058376
+36 0.000142430289997719
+37 0.00013889507681597
+38 0.000137896451633424
+39 0.00013997100177221
+40 0.000140718620968983
+41 0.000143144759931602
+42 0.000141681244713254
+43 0.000140114934765734
+44 0.000141570752020925
+45 0.000141019743750803
+46 0.000140998934512027
+47 0.000137811119202524
+48 0.000136868373374455
+49 0.000141102354973555
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000153945467900485
+1 0.000121376266179141
+2 0.000126474056742154
+3 0.000145743309985846
+4 0.000121146898891311
+5 0.000146224672789685
+6 0.000131241307826713
+7 0.000131861350382678
+8 0.000147888174979016
+9 0.000116423412691802
+10 0.000135074995341711
+11 0.000125484657473862
+12 0.000158037160872482
+13 0.000119968492072076
+14 0.000117286806926131
+15 0.000138888499350287
+16 0.000147078288136981
+17 0.000124142810818739
+18 0.000136707094497979
+19 0.00012419736594893
+20 0.000124972299090587
+21 0.000125408289022744
+22 0.000153410597704351
+23 0.00017506284348201
+24 0.000133466819534078
+25 0.000141308206366375
+26 0.000152260763570666
+27 0.000153148750541732
+28 0.000136946066049859
+29 0.000153724904521368
+30 0.000161574498633854
+31 0.000154829103848897
+32 0.000133587382151745
+33 0.00012879517453257
+34 0.000135097652673721
+35 0.000137110575451516
+36 0.000114431510155555
+37 0.000145601661643013
+38 0.000155164554598741
+39 0.000137147697387263
+40 0.000132192522869445
+41 0.000110080909507815
+42 0.000122504992759787
+43 0.00013569749717135
+44 0.0001281461736653
+45 0.000131753389723599
+46 0.000128910163766704
+47 0.00015806287410669
+48 0.000165576144354418
+49 0.000127243853057735
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007472553751440978, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007472553751440978, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..bbc5b621c69574f1ed24db94b0d8e1bbae840c50
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007472553751440978, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007472553751440978, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007472553751440978, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..0ff4c5596f1ffcdf82ac8d2cf850f5363b2457a1
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007472553751440978, Learning_Process.tex	
@@ -0,0 +1,257 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=8.1968447660601e-06, ymax=0.0190099758617335,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000144347213790752
+1 0.000138783172587864
+2 2.49426302616484e-05
+3 0.013366318307817
+4 0.00052959518507123
+5 0.00023972436611075
+6 0.000173297623405233
+7 0.000141449563670903
+8 0.000118566465971526
+9 0.000107760606624652
+10 9.38848388614133e-05
+11 8.32354853628203e-05
+12 7.69375255913474e-05
+13 7.10698004695587e-05
+14 6.52053640806116e-05
+15 6.15940371062607e-05
+16 5.53812424186617e-05
+17 5.30592369614169e-05
+18 5.01090144098271e-05
+19 4.62944335595239e-05
+20 4.59918701380957e-05
+21 4.3140727939317e-05
+22 4.17326555179898e-05
+23 3.89873057429213e-05
+24 3.79076373064891e-05
+25 3.61685088137165e-05
+26 3.51121416315436e-05
+27 3.29179092659615e-05
+28 3.18059937853832e-05
+29 3.13657910737675e-05
+30 3.03670003631851e-05
+31 2.91472388198599e-05
+32 2.8074202418793e-05
+33 2.70579384960001e-05
+34 2.57502961176215e-05
+35 2.5852546968963e-05
+36 2.39900036831386e-05
+37 2.36208506976254e-05
+38 2.3700753445155e-05
+39 2.28224271268118e-05
+40 2.22272137762047e-05
+41 2.15186682908097e-05
+42 2.11356127692852e-05
+43 1.98096513486234e-05
+44 2.00936083274428e-05
+45 2.03720301215071e-05
+46 1.90951323020272e-05
+47 1.92541137948865e-05
+48 1.87178011401556e-05
+49 1.82389758265344e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000122592435218394
+1 1.16577966764453e-05
+2 2.18117493204772e-05
+3 0.00979168619960546
+4 0.000685758423060179
+5 0.000166674770298414
+6 0.000228912569582462
+7 0.000156612964929081
+8 0.000136913033202291
+9 8.1709906226024e-05
+10 8.63769819261506e-05
+11 8.85257759364322e-05
+12 7.41541152819991e-05
+13 6.47164051770233e-05
+14 6.60533478367142e-05
+15 5.35992803634144e-05
+16 7.03115219948813e-05
+17 5.79107727389783e-05
+18 5.24246133863926e-05
+19 6.10703500569798e-05
+20 3.89038978028111e-05
+21 4.41043048340362e-05
+22 3.73742768715601e-05
+23 4.34686080552638e-05
+24 3.69777917512693e-05
+25 3.616069079726e-05
+26 3.18875572702382e-05
+27 3.79610391973983e-05
+28 3.59558944182936e-05
+29 2.76910868706182e-05
+30 2.50662833423121e-05
+31 2.59768276009709e-05
+32 2.59376156463986e-05
+33 2.66104761976749e-05
+34 3.05762041534763e-05
+35 2.24030263780151e-05
+36 3.09540482703596e-05
+37 2.63745951087913e-05
+38 1.98767320398474e-05
+39 2.21358259295812e-05
+40 2.09238987736171e-05
+41 2.16055468627019e-05
+42 2.09795234695775e-05
+43 2.69261781795649e-05
+44 2.05864089366514e-05
+45 1.72650961758336e-05
+46 2.19721314351773e-05
+47 1.57387603394454e-05
+48 1.71082429005764e-05
+49 1.55588113557315e-05
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000141111842822284
+1 0.000143318990012631
+2 0.000140176838613115
+3 0.000144000048749149
+4 0.000142471006256528
+5 0.000142443532240577
+6 0.000144575606100261
+7 0.000143224213388748
+8 0.00014396982442122
+9 0.000142330361995846
+10 0.000141475728014484
+11 0.000143748562550172
+12 0.000142412653076462
+13 0.000142950171721168
+14 0.000142504417453893
+15 0.000145042024087161
+16 0.000140147778438404
+17 0.000143137804116122
+18 0.000141956494189799
+19 0.000145386569784023
+20 0.000143273238791153
+21 0.00014170102076605
+22 0.000142769029480405
+23 0.000140649455715902
+24 0.000140446136356331
+25 0.000143187993671745
+26 0.000141914642881602
+27 0.000143551151268184
+28 0.000143755969475023
+29 0.000141607582918368
+30 0.000145070458529517
+31 0.000143851153552532
+32 0.000145582263940014
+33 0.000144621139043011
+34 0.000143067707540467
+35 0.000140015676151961
+36 0.000139014315209351
+37 0.000144276273204014
+38 0.000143704965012148
+39 0.000142823992064223
+40 0.000140074145747349
+41 0.000143725352245383
+42 0.00014218597789295
+43 0.000140456046210602
+44 0.000144408870255575
+45 0.000140890086186118
+46 0.000142233140650205
+47 0.000145894417073578
+48 0.000144109231769107
+49 0.000142636316013522
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000154930778080598
+1 0.000135497451992705
+2 0.000161757037858479
+3 0.000124514321214519
+4 0.000149798856000416
+5 0.00014417695638258
+6 0.000123322286526673
+7 0.000132832021336071
+8 0.000129831823869608
+9 0.00014500594988931
+10 0.000153886649059132
+11 0.000131764798425138
+12 0.000145468380651437
+13 0.000139771596877836
+14 0.000139051713631488
+15 0.000115846400149167
+16 0.000161046031280421
+17 0.000133917244966142
+18 0.00014236981223803
+19 0.00011622509919107
+20 0.00013535404286813
+21 0.000147215949255042
+22 0.000140461910632439
+23 0.000160500800120644
+24 0.000160673560458235
+25 0.0001334812695859
+26 0.000147167374962009
+27 0.00013237445091363
+28 0.000137881012051366
+29 0.000150385822053067
+30 0.000118381300126202
+31 0.000128818792290986
+32 0.00011071894550696
+33 0.000120365519251209
+34 0.000133002336951904
+35 0.000169514503795654
+36 0.000183693045983091
+37 0.000124606260214932
+38 0.000131563472677954
+39 0.000138568444526754
+40 0.000160821902682073
+41 0.000130223983433098
+42 0.000144162913784385
+43 0.000159321309183724
+44 0.000122755387565121
+45 0.000156745561980642
+46 0.00014228570216801
+47 0.000112582405563444
+48 0.000127929481095634
+49 0.000139707437483594
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007492879261681559, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007492879261681559, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..5149f60b1d0a3f3209cf8d4f82c1982c29477f44
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007492879261681559, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007492879261681559, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007492879261681559, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..832eaf40a1e8a9a61c5dbb1af2206a0356832d8f
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007492879261681559, Learning_Process.tex	
@@ -0,0 +1,256 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=9.06311868004388e-06, ymax=0.00960469146776825,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000133847890538163
+1 1.4115464182396e-05
+2 4.6038690925343e-05
+3 0.000366493564797565
+4 1.94832173292525e-05
+5 0.00423434469848871
+6 0.000300212821457535
+7 0.00379354297183454
+8 0.00102254946250468
+9 0.00064949516672641
+10 0.000473931693704799
+11 0.000380232930183411
+12 0.000320384162478149
+13 0.0002908626338467
+14 0.000253283156780526
+15 0.000226274467422627
+16 0.000204624360776506
+17 0.0001851658889791
+18 0.000170389510458335
+19 0.000155057248775847
+20 0.000151487067341805
+21 0.000133497334900312
+22 0.000132310102344491
+23 0.000121586876048241
+24 0.000111786641355138
+25 0.000106804975075647
+26 9.89723339444026e-05
+27 9.50054090935737e-05
+28 9.03384570847265e-05
+29 8.66039845277555e-05
+30 7.99870540504344e-05
+31 7.89762707427144e-05
+32 8.7670334323775e-05
+33 7.53874264773913e-05
+34 6.85572886141017e-05
+35 6.79188015055843e-05
+36 6.22180014033802e-05
+37 5.97424732404761e-05
+38 6.53172464808449e-05
+39 6.13397423876449e-05
+40 5.82855791435577e-05
+41 5.63516077818349e-05
+42 5.26517287653405e-05
+43 5.1489350880729e-05
+44 5.15658321091905e-05
+45 4.82456816826016e-05
+46 4.66778510599397e-05
+47 4.39689902123064e-05
+48 4.43036879005376e-05
+49 4.14226014981978e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000141313983476721
+1 1.28999281514552e-05
+2 3.54570474883076e-05
+3 0.000376109266653657
+4 1.24390444398159e-05
+5 7.76874730945565e-05
+6 8.0914433056023e-05
+7 0.006998002063483
+8 0.0011264814529568
+9 0.000499120564199984
+10 0.000436775473644957
+11 0.000340185448294505
+12 0.000311005482217297
+13 0.000262550835032016
+14 0.000249928416451439
+15 0.000231209050980397
+16 0.000191418715985492
+17 0.000180812974576838
+18 0.000152018474182114
+19 0.000167375997989438
+20 0.000147350991028361
+21 0.000137860188260674
+22 0.000117147596029099
+23 0.000118809497507755
+24 0.000135871392558329
+25 0.00010326811025152
+26 0.000138614486786537
+27 0.000110787201265339
+28 0.000112622372398619
+29 9.39868841669522e-05
+30 0.000130184722365811
+31 8.9982888312079e-05
+32 6.8862245825585e-05
+33 8.00426132627763e-05
+34 9.26550637814216e-05
+35 7.07837898517027e-05
+36 8.99101141840219e-05
+37 0.00010165706044063
+38 5.52860146854073e-05
+39 5.02071052324027e-05
+40 5.18405686307233e-05
+41 4.93422376166563e-05
+42 6.14637319813482e-05
+43 5.48217685718555e-05
+44 4.47818856628146e-05
+45 4.49043582193553e-05
+46 4.4256987166591e-05
+47 5.06576798215974e-05
+48 4.54560104117263e-05
+49 5.76115962758195e-05
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000136752758407965
+1 0.00013367211795412
+2 0.000134095127577893
+3 0.000137277442263439
+4 0.00013077438052278
+5 0.000134850139147602
+6 0.000134567220811732
+7 0.00013621176185552
+8 0.000132708984892815
+9 0.000134968766360544
+10 0.000136717848363332
+11 0.000135655849589966
+12 0.000133225228637457
+13 0.00013333278184291
+14 0.000130964239360765
+15 0.000134346191771328
+16 0.000131351393065415
+17 0.000135797570692375
+18 0.000132440836750902
+19 0.000135726862936281
+20 0.000134861475089565
+21 0.000133990557515062
+22 0.000135952534037642
+23 0.000128794592455961
+24 0.000134765170514584
+25 0.000133071443997324
+26 0.000136142145493068
+27 0.000135277718072757
+28 0.00013259460683912
+29 0.000133216424728744
+30 0.000133337336592376
+31 0.000136001777718775
+32 0.000133942783577368
+33 0.000137242153869011
+34 0.00013730934006162
+35 0.000133985362481326
+36 0.000133156092488207
+37 0.000135927984956652
+38 0.000132981527713127
+39 0.000132407250930555
+40 0.000136066257255152
+41 0.000137293711304665
+42 0.000137701907078736
+43 0.000133355133584701
+44 0.000134374728077091
+45 0.000133115609060042
+46 0.000134784975671209
+47 0.000129435065900907
+48 0.000135011752718128
+49 0.000132472458062693
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000115553360956255
+1 0.000142422446515411
+2 0.000140097225084901
+3 0.000107433465018403
+4 0.000166377314599231
+5 0.000129816369735636
+6 0.000126967468531802
+7 0.000116750459710602
+8 0.00014618449495174
+9 0.000128595449496061
+10 0.000112354522570968
+11 0.000122231285786256
+12 0.000142393968417309
+13 0.000143451790791005
+14 0.00016449396207463
+15 0.000134478032123297
+16 0.00016079620399978
+17 0.000122659679618664
+18 0.000153247732669115
+19 0.000120806158520281
+20 0.000127055725897662
+21 0.000140384421683848
+22 0.000118734016723465
+23 0.000182664603926241
+24 0.000131636261357926
+25 0.000144775491207838
+26 0.000116625233204104
+27 0.000135471927933395
+28 0.000154910594574176
+29 0.000144169898703694
+30 0.000143169381772168
+31 0.000119971555250231
+32 0.000138983814395033
+33 0.000110167013190221
+34 0.00010655773075996
+35 0.000137340612127446
+36 0.000147599916090257
+37 0.000117658419185318
+38 0.000144550489494577
+39 0.000150683452375233
+40 0.000118309319077525
+41 0.000110108172520995
+42 0.00010426251537865
+43 0.000144562218338251
+44 0.000133936788188294
+45 0.000144668272696435
+46 0.000142936740303412
+47 0.000179028706043027
+48 0.000129008476505987
+49 0.000150764855789021
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007554136846526741, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007554136846526741, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..88af1c8d546d065c14145c9eb1a3ed78095ed0ab
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007554136846526741, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007554136846526741, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007554136846526741, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..0ef31fd4b8749117e272a3af554a35b0a50bd204
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007554136846526741, Learning_Process.tex	
@@ -0,0 +1,255 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.68005279152116e-05, ymax=0.00118303078470437,
+ymode=log,
+ytick style={color=black},
+ytick={1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000142723671160638
+1 4.73800937470514e-05
+2 8.18200715002604e-05
+3 0.000975014118012041
+4 0.00057391362497583
+5 0.000297899910947308
+6 0.000241922753048129
+7 0.000211936494451948
+8 0.000193865038454533
+9 0.000171730396687053
+10 0.000162641372298822
+11 0.00014893666957505
+12 0.000135012538521551
+13 0.000127934603369795
+14 0.000121110118925571
+15 0.000111469678813592
+16 0.000108946434920654
+17 0.000101444085885305
+18 9.75387811195105e-05
+19 9.13752155611292e-05
+20 8.83199681993574e-05
+21 8.39041313156486e-05
+22 7.84602161729708e-05
+23 7.36425718059763e-05
+24 7.18719747965224e-05
+25 6.84516708133742e-05
+26 6.76316776662134e-05
+27 6.46520202280954e-05
+28 6.20397477177903e-05
+29 6.08742629992776e-05
+30 5.75290578126442e-05
+31 5.56291197426617e-05
+32 5.33286656718701e-05
+33 5.22435657330789e-05
+34 5.083610813017e-05
+35 4.92595027026255e-05
+36 4.82166033179965e-05
+37 4.65842094854452e-05
+38 4.52049025625456e-05
+39 4.27770537498873e-05
+40 4.17655246565118e-05
+41 4.09226449846756e-05
+42 3.9444010326406e-05
+43 3.88532680517528e-05
+44 3.6026060115546e-05
+45 3.58916659024544e-05
+46 3.5621749702841e-05
+47 3.4209544537589e-05
+48 3.42748280672822e-05
+49 3.33935749949887e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000156952941324562
+1 2.0384875824675e-05
+2 7.55236396798864e-05
+3 5.22505833941977e-05
+4 0.00046372227370739
+5 0.000269876763923094
+6 0.000243848655372858
+7 0.000206865865038708
+8 0.000175374269019812
+9 0.000191579601960257
+10 0.000145312631502748
+11 0.000145603917189874
+12 0.00016763576422818
+13 0.000142164673889056
+14 0.000125512320664711
+15 0.000136341885081492
+16 9.99967232928611e-05
+17 0.000107503088656813
+18 8.77656784723513e-05
+19 9.57826050580479e-05
+20 7.72912680986337e-05
+21 7.52744817873463e-05
+22 8.60745712998323e-05
+23 9.43684499361552e-05
+24 8.01900387159549e-05
+25 8.15855964901857e-05
+26 5.98988663114142e-05
+27 6.21892540948465e-05
+28 6.14125965512358e-05
+29 4.91800201416481e-05
+30 5.89953342569061e-05
+31 5.34312566742301e-05
+32 5.51006633031648e-05
+33 4.75445522170048e-05
+34 4.36278060078621e-05
+35 4.16713191953022e-05
+36 3.72639988199808e-05
+37 3.66289568773936e-05
+38 3.68574110325426e-05
+39 4.40485091530718e-05
+40 4.138761505601e-05
+41 4.03420526708942e-05
+42 4.04594211431686e-05
+43 3.68361470464151e-05
+44 5.228146983427e-05
+45 4.32242995884735e-05
+46 3.69645022146869e-05
+47 4.07068619097117e-05
+48 3.34180367644876e-05
+49 3.16130754072219e-05
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000146252670674585
+1 0.000140792588354088
+2 0.000142360440804623
+3 0.000142608929309063
+4 0.000146726990351453
+5 0.000145372745464556
+6 0.000141185708343983
+7 0.000147076396388002
+8 0.000144657475175336
+9 0.000143615965498611
+10 0.000143878307426348
+11 0.000144076431752183
+12 0.00014263171760831
+13 0.000145712881931104
+14 0.000145863596117124
+15 0.000143896104418673
+16 0.000145269485074095
+17 0.000146485224831849
+18 0.000144377525430173
+19 0.000142681106808595
+20 0.000147395810927264
+21 0.000146890408359468
+22 0.000144269448355772
+23 0.000145991230965592
+24 0.000145130426972173
+25 0.00014649229706265
+26 0.000145553145557642
+27 0.0001433648285456
+28 0.00014493172056973
+29 0.000144784862641245
+30 0.00014308669778984
+31 0.00014665188791696
+32 0.000143570374348201
+33 0.000143425699207
+34 0.000145179146784358
+35 0.000146353791933507
+36 0.000143299359478988
+37 0.000144377409014851
+38 0.000145958532812074
+39 0.000145486541441642
+40 0.000142500080983154
+41 0.00014271802501753
+42 0.000143061086419038
+43 0.000145975616760552
+44 0.000144423771416768
+45 0.000146054051583633
+46 0.000147813960211352
+47 0.000144536417792551
+48 0.000148049410199746
+49 0.000144193720188923
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000125559774460271
+1 0.000177142312168144
+2 0.000158939496031962
+3 0.000160010094987229
+4 0.000133251509396359
+5 0.00013564077380579
+6 0.00017223293252755
+7 0.000117206189315766
+8 0.000140710631967522
+9 0.000150381049024872
+10 0.000149251471157186
+11 0.00014139361155685
+12 0.000159180708578788
+13 0.000134848363813944
+14 0.000131048567709513
+15 0.000145218073157594
+16 0.000135071488330141
+17 0.000123913821880706
+18 0.000142390155815519
+19 0.000155767804244533
+20 0.000114501803182065
+21 0.000124430676805787
+22 0.000143862358527258
+23 0.000126569881103933
+24 0.000136677786940709
+25 0.000126353741507046
+26 0.000133338660816662
+27 0.000153338667587377
+28 0.000135256384965032
+29 0.000139844065415673
+30 0.000154448440298438
+31 0.000126887796795927
+32 0.000152057691593654
+33 0.000149523330037482
+34 0.000145045618410222
+35 0.00012535962741822
+36 0.000167857884662226
+37 0.000143824479891919
+38 0.000126982558867894
+39 0.000130523738334887
+40 0.000166102763614617
+41 0.000157396760187112
+42 0.000155483765411191
+43 0.000130652872030623
+44 0.000142728895298205
+45 0.000128817904624157
+46 0.000113882160803769
+47 0.000141572949360125
+48 0.000110952671093401
+49 0.000142542456160299
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007557607830158453, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007557607830158453, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..4aa47d73d13b4d80afb9ac2fbc18c691fd17f8ae
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007557607830158453, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007557607830158453, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007557607830158453, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..d992f62508e1ec6a38d84c31eb4e45f3d0f532c0
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007557607830158453, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.66617479631778e-08, ymax=0.00030546504185127,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000143201817991212
+1 1.01268851722125e-05
+2 2.42261876337579e-06
+3 1.15736281713907e-06
+4 7.0754987291366e-07
+5 5.16021998464566e-07
+6 4.00535810740621e-07
+7 3.21100344535807e-07
+8 2.70603663921065e-07
+9 2.29823541531005e-07
+10 2.0742203332702e-07
+11 1.68168668324142e-07
+12 1.54212827396805e-07
+13 1.40833677164665e-07
+14 1.26095130781323e-07
+15 1.13834715875782e-07
+16 1.06155901846705e-07
+17 9.80368710656876e-08
+18 9.13691948767337e-08
+19 8.18460605955806e-08
+20 7.70521850768091e-08
+21 7.31402991505092e-08
+22 7.16290173841116e-08
+23 6.58804495401455e-08
+24 6.17067072994359e-08
+25 6.26877394438452e-08
+26 5.38664863825034e-08
+27 5.46194875994388e-08
+28 5.10676336773486e-08
+29 4.86279354561248e-08
+30 4.60641587096688e-08
+31 4.63836329345213e-08
+32 4.86431090962469e-08
+33 4.15322745084268e-08
+34 4.03514093250124e-08
+35 3.9079811386955e-08
+36 3.95066663827492e-08
+37 3.5339933646128e-08
+38 3.60533007892627e-08
+39 3.35358230074689e-08
+40 3.32871437080939e-08
+41 3.25908295906174e-08
+42 3.32379279655015e-08
+43 3.15877812795406e-08
+44 3.54206974861881e-08
+45 2.85764514273978e-08
+46 2.80984284728447e-08
+47 2.77544849325295e-08
+48 2.73299320951992e-08
+49 2.60318024913886e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000140169518999755
+1 1.24873040476814e-05
+2 2.17539013647183e-06
+3 1.10877670067566e-06
+4 6.29774547178386e-07
+5 4.45380464952905e-07
+6 3.28216515299573e-07
+7 3.41885964871835e-07
+8 2.46270360548806e-07
+9 2.38256646412083e-07
+10 2.20886434476597e-07
+11 1.97713688976364e-07
+12 1.65119843131833e-07
+13 1.30202693071624e-07
+14 1.32266734453879e-07
+15 1.12979435584748e-07
+16 9.94876714344173e-08
+17 9.97177309614017e-08
+18 9.0647652939424e-08
+19 7.41493551004169e-08
+20 7.06194356325796e-08
+21 7.07104774733125e-08
+22 5.89199089517933e-08
+23 5.6134844328426e-08
+24 5.78735459555446e-08
+25 4.74478731860017e-08
+26 6.14844353208355e-08
+27 5.740654529518e-08
+28 4.6991868174473e-08
+29 3.1467646266492e-08
+30 4.42049454818516e-08
+31 4.02906366048228e-08
+32 4.52517703308786e-08
+33 3.66830583686806e-08
+34 4.0310499827001e-08
+35 3.90214758283491e-08
+36 2.62565045261454e-08
+37 4.13760368189742e-08
+38 3.2753295187149e-08
+39 3.28694653717321e-08
+40 2.99989508789622e-08
+41 3.85474940856056e-08
+42 3.17485522316474e-08
+43 2.93707813625588e-08
+44 3.09750411986442e-08
+45 3.03804696955012e-08
+46 2.74841678304938e-08
+47 2.97554123562804e-08
+48 2.76147087419076e-08
+49 2.97458004894224e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000140432850457728
+1 0.000147036771522835
+2 0.000140503165312111
+3 0.000141469325171784
+4 0.000144852645462379
+5 0.000144798337714747
+6 0.000144650897709653
+7 0.000139663403388113
+8 0.000145241210702807
+9 0.000146062695421278
+10 0.000140234347782098
+11 0.000139438401674852
+12 0.000143249751999974
+13 0.000143658558954485
+14 0.000138609844725579
+15 0.000142790770041756
+16 0.00014511872723233
+17 0.000139866679091938
+18 0.000145325917401351
+19 0.000144299192470498
+20 0.000140491087222472
+21 0.000144163655932061
+22 0.000143448312883265
+23 0.000145615049405023
+24 0.000141407712362707
+25 0.000144769364851527
+26 0.000143867160659283
+27 0.000142426346428692
+28 0.000143190918606706
+29 0.000144718404044397
+30 0.00014399309293367
+31 0.000144711302709766
+32 0.000143298268085346
+33 0.000140636737341993
+34 0.000141608659760095
+35 0.000141863551107235
+36 0.000143775760079734
+37 0.000143662196933292
+38 0.000143594137625769
+39 0.000142423319630325
+40 0.000145299476571381
+41 0.000142355042044073
+42 0.000141235810588114
+43 0.000139480922371149
+44 0.000144715450005606
+45 0.000142908291309141
+46 0.000136983464471996
+47 0.000144117453601211
+48 0.000144640522194095
+49 0.000145633195643313
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000162624419317581
+1 0.000103762606158853
+2 0.000161716219736263
+3 0.000155716232256964
+4 0.000124676764244214
+5 0.000126224345876835
+6 0.000124679805594496
+7 0.000170611834619194
+8 0.000125529782962985
+9 0.00011045941937482
+10 0.000167741498444229
+11 0.000172735482919961
+12 0.000138130650157109
+13 0.000134589383378625
+14 0.00018001048010774
+15 0.000144095334690064
+16 0.000122198296594433
+17 0.000171954510733485
+18 0.000121298209705856
+19 0.000129065854707733
+20 0.000163450051331893
+21 0.000129598847706802
+22 0.000137508424813859
+23 0.000119302472739946
+24 0.00015509822696913
+25 0.000124712867545895
+26 0.000132799323182553
+27 0.000145760481245816
+28 0.000137606490170583
+29 0.000124679354485124
+30 0.000125942955492064
+31 0.00012565690849442
+32 0.000138034694828093
+33 0.000161534248036332
+34 0.000154601773829199
+35 0.000148376580909826
+36 0.000135010646772571
+37 0.000135209877043962
+38 0.000135806898470037
+39 0.000149283587234095
+40 0.000121382472570986
+41 0.000145180238178
+42 0.000154390101670288
+43 0.000171639461768791
+44 0.000125121820019558
+45 0.000146767619298771
+46 0.000195513988728635
+47 0.000129036503494717
+48 0.000129992447909899
+49 0.000119232106953859
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007559740857330035, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007559740857330035, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..06fb061793a09aa8fbc9f9f114a57a8c5c497c9e
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007559740857330035, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007559740857330035, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007559740857330035, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..ff868880bc74d3864513852fde7df893924e0038
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007559740857330035, Learning_Process.tex	
@@ -0,0 +1,256 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.18837405645687e-06, ymax=0.00183862789893327,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00012832586071454
+1 9.33824321691645e-06
+2 6.16157194599509e-06
+3 8.99621772987302e-06
+4 0.00106212240643799
+5 0.00137720082420856
+6 0.000235599582083523
+7 0.000166449477546848
+8 0.000126292055938393
+9 0.000102515456092078
+10 8.69021023390815e-05
+11 7.60349939810112e-05
+12 6.66163978166878e-05
+13 6.01826759520918e-05
+14 5.26685398654081e-05
+15 4.94416090077721e-05
+16 4.51787018391769e-05
+17 4.18308045482263e-05
+18 3.82493308279663e-05
+19 3.59486475645099e-05
+20 3.3853852073662e-05
+21 3.18141792376991e-05
+22 2.94411347567802e-05
+23 2.83238023257582e-05
+24 2.68168078036979e-05
+25 2.52044173976174e-05
+26 2.40406807279214e-05
+27 2.30101923079928e-05
+28 2.22526268771617e-05
+29 2.08640776691027e-05
+30 2.0267716536182e-05
+31 1.92729912669165e-05
+32 1.86428042070474e-05
+33 1.78778554982273e-05
+34 1.73166936292546e-05
+35 1.64427237905329e-05
+36 1.57198119268287e-05
+37 1.55089510371909e-05
+38 1.48024437294225e-05
+39 1.46925467561232e-05
+40 1.4120276318863e-05
+41 1.39166477310937e-05
+42 1.34756637635292e-05
+43 1.30861899378942e-05
+44 1.27084476844175e-05
+45 1.24292128020898e-05
+46 1.28066403703997e-05
+47 1.19087471830426e-05
+48 1.14883687274414e-05
+49 1.13046744445455e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000116135568532627
+1 8.01747864898061e-06
+2 4.25662938141613e-06
+3 7.23679931979859e-06
+4 4.37544331362005e-05
+5 0.000909062102437019
+6 0.000258813059190288
+7 0.000125207254313864
+8 0.000115233182441443
+9 9.88385800155811e-05
+10 8.52829980431125e-05
+11 6.87012288835831e-05
+12 6.61355079500936e-05
+13 5.58551982976496e-05
+14 6.75767005304806e-05
+15 4.91890641569626e-05
+16 4.62627613160294e-05
+17 4.15460926888045e-05
+18 4.4356391299516e-05
+19 3.75419294869062e-05
+20 3.32481104123872e-05
+21 3.15451179631054e-05
+22 3.41813101840671e-05
+23 2.7180371034774e-05
+24 2.58085619861959e-05
+25 2.68536441581091e-05
+26 2.46043091465253e-05
+27 2.23607639782131e-05
+28 1.94288550119381e-05
+29 2.20442725549219e-05
+30 1.87559435289586e-05
+31 2.06709519261494e-05
+32 1.78946193045704e-05
+33 1.82051862793742e-05
+34 1.74688957486069e-05
+35 1.90236205526162e-05
+36 1.97186873265309e-05
+37 1.6421448890469e-05
+38 1.7778607798391e-05
+39 1.41544469443033e-05
+40 1.47922983160242e-05
+41 1.35143118313863e-05
+42 1.30370917759137e-05
+43 1.24064508781885e-05
+44 1.32464656417142e-05
+45 1.18665775517002e-05
+46 1.11379404188483e-05
+47 1.06505349322106e-05
+48 1.12932038973668e-05
+49 1.04408063634764e-05
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000127199673443101
+1 0.000127636783872731
+2 0.000126071259728633
+3 0.000128364394186065
+4 0.000127670704387128
+5 0.000127140359836631
+6 0.00012665607209783
+7 0.000129258856759407
+8 0.00012561961193569
+9 0.000130042608361691
+10 0.000127324878121726
+11 0.000127129183965735
+12 0.000126901009934954
+13 0.000129391366499476
+14 0.000121842123917304
+15 0.000126641913084313
+16 0.000127652252558619
+17 0.000123934951261617
+18 0.000126806145999581
+19 0.000126577462651767
+20 0.00012400843843352
+21 0.000123446894576773
+22 0.000126594852190465
+23 0.000125370948808268
+24 0.000128033207147382
+25 0.000128054685774259
+26 0.00012871740909759
+27 0.000128091764054261
+28 0.000129444728372619
+29 0.000126204307889566
+30 0.000124821934150532
+31 0.000127761551993899
+32 0.000128036248497665
+33 0.000127849911223166
+34 0.000125358914374374
+35 0.000126942701172084
+36 0.000126052400446497
+37 0.000127051447634585
+38 0.000129249092424288
+39 0.00012909910583403
+40 0.000128409621538594
+41 0.000124917642096989
+42 0.000127793740830384
+43 0.000128454077639617
+44 0.000128762214444578
+45 0.000130671891383827
+46 0.000124765472719446
+47 0.000128994506667368
+48 0.000129115403979085
+49 0.000127666469779797
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000126977742183954
+1 0.000122297802590765
+2 0.000137928742333315
+3 0.000115683767944574
+4 0.000121758203022182
+5 0.000127868130221032
+6 0.000131541717564687
+7 0.00010776143608382
+8 0.000139468975248747
+9 0.000100215016573202
+10 0.000124013065942563
+11 0.000127046369016171
+12 0.000130047716083936
+13 0.00010628487507347
+14 0.000175233348272741
+15 0.000131638982566074
+16 0.000121646698971745
+17 0.000155893256305717
+18 0.000131057677208446
+19 0.000133206733153202
+20 0.000155110494233668
+21 0.000159914590767585
+22 0.00013325757754501
+23 0.000145183847052976
+24 0.000118573174404446
+25 0.000119092052045744
+26 0.000112429377622902
+27 0.000118769494292792
+28 0.000106228166259825
+29 0.000135323876747862
+30 0.000147922124597244
+31 0.00012165723455837
+32 0.000119105425255839
+33 0.00011937967792619
+34 0.000143481738632545
+35 0.00012813150533475
+36 0.000136173563078046
+37 0.00012776859512087
+38 0.000107767191366293
+39 0.000109513173811138
+40 0.000115875322080683
+41 0.000146643011248671
+42 0.000120679011160973
+43 0.000115070426545572
+44 0.000110813627543394
+45 9.52988775679842e-05
+46 0.000148880630149506
+47 0.000108284097223077
+48 0.000110229069832712
+49 0.000122081008157693
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007615655310570246, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007615655310570246, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..5ebcdb33b8fca4becf670c6b44dcd9cc4e625d75
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007615655310570246, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007615655310570246, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007615655310570246, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..fd04fea65204ef4404252f22baf92375dc0089d1
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007615655310570246, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.18882211920654e-06, ymax=0.000197179177129935,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000129138701595366
+1 1.42118615258369e-05
+2 2.22757153096609e-05
+3 0.000163471282576211
+4 5.95571291341912e-05
+5 4.63079741166439e-05
+6 3.75254239770584e-05
+7 3.32581948896404e-05
+8 2.95589288725751e-05
+9 2.62037283391692e-05
+10 2.42385431192815e-05
+11 2.19463017856469e-05
+12 1.99754467757884e-05
+13 1.85544013220351e-05
+14 1.78294230863685e-05
+15 1.61042153195012e-05
+16 1.54928002302768e-05
+17 1.4446289242187e-05
+18 1.35688942464185e-05
+19 1.32270133690326e-05
+20 1.26890736282803e-05
+21 1.15005750558339e-05
+22 1.12381767394254e-05
+23 1.06151182990288e-05
+24 1.00594006653409e-05
+25 9.76530827756505e-06
+26 9.45054307521787e-06
+27 8.95789435162442e-06
+28 8.69321775098797e-06
+29 8.39690619613975e-06
+30 8.04836417955812e-06
+31 7.70108181313844e-06
+32 7.57750785851385e-06
+33 7.17337115929695e-06
+34 7.06202399669564e-06
+35 6.7508212850953e-06
+36 6.55752046441194e-06
+37 6.29788655714947e-06
+38 6.15412000115612e-06
+39 6.06246885581641e-06
+40 5.80165578867309e-06
+41 5.75832882532268e-06
+42 5.57490238861647e-06
+43 5.35318031325005e-06
+44 5.29740236743237e-06
+45 5.13729401063756e-06
+46 4.98684585181763e-06
+47 5.07025424667518e-06
+48 5.0053995437338e-06
+49 4.68835287392722e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000102135585620999
+1 1.19805981739773e-05
+2 1.61478583322605e-05
+3 5.65278351132292e-05
+4 6.6402462834958e-05
+5 4.15645372413564e-05
+6 4.53832290077116e-05
+7 3.38667123287451e-05
+8 2.75441616395256e-05
+9 2.73766145255649e-05
+10 2.16330136026954e-05
+11 2.10987909667892e-05
+12 2.03370673261816e-05
+13 1.95605389308184e-05
+14 1.36698572532623e-05
+15 1.77802594407694e-05
+16 1.36391927298973e-05
+17 1.41094733407954e-05
+18 1.36477319756523e-05
+19 1.09215206975932e-05
+20 9.4017232186161e-06
+21 1.27536059153499e-05
+22 9.93315370578784e-06
+23 1.01755895229871e-05
+24 1.0592254511721e-05
+25 9.50072262639878e-06
+26 8.3426539276843e-06
+27 8.3147515397286e-06
+28 7.88852048572153e-06
+29 7.00095279171364e-06
+30 7.60321699999622e-06
+31 7.73007468524156e-06
+32 5.97118423684151e-06
+33 7.25781501387246e-06
+34 5.62828927286319e-06
+35 7.25612062524306e-06
+36 6.5475264818815e-06
+37 6.77202478982508e-06
+38 6.55649728287244e-06
+39 5.63550156584824e-06
+40 6.2696376517124e-06
+41 5.53435938854818e-06
+42 5.00380565426894e-06
+43 5.91229536439641e-06
+44 5.39255734111066e-06
+45 5.51859693587176e-06
+46 5.97978578298353e-06
+47 4.1492166928947e-06
+48 3.84635950467782e-06
+49 5.90817580814473e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00012502059689723
+1 0.000125625811051577
+2 0.000128461193526164
+3 0.000126005659694783
+4 0.000124889178550802
+5 0.000125202481285669
+6 0.000126315571833402
+7 0.000125622274936177
+8 0.000125813181512058
+9 0.000127983745187521
+10 0.000126731771160848
+11 0.000125371414469555
+12 0.000125209146062844
+13 0.000126311773783527
+14 0.000126007958897389
+15 0.000129564286908135
+16 0.00012702691310551
+17 0.000127723833429627
+18 0.00012854509986937
+19 0.000126349725178443
+20 0.000122831799671985
+21 0.000127892795717344
+22 0.000124592872452922
+23 0.000126585800899193
+24 0.000126454775454476
+25 0.000128040730487555
+26 0.000125532795209438
+27 0.000126912433188409
+28 0.000127599167171866
+29 0.000130012966110371
+30 0.000126442580949515
+31 0.000128452549688518
+32 0.000127562525449321
+33 0.000127128572785296
+34 0.000126357990666293
+35 0.000127839739434421
+36 0.00012610707199201
+37 0.000126879895105958
+38 0.000127434468595311
+39 0.000126516330055892
+40 0.00012942700413987
+41 0.000128434927319176
+42 0.000127079678350128
+43 0.000125332458992489
+44 0.000128316329210065
+45 0.000124980622786097
+46 0.000125726626720279
+47 0.000125011269119568
+48 0.00012608032557182
+49 0.000126708546304144
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000138974966830574
+1 0.000133539739181288
+2 0.000107335559732746
+3 0.000130855041788891
+4 0.000137517999974079
+5 0.000138462244649418
+6 0.000125461403513327
+7 0.000133287408971228
+8 0.000129602150991559
+9 0.00011044496204704
+10 0.000121017234050669
+11 0.000135771697387099
+12 0.000136315575218759
+13 0.000126446364447474
+14 0.000129269174067304
+15 9.79034957708791e-05
+16 0.00011900020763278
+17 0.000111586858110968
+18 0.000109401786176022
+19 0.00012497695570346
+20 0.000157421745825559
+21 0.000113497175334487
+22 0.00013930062414147
+23 0.000123467019875534
+24 0.000120989163406193
+25 0.000109030886960682
+26 0.000132751505589113
+27 0.000121313649287913
+28 0.000117273317300715
+29 9.4649636594113e-05
+30 0.000126945582451299
+31 0.000109483538835775
+32 0.000119674616144039
+33 0.000117526207759511
+34 0.000128613173728809
+35 0.000112517845991533
+36 0.00013220238906797
+37 0.000122532088425942
+38 0.000118113857752178
+39 0.000123281512060203
+40 0.000100015662610531
+41 0.000107987543742638
+42 0.00012067273928551
+43 0.000135422247694805
+44 0.000109487678855658
+45 0.000135336973471567
+46 0.00013208546442911
+47 0.000138257266371511
+48 0.000133630106574856
+49 0.000121138153190259
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007630092872298555, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007630092872298555, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..d730b2fb24643cb8ca224a42c8dcbbef465d2ff4
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007630092872298555, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007630092872298555, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007630092872298555, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..1a297e18e8b9c7b6d5783b338222ad1caab171b3
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007630092872298555, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.19117268026557e-08, ymax=0.000242076817882475,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000121630895591807
+1 8.36818435345776e-06
+2 2.47901812144846e-06
+3 9.92694936030603e-07
+4 9.02224257970374e-07
+5 5.36608183665521e-07
+6 3.50032337337325e-07
+7 2.82465038026203e-07
+8 2.28136016744429e-07
+9 1.9592629030285e-07
+10 1.62463607011887e-07
+11 1.39225093676032e-07
+12 1.29833821915781e-07
+13 1.13516499311572e-07
+14 1.06275507505416e-07
+15 9.20014571192951e-08
+16 8.31501907327947e-08
+17 7.94069308085454e-08
+18 7.25042355043115e-08
+19 6.44818030082206e-08
+20 6.3286925922057e-08
+21 6.04495866696197e-08
+22 5.47404859219114e-08
+23 5.47030793995873e-08
+24 4.8608189473498e-08
+25 4.81165898236213e-08
+26 4.55942377186602e-08
+27 4.28157029830345e-08
+28 4.49388473100498e-08
+29 4.03390458814101e-08
+30 3.76982498551115e-08
+31 3.64674228592321e-08
+32 3.71565143097996e-08
+33 3.56050655625495e-08
+34 3.28227685031379e-08
+35 3.19203188325901e-08
+36 3.19481863186866e-08
+37 3.14542383250682e-08
+38 2.88655481739397e-08
+39 2.8052777878429e-08
+40 2.84916499282417e-08
+41 2.7620179920973e-08
+42 2.54298573310052e-08
+43 2.47163587374644e-08
+44 2.43407107802796e-08
+45 2.4139698240333e-08
+46 2.27869758617771e-08
+47 2.25440803802712e-08
+48 2.24341683008333e-08
+49 2.19326530270791e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.00012325584248174
+1 6.74247121423832e-06
+2 1.98098473447317e-06
+3 1.00714350992348e-06
+4 6.69602457037399e-07
+5 4.98657470870967e-07
+6 3.98313488858548e-07
+7 3.58777953124445e-07
+8 2.77325796105288e-07
+9 1.56682176566392e-07
+10 2.14366068007621e-07
+11 1.37941199795932e-07
+12 1.19961356404019e-07
+13 1.14985631682885e-07
+14 8.19073235902579e-08
+15 8.91370461886254e-08
+16 1.00608524178369e-07
+17 6.57557066574554e-08
+18 8.43495087110568e-08
+19 8.78610180166106e-08
+20 6.6871699289095e-08
+21 4.75501131802503e-08
+22 4.79566892863659e-08
+23 4.22724433235544e-08
+24 6.19067606066892e-08
+25 4.27952748793814e-08
+26 4.83479425383848e-08
+27 5.08531421417047e-08
+28 3.7725033763536e-08
+29 3.70472825750312e-08
+30 4.32146514128817e-08
+31 4.40245528920968e-08
+32 3.01409670555586e-08
+33 2.93850686006181e-08
+34 2.8746564240123e-08
+35 3.8614064834519e-08
+36 3.37880621259501e-08
+37 3.01594127449789e-08
+38 3.21625464039244e-08
+39 2.41610713658247e-08
+40 2.40498057024752e-08
+41 2.3262966664106e-08
+42 2.71014695130134e-08
+43 3.05865945904316e-08
+44 2.99722238139566e-08
+45 2.40200161982784e-08
+46 2.5711267781503e-08
+47 2.52553693513846e-08
+48 1.86978610372535e-08
+49 2.12021085133074e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00012075032282155
+1 0.000123520265333354
+2 0.000122415542136878
+3 0.000122075041872449
+4 0.000123021774925292
+5 0.000122561512398534
+6 0.000120964366942644
+7 0.000120324730232824
+8 0.000122716301120818
+9 0.000121179145935457
+10 0.000123250501928851
+11 0.000120667973533273
+12 0.000124120168038644
+13 0.000123120407806709
+14 0.000122230689157732
+15 0.000119517681014258
+16 0.000121335193398409
+17 0.000121883160318248
+18 0.000122475641546771
+19 0.00012086566130165
+20 0.000122145444038324
+21 0.000120809861982707
+22 0.000120660333777778
+23 0.000124521277029999
+24 0.00012607013923116
+25 0.000121379482152406
+26 0.000120466771477368
+27 0.000125151287647896
+28 0.000122515877592377
+29 0.000124982485431246
+30 0.000119414253276773
+31 0.0001211282069562
+32 0.000121997385576833
+33 0.000118006799311843
+34 0.000121596334793139
+35 0.000122915458632633
+36 0.00011991971405223
+37 0.000122251731227152
+38 0.000121284632768948
+39 0.000122135548735969
+40 0.000123880177852698
+41 0.000121518918604124
+42 0.000123800127767026
+43 0.000122453726362437
+44 0.000121688397484832
+45 0.00012178611359559
+46 0.000122932382510044
+47 0.000121112105262
+48 0.000122977464343421
+49 0.000120918819447979
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000128823434351943
+1 0.000103255908470601
+2 0.000116400959086604
+3 0.000120282616990153
+4 0.000109577551484108
+5 0.000114399590529501
+6 0.000129062551422976
+7 0.000134184956550598
+8 0.000111672889033798
+9 0.000125930499052629
+10 0.000111016554001253
+11 0.000130236468976364
+12 9.9633565696422e-05
+13 0.000108393978734966
+14 0.000117677722300868
+15 0.000141816839459352
+16 0.000125025195302442
+17 0.000120966367830988
+18 0.000115068840386812
+19 0.000129538078908809
+20 0.000119486103358213
+21 0.000129063293570653
+22 0.000131054301164113
+23 9.96025846689008e-05
+24 8.33090307423845e-05
+25 0.000124497644719668
+26 0.000132421700982377
+27 0.000138871793751605
+28 0.000114212489279453
+29 9.23748521017842e-05
+30 0.000143414625199512
+31 0.000126178609207273
+32 0.000120108830742538
+33 0.000154218330862932
+34 0.000121520970424172
+35 0.000111499000922777
+36 0.000137589857331477
+37 0.000115124079457019
+38 0.000126507133245468
+39 0.000117990908620413
+40 0.000101427620393224
+41 0.000124747108202428
+42 0.000102837417216506
+43 0.000113684734969866
+44 0.000120852368127089
+45 0.000121199111163151
+46 0.000110572051198687
+47 0.000128616273286752
+48 0.00011144376185257
+49 0.000129353706142865
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0076403323717371486, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0076403323717371486, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..6314ca877d1c5bcab1db958c84aaad005256cfad
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0076403323717371486, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0076403323717371486, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0076403323717371486, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..e8bed691236509b08be2f98ac5a2399d6fe707a1
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.0076403323717371486, Learning_Process.tex	
@@ -0,0 +1,263 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=5.37419562699586e-07, ymax=0.000296213141435672,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000135020702145994
+1 0.000222331087570637
+2 2.44314524024958e-05
+3 1.82057792699197e-05
+4 1.45573485497152e-05
+5 1.12703046397655e-05
+6 9.83481186267454e-06
+7 8.10582059784792e-06
+8 7.10067251930013e-06
+9 6.35261721981806e-06
+10 5.68648056287202e-06
+11 4.97038990943111e-06
+12 4.533113042271e-06
+13 4.31431953984429e-06
+14 3.95873121306067e-06
+15 3.57049589183589e-06
+16 3.27340740113868e-06
+17 2.92880349661573e-06
+18 2.87289481093467e-06
+19 2.66292704509397e-06
+20 2.50290327130642e-06
+21 2.31133708439302e-06
+22 2.13709972740617e-06
+23 2.05187370738713e-06
+24 1.95318693840818e-06
+25 1.82710891749593e-06
+26 1.75882985331555e-06
+27 1.65491849202226e-06
+28 1.62616333909682e-06
+29 1.5713482071078e-06
+30 1.45610863455659e-06
+31 1.38627001433633e-06
+32 1.38741143018706e-06
+33 1.30092269046145e-06
+34 1.23402651297511e-06
+35 1.19113633445522e-06
+36 1.15496425223682e-06
+37 1.13334658635722e-06
+38 1.11821657355904e-06
+39 1.03392778783018e-06
+40 1.00652653145517e-06
+41 9.92421291812207e-07
+42 9.57328438744298e-07
+43 9.06886612028757e-07
+44 9.21990761071356e-07
+45 8.55092537221935e-07
+46 8.63216087054752e-07
+47 8.31578972793068e-07
+48 8.11372103726171e-07
+49 7.7919543173266e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000121874873002525
+1 9.80902677838458e-06
+2 2.74914818874095e-05
+3 1.97734243556624e-05
+4 1.21486855277908e-05
+5 1.38597406476038e-05
+6 8.20641253085341e-06
+7 9.40326754061971e-06
+8 8.22029960545478e-06
+9 6.4428977566422e-06
+10 5.20991443409002e-06
+11 5.6727485571173e-06
+12 5.47115860172198e-06
+13 3.13156169795548e-06
+14 2.74481112683134e-06
+15 2.83437498183048e-06
+16 2.86624685941206e-06
+17 3.62214927918103e-06
+18 2.03349213734327e-06
+19 2.1989465039951e-06
+20 1.97422127712343e-06
+21 2.08388382816338e-06
+22 2.4495784600731e-06
+23 2.00534645955486e-06
+24 1.81513041752623e-06
+25 2.07052289624698e-06
+26 1.89079162282724e-06
+27 1.83075576387637e-06
+28 1.48090589391359e-06
+29 1.17827005396975e-06
+30 1.59797571086528e-06
+31 1.52780319240264e-06
+32 9.89077420854301e-07
+33 1.35003426748881e-06
+34 1.43678198583075e-06
+35 1.24662744838133e-06
+36 1.16469880140357e-06
+37 9.47247485783009e-07
+38 1.04667935829639e-06
+39 1.14440172183095e-06
+40 1.07679204575106e-06
+41 9.95364871414495e-07
+42 8.68144240939728e-07
+43 1.05811579942383e-06
+44 7.18517583209177e-07
+45 1.07847188246524e-06
+46 7.97397660790011e-07
+47 7.77267018747807e-07
+48 7.16007548362541e-07
+49 8.48646038775769e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000134553847601637
+1 0.000133600828121416
+2 0.000132055807625875
+3 0.00012577124289237
+4 0.00013488344848156
+5 0.000131742664962076
+6 0.000130651475046761
+7 0.000133629830088466
+8 0.000136395450681448
+9 0.000134230038383976
+10 0.000133861249196343
+11 0.000133495923364535
+12 0.000131721404613927
+13 0.000135637208586559
+14 0.000135789334308356
+15 0.000132448403746821
+16 0.000141088545206003
+17 0.000133300156448968
+18 0.000133198482217267
+19 0.000136522474349476
+20 0.000136230912175961
+21 0.000135773181682453
+22 0.000136527611175552
+23 0.000133027322590351
+24 0.000129862441099249
+25 0.000133419540361501
+26 0.000135936876176856
+27 0.000136555594508536
+28 0.000131391454488039
+29 0.000133913577883504
+30 0.000134473768412136
+31 0.000133800363983028
+32 0.000132366549223661
+33 0.000134236004669219
+34 0.000134913978399709
+35 0.000136650371132419
+36 0.000134964298922569
+37 0.00013461108028423
+38 0.000139654832310043
+39 0.000134559231810272
+40 0.000137529961648397
+41 0.000132451401441358
+42 0.000128473329823464
+43 0.000131786830024794
+44 0.000134836678626016
+45 0.000134197325678542
+46 0.000133021239889786
+47 0.000135651687742211
+48 0.000134102418087423
+49 0.000129590465803631
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000125244638184085
+1 0.00013391996617429
+2 0.000148166000144556
+3 0.000202578026801348
+4 0.000124504862469621
+5 0.000151899454067461
+6 0.000171591003891081
+7 0.000136597940581851
+8 0.000109555796370842
+9 0.000126766841276549
+10 0.000131557317217812
+11 0.000136991540784948
+12 0.000148827020893805
+13 0.000116972623800393
+14 0.000115422451926861
+15 0.000143811106681824
+16 0.000141783326398581
+17 0.000141418335260823
+18 0.000140240299515426
+19 0.000108658103272319
+20 0.000115065537102055
+21 0.000114408496301621
+22 0.000108419968455564
+23 0.000137159484438598
+24 0.000170338724274188
+25 0.000134205329231918
+26 0.000111847955849953
+27 0.000106765561213251
+28 0.000154825233039446
+29 0.000131622044136748
+30 0.000124173748190515
+31 0.000132578425109386
+32 0.000145216341479681
+33 0.000127039704238996
+34 0.000125102145830169
+35 0.000109657645225525
+36 0.000120921620691661
+37 0.00012526752834674
+38 8.67239577928558e-05
+39 0.000125430902699009
+40 9.77702438831329e-05
+41 0.000145913290907629
+42 0.000183068797923625
+43 0.00015069184883032
+44 0.000125039994600229
+45 0.000129985375679098
+46 0.000139603143907152
+47 0.00011579216516111
+48 0.000129060979816131
+49 0.00016854700515978
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007721883928366626, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007721883928366626, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..a8ce57fb5ffa797442dd313bb9b9dd40192444d3
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007721883928366626, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007721883928366626, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007721883928366626, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..896ef2bebe849a06402913dcc37a573d186932bf
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007721883928366626, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.17532056221725e-08, ymax=0.000285359928779633,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000147484257468022
+1 6.65526022203267e-06
+2 3.19143464366789e-06
+3 1.47423133967095e-06
+4 6.95694041041861e-07
+5 4.77764842798933e-07
+6 3.79379002879432e-07
+7 2.97021358619531e-07
+8 2.57524618518801e-07
+9 2.17024322068937e-07
+10 1.83032014433593e-07
+11 1.61668211262622e-07
+12 1.43258347407027e-07
+13 1.29225099954056e-07
+14 1.16009793771354e-07
+15 1.04369995312936e-07
+16 9.62145350058563e-08
+17 8.56635935519989e-08
+18 7.83042040097826e-08
+19 7.57766542847094e-08
+20 6.82421870124017e-08
+21 6.07600298963007e-08
+22 6.29580583222378e-08
+23 5.88528941136701e-08
+24 5.49800063254224e-08
+25 5.25162207054564e-08
+26 4.86728630733069e-08
+27 4.87036153629106e-08
+28 4.51272903490008e-08
+29 4.11646858822223e-08
+30 3.96115531486885e-08
+31 3.95705832545445e-08
+32 3.72140860349646e-08
+33 3.64395695839903e-08
+34 3.31323946056727e-08
+35 3.26392175509227e-08
+36 3.24283568886585e-08
+37 3.22275610642464e-08
+38 3.07246814656992e-08
+39 2.99633349243322e-08
+40 2.89609083381492e-08
+41 2.73179505683174e-08
+42 2.6281240295134e-08
+43 2.5614342646918e-08
+44 2.39874147212049e-08
+45 2.35690045258252e-08
+46 2.4216216587547e-08
+47 2.19953157909458e-08
+48 2.1557495344382e-08
+49 2.27606662406288e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000123178309877403
+1 6.82401014273637e-06
+2 3.05612570628e-06
+3 1.46436855175125e-06
+4 8.0970505678124e-07
+5 6.27956694643217e-07
+6 3.35167868570352e-07
+7 3.2611796996207e-07
+8 1.98598442580078e-07
+9 1.66847016203064e-07
+10 1.61802020670621e-07
+11 1.35761638375698e-07
+12 1.10964656130363e-07
+13 1.10847736323194e-07
+14 1.16410298289793e-07
+15 1.06374216102267e-07
+16 9.24267595792116e-08
+17 9.08098272134339e-08
+18 8.68768879058734e-08
+19 6.96334936378662e-08
+20 6.76765310458904e-08
+21 8.8895482974749e-08
+22 6.21262756794749e-08
+23 5.2735703803819e-08
+24 5.34802495621989e-08
+25 6.16823783161635e-08
+26 5.25123873273969e-08
+27 4.78208121990065e-08
+28 3.76703148674551e-08
+29 4.14683150040673e-08
+30 5.05262640615456e-08
+31 3.04997129774165e-08
+32 2.86278574179732e-08
+33 3.59900091950749e-08
+34 3.63363881206169e-08
+35 3.4933261616743e-08
+36 3.82364255813172e-08
+37 2.85422689927373e-08
+38 3.35419230168554e-08
+39 2.61477079988026e-08
+40 2.32147936429783e-08
+41 2.47138025599725e-08
+42 3.36825927149675e-08
+43 2.41405988532506e-08
+44 2.65055977166639e-08
+45 1.85988149326022e-08
+46 1.9058248312831e-08
+47 3.24554001451816e-08
+48 2.13565254369996e-08
+49 2.27209895342639e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000145662459544837
+1 0.000145747515489347
+2 0.00014460168313235
+3 0.000145942714880221
+4 0.000148625855217688
+5 0.000144150806590915
+6 0.000144635676406324
+7 0.000146853664773516
+8 0.000147667713463306
+9 0.000144060264574364
+10 0.000150122607010417
+11 0.000145682497532107
+12 0.000148190505569801
+13 0.000144228484714404
+14 0.000145131925819442
+15 0.000148531253216788
+16 0.000143698227475397
+17 0.000144683071994223
+18 0.000146057340316474
+19 0.000141598895424977
+20 0.000144587393151596
+21 0.000149136103573255
+22 0.000145847938256338
+23 0.000141260214149952
+24 0.00014170324720908
+25 0.000150872350786813
+26 0.000141736207297072
+27 0.00014406735135708
+28 0.000146142992889509
+29 0.00014815891336184
+30 0.000144281017128378
+31 0.000145063866511919
+32 0.000145513113238849
+33 0.000145313169923611
+34 0.000148922161315568
+35 0.000149316809256561
+36 0.000147579645272344
+37 0.000143711527925916
+38 0.000146557111293077
+39 0.000148948762216605
+40 0.000142854551086202
+41 0.000146398888318799
+42 0.000143404307891615
+43 0.000144410514621995
+44 0.000141324591822922
+45 0.000143925790325738
+46 0.000146196354762651
+47 0.000143391487654299
+48 0.000144554898724891
+49 0.000147183556691743
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000139008669066243
+1 0.000136676389956847
+2 0.000149521380080841
+3 0.000139772149850614
+4 0.000116930925287306
+5 0.000154137218487449
+6 0.000149159372085705
+7 0.00012773962225765
+8 0.00012199684715597
+9 0.000155306290253066
+10 0.000101068661024328
+11 0.000142091812449507
+12 0.000120350276120007
+13 0.000155825473484583
+14 0.000147744882269762
+15 0.000115226059278939
+16 0.000156202979269437
+17 0.000154040913912468
+18 0.000140477233799174
+19 0.000175994704477489
+20 0.000149632833199576
+21 0.000108292791992426
+22 0.000139818934258074
+23 0.000177206820808351
+24 0.000177629044628702
+25 9.47919543250464e-05
+26 0.000176526562427171
+27 0.000153566303197294
+28 0.000135771770146675
+29 0.00011988128972007
+30 0.000152164328028448
+31 0.000146908496390097
+32 0.000142896707984619
+33 0.000146085934829898
+34 0.00011100759729743
+35 0.000107082247268409
+36 0.000132044733618386
+37 0.00015964315389283
+38 0.000133295165142044
+39 0.000110579981992487
+40 0.000165587713127024
+41 0.000134158457512967
+42 0.000161130912601948
+43 0.000150881576701067
+44 0.000180328366695903
+45 0.000155915244249627
+46 0.000133959634695202
+47 0.000159420553245582
+48 0.000150734194903634
+49 0.000127680948935449
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007770621171109875, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007770621171109875, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..91cebfc822ef15903e6feb41028b23addfaf1b9c
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007770621171109875, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007770621171109875, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007770621171109875, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..df15b8d38daf50ace1cc7eb5dd483d62f68d965e
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007770621171109875, Learning_Process.tex	
@@ -0,0 +1,257 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.29758316560856e-06, ymax=0.0454738968559614,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000137964976602234
+1 4.47317979705986e-05
+2 1.54046410898445e-05
+3 4.7032670408953e-05
+4 2.37659587583039e-05
+5 1.84064665518235e-05
+6 1.48630151670659e-05
+7 1.15244092739886e-05
+8 9.89315776678268e-06
+9 8.70410258357879e-06
+10 7.24079245628673e-06
+11 6.70635199639946e-06
+12 5.94566108702566e-06
+13 5.29482304045814e-06
+14 4.86506223751348e-06
+15 4.43967064711615e-06
+16 4.16220791521482e-06
+17 0.000167080870596692
+18 0.0105557534843683
+19 0.00198101322166622
+20 0.00117544562090188
+21 0.000881317944731563
+22 0.000740387418773025
+23 0.00063868222059682
+24 0.000560796353965998
+25 0.000475502311019227
+26 0.000437482056440786
+27 0.000404762249672785
+28 0.000372825103113428
+29 0.000345058739185333
+30 0.000319753482472152
+31 0.000296989077469334
+32 0.000279946922091767
+33 0.000265889713773504
+34 0.000247593387030065
+35 0.000230622128583491
+36 0.000217387336306274
+37 0.000208945537451655
+38 0.000200365859200247
+39 0.000189438709639944
+40 0.00018601756892167
+41 0.000178035727003589
+42 0.000170421539223753
+43 0.000163196586072445
+44 0.000165259960340336
+45 0.000159392919158563
+46 0.000155159417772666
+47 0.000147717466461472
+48 0.000143373385071754
+49 0.00013982281961944
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000153038330608979
+1 1.88031899597263e-05
+2 1.34048968902789e-05
+3 4.48629289167002e-05
+4 3.06957044813316e-05
+5 1.77035344677279e-05
+6 1.1327252650517e-05
+7 1.35526051963097e-05
+8 9.51209221966565e-06
+9 6.51092295811395e-06
+10 8.30203407531371e-06
+11 5.05914886161918e-06
+12 5.14572047904949e-06
+13 5.56205259272247e-06
+14 5.48487741980352e-06
+15 4.64970389657537e-06
+16 3.60218723471917e-06
+17 6.80431412547478e-06
+18 0.0290046166628599
+19 0.00203166273422539
+20 0.00130744965281337
+21 0.00113715080078691
+22 0.0008262749761343
+23 0.000640520127490163
+24 0.000515709398314357
+25 0.000646558415610343
+26 0.000491958111524582
+27 0.00039707642281428
+28 0.000348229194059968
+29 0.000295885023660958
+30 0.000290501629933715
+31 0.000279975327430293
+32 0.000248129887040704
+33 0.000231501253438182
+34 0.000239453001995571
+35 0.000247980380663648
+36 0.000237814267165959
+37 0.00021865451708436
+38 0.000212475075386465
+39 0.000208710465813056
+40 0.000154464272782207
+41 0.000165047677000985
+42 0.00016089275595732
+43 0.000195401909877546
+44 0.000160767332999967
+45 0.000154311026562937
+46 0.000127078106743284
+47 0.000131069842609577
+48 0.0001293275563512
+49 0.000127159393741749
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000137933908263221
+1 0.000135178415803239
+2 0.000135675421915948
+3 0.00014108773029875
+4 0.000138260336825624
+5 0.000137241804623045
+6 0.000140699645271525
+7 0.000138092596898787
+8 0.000140269214170985
+9 0.000139935582410544
+10 0.000140106116305105
+11 0.000141928932862356
+12 0.000139719122671522
+13 0.000139402371132746
+14 0.000143730983836576
+15 0.000139142721309327
+16 0.000139645271701738
+17 0.000140476578962989
+18 0.000137582886964083
+19 0.000141652577440254
+20 0.000139761279569939
+21 0.000138066097861156
+22 0.000141811397043057
+23 0.000140964155434631
+24 0.000134778485517018
+25 0.000140005678986199
+26 0.000139070631121285
+27 0.000140774398460053
+28 0.000137990937219001
+29 0.00014194542018231
+30 0.000142385062645189
+31 0.000140756950713694
+32 0.000137655166327022
+33 0.000136195580125786
+34 0.00014177753473632
+35 0.000138480594614521
+36 0.000141367650940083
+37 0.00013995505287312
+38 0.000137629118398763
+39 0.000138050905661657
+40 0.000141376527608372
+41 0.000141858938150108
+42 0.000138503557536751
+43 0.000138336676172912
+44 0.000137630631797947
+45 0.00014359678607434
+46 0.000142117860377766
+47 0.000136706788907759
+48 0.000141358163091354
+49 0.000140570453368127
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000151956919580698
+1 0.000178608388523571
+2 0.000172405692865141
+3 0.000125778475194238
+4 0.000151801301399246
+5 0.000160022609634325
+6 0.000125303413369693
+7 0.000150909152580425
+8 0.000132768022012897
+9 0.000134115616674535
+10 0.000134611836983822
+11 0.000117092233267613
+12 0.00013498512271326
+13 0.000139513984322548
+14 9.96238813968375e-05
+15 0.000139322961331345
+16 0.00013836617290508
+17 0.000131084118038416
+18 0.000155713249114342
+19 0.000118761745397933
+20 0.000136242757434957
+21 0.000152398235513829
+22 0.000119760843517724
+23 0.000125669597764499
+24 0.000178321890416555
+25 0.000134953326778486
+26 0.000143131866934709
+27 0.000124846512335353
+28 0.00014937378000468
+29 0.000115931965410709
+30 0.000112490357423667
+31 0.000129253705381416
+32 0.000153461762238294
+33 0.000165775141795166
+34 0.000118409763672389
+35 0.000155650704982691
+36 0.000121077639050782
+37 0.00013384351041168
+38 0.00015488216013182
+39 0.000155106405145489
+40 0.000121187673357781
+41 0.000116397561214399
+42 0.000146857317304239
+43 0.00014895862841513
+44 0.000154362496687099
+45 0.000101278070360422
+46 0.000114268077595625
+47 0.000162533673574217
+48 0.000120983771921601
+49 0.000129059510072693
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007780422178918287, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007780422178918287, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..3b2ee46d6ed185659a1e69bb386083dab5dba30b
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007780422178918287, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007780422178918287, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007780422178918287, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..9c9578d05e85115bf98d2f164b30a1de5937a903
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007780422178918287, Learning_Process.tex	
@@ -0,0 +1,258 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.16441448836031e-06, ymax=58446.7064102442,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-06,0.0001,0.01,1,100,10000,1000000,100000000},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{0}}\),
+  \(\displaystyle {10^{2}}\),
+  \(\displaystyle {10^{4}}\),
+  \(\displaystyle {10^{6}}\),
+  \(\displaystyle {10^{8}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000123579957289621
+1 6.6543543653097e-06
+2 2.2575546609005e-05
+3 0.000214270752621815
+4 0.00789131782948971
+5 0.00293104513548315
+6 1.0022646188736
+7 0.991630911827087
+8 0.99075311422348
+9 0.990154445171356
+10 0.989478230476379
+11 0.995440244674683
+12 0.989445745944977
+13 0.994953095912933
+14 0.988459944725037
+15 0.992111086845398
+16 0.988609313964844
+17 0.989772915840149
+18 0.990619421005249
+19 0.992881953716278
+20 0.995430529117584
+21 0.993848979473114
+22 0.997379899024963
+23 0.993151366710663
+24 0.995704531669617
+25 0.996627807617188
+26 0.996631741523743
+27 0.997290253639221
+28 0.995988726615906
+29 0.997427463531494
+30 0.997089684009552
+31 0.99595981836319
+32 1.00129842758179
+33 0.996515274047852
+34 0.995612680912018
+35 0.994499742984772
+36 0.997269630432129
+37 0.999003469944
+38 0.996498703956604
+39 0.998917162418365
+40 0.996204853057861
+41 1.00126218795776
+42 0.995125710964203
+43 0.993062853813171
+44 0.995482742786407
+45 0.998168885707855
+46 0.996517479419708
+47 0.99692976474762
+48 0.991183340549469
+49 0.994261026382446
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000145656827953644
+1 3.54760886693839e-05
+2 3.56862483386067e-06
+3 2.22506114369025e-05
+4 0.00111527589615434
+5 0.00430619250983
+6 19070.705078125
+7 465.510955810547
+8 267.052764892578
+9 479.381164550781
+10 52.3791275024414
+11 52.0073051452637
+12 43.5987548828125
+13 687.868286132812
+14 16.4640064239502
+15 38.9817810058594
+16 21.9275798797607
+17 210.793121337891
+18 86.8753509521484
+19 17.4951305389404
+20 60.780818939209
+21 23.4676036834717
+22 266.556976318359
+23 240.883544921875
+24 10.7207326889038
+25 21.2643070220947
+26 25.540002822876
+27 9.20814418792725
+28 22.5587558746338
+29 8.73764801025391
+30 21.2955780029297
+31 5.87903833389282
+32 14.7840852737427
+33 20.9967079162598
+34 21.4754180908203
+35 13.2296600341797
+36 3.63911819458008
+37 5.38179922103882
+38 14.380350112915
+39 105.267967224121
+40 12.5620222091675
+41 4.33723449707031
+42 20.5805187225342
+43 6.66461801528931
+44 14.6107654571533
+45 9.54258632659912
+46 13.1247425079346
+47 5.70322322845459
+48 24.5341033935547
+49 5.85639953613281
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000125179780297913
+1 0.000124969621538185
+2 0.000124541547847912
+3 0.000125122751342133
+4 0.00012493874237407
+5 0.000128783794934861
+6 0.000125378370285034
+7 0.000127523730043322
+8 0.000124066922580823
+9 0.000127542545669712
+10 0.000125879756524228
+11 0.000128069164929911
+12 0.000122430908959359
+13 0.000125074700918049
+14 0.00012587197124958
+15 0.000124435144243762
+16 0.00012797987437807
+17 0.000125848091556691
+18 0.000129249936435372
+19 0.000127194565720856
+20 0.000126867482322268
+21 0.000128209008835256
+22 0.000128086117911153
+23 0.000123929668916389
+24 0.000127179751871154
+25 0.00012725057604257
+26 0.000127002087538131
+27 0.000127306877402589
+28 0.000125243910588324
+29 0.000125718215713277
+30 0.000122422585263848
+31 0.000129113424918614
+32 0.000124127080198377
+33 0.000125648555695079
+34 0.000127818828332238
+35 0.000127265433548018
+36 0.000126854691188782
+37 0.000123172823805362
+38 0.000123419435112737
+39 0.000127096864162013
+40 0.000125553109683096
+41 0.000126840925076976
+42 0.000122350960737094
+43 0.000128665342344902
+44 0.000125527803902514
+45 0.000124779908219352
+46 0.000123429708764888
+47 0.00012433112715371
+48 0.000125733553431928
+49 0.000126257829833776
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000131125198095106
+1 0.00013320789730642
+2 0.000138915173010901
+3 0.000130292755784467
+4 0.00013295523240231
+5 9.84175349003635e-05
+6 0.000130596687085927
+7 0.000112295318103861
+8 0.000141581724165007
+9 0.00010604986891849
+10 0.000126722137792967
+11 0.000104793718492147
+12 0.000156377238454297
+13 0.000132072484120727
+14 0.00012459876597859
+15 0.000138572533614933
+16 0.000105040664493572
+17 0.000123840276501141
+18 9.51963229454122e-05
+19 0.000112275476567447
+20 0.000114918300823774
+21 0.000105254774098285
+22 0.000103101534477901
+23 0.000141414420795627
+24 0.000114222690172028
+25 0.000117820418381598
+26 0.000115608905616682
+27 0.000110912333184388
+28 0.000129926818772219
+29 0.000126306986203417
+30 0.000153659013449214
+31 9.45858628256246e-05
+32 0.000136000962811522
+33 0.000128602201584727
+34 0.000106114101072308
+35 0.000113817128294613
+36 0.000117502037028316
+37 0.000149293031427078
+38 0.00014716228179168
+39 0.000113038440758828
+40 0.000127155028167181
+41 0.000114884496724699
+42 0.000156698195496574
+43 9.91939596133307e-05
+44 0.000125628226669505
+45 0.000135968817630783
+46 0.000146733174915425
+47 0.000138857518322766
+48 0.00012677964696195
+49 0.000121815828606486
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00778510250257949, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00778510250257949, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..1ad1fda5997e204ae6cbac43eee11dcb0d1da69c
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00778510250257949, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00778510250257949, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00778510250257949, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..02b35dd7266c87b5bff1ae38ed74ec3f7310dd8b
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00778510250257949, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=4.29435153758329e-08, ymax=0.000284889308562838,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000150784981087781
+1 2.28804674407002e-05
+2 1.30447197079775e-05
+3 4.75741080663283e-06
+4 5.14984594701673e-06
+5 2.17573256122705e-06
+6 1.40800966619281e-06
+7 1.06529523691279e-06
+8 8.4808561950922e-07
+9 7.02258489582164e-07
+10 5.86450028094987e-07
+11 5.14957434916141e-07
+12 4.44463523763261e-07
+13 6.64512867842859e-07
+14 3.71378547470158e-07
+15 3.33136540575651e-07
+16 3.02140932717521e-07
+17 2.82677660834452e-07
+18 2.56515505725474e-07
+19 2.58080149251327e-07
+20 2.30307989568246e-07
+21 2.151398064143e-07
+22 2.03203228466009e-07
+23 1.93559699823709e-07
+24 1.85293700383227e-07
+25 1.68207790807173e-07
+26 1.58776018110984e-07
+27 1.55324471506901e-07
+28 1.47544596984517e-07
+29 1.77814769131146e-07
+30 1.37148688850175e-07
+31 1.23527172490867e-07
+32 1.21257599516866e-07
+33 1.16023414875599e-07
+34 1.13494287745652e-07
+35 1.10305947487177e-07
+36 1.06566609758829e-07
+37 1.12871916257973e-07
+38 1.00484321308159e-07
+39 9.79118155441938e-08
+40 9.46712432892127e-08
+41 9.02964742977019e-08
+42 8.9763510402463e-08
+43 8.32119226856776e-08
+44 8.49992574103453e-08
+45 7.98624313347318e-08
+46 7.77361535142518e-08
+47 7.51475681681768e-08
+48 7.69247208154411e-08
+49 7.03415352631964e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000188574937055819
+1 1.65823785209795e-05
+2 1.19837541205925e-05
+3 4.60978253613575e-06
+4 4.51655932920403e-06
+5 1.6428062963314e-06
+6 1.61404830123502e-06
+7 7.84354426741629e-07
+8 8.16683780158201e-07
+9 6.0670498669424e-07
+10 5.88139585033787e-07
+11 4.73028109126972e-07
+12 4.88097555262357e-07
+13 3.67169718629157e-07
+14 3.03545419910733e-07
+15 2.87375542029622e-07
+16 2.82685107322322e-07
+17 2.81028690096718e-07
+18 2.61099899034889e-07
+19 2.17631352938952e-07
+20 2.13057006703821e-07
+21 2.14023472722147e-07
+22 1.82848069130159e-07
+23 1.57986406179589e-07
+24 1.90926812138059e-07
+25 1.62009470727753e-07
+26 1.78020499674858e-07
+27 1.48778624975421e-07
+28 1.50482151184406e-07
+29 1.30488018612596e-07
+30 1.10774180939188e-07
+31 1.45742788504322e-07
+32 1.34353058456327e-07
+33 2.45398098286387e-07
+34 5.30410716237384e-07
+35 1.12745965452632e-07
+36 1.01104546956776e-07
+37 8.41298586351513e-08
+38 9.12760214077935e-08
+39 9.82930146165018e-08
+40 7.86707730071612e-08
+41 9.00670116266156e-08
+42 6.4064110461004e-08
+43 7.60669109922674e-08
+44 7.11930070451672e-08
+45 9.87146719921839e-08
+46 8.1466495771565e-08
+47 7.56283782266109e-08
+48 6.61296084558671e-08
+49 7.39185139764231e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000152562861330807
+1 0.00015267547860276
+2 0.000157092625158839
+3 0.000153578555909917
+4 0.000152870867168531
+5 0.000154405002831481
+6 0.000155891582835466
+7 0.000155370231368579
+8 0.000152456763316877
+9 0.000158330658450723
+10 0.000152460299432278
+11 0.000153403001604602
+12 0.000155259025632404
+13 0.000155247558723204
+14 0.000153831279021688
+15 0.000152975990204141
+16 0.000155847810674459
+17 0.000155359288328327
+18 0.000155340181663632
+19 0.000154607318108901
+20 0.00015523936599493
+21 0.000157918242621236
+22 0.000155142741277814
+23 0.00014995331002865
+24 0.000155444067786448
+25 0.000155462883412838
+26 0.000152245876961388
+27 0.000150466890772805
+28 0.000155430927406996
+29 0.000154626875882968
+30 0.000155914603965357
+31 0.000154429260874167
+32 0.000156296300701797
+33 0.000154833265696652
+34 0.000150604915688746
+35 0.000154316672706045
+36 0.000156950016389601
+37 0.000153895671246573
+38 0.000155759116751142
+39 0.000152911772602238
+40 0.000155259811435826
+41 0.000155467379954644
+42 0.000150582316564396
+43 0.000149975065141916
+44 0.000152837877976708
+45 0.000152040156535804
+46 0.000156962239998393
+47 0.000157179238158278
+48 0.000153232685988769
+49 0.0001506456756033
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000171534047694877
+1 0.000169126433320343
+2 0.00013855894212611
+3 0.0001607098383829
+4 0.00016606377903372
+5 0.000153511922690086
+6 0.00013318529818207
+7 0.0001415143487975
+8 0.000174091823282652
+9 0.000117895731818862
+10 0.000168219092302024
+11 0.000156804453581572
+12 0.000148104256368242
+13 0.000143241326441057
+14 0.000161343647050671
+15 0.000160922398208641
+16 0.000138198505737819
+17 0.00014469244342763
+18 0.000140330914291553
+19 0.000148036371683702
+20 0.00014821082004346
+21 0.000123093952424824
+22 0.000150356703670695
+23 0.000189348415005952
+24 0.000140544594614767
+25 0.000142081087687984
+26 0.000178453745320439
+27 0.000190967271919362
+28 0.000145357524161227
+29 0.00014615232066717
+30 0.000141484240884893
+31 0.000152153355884366
+32 0.000138190225698054
+33 0.000141159922350198
+34 0.000180173738044687
+35 0.000155127097968943
+36 0.00012809805048164
+37 0.000152994034579024
+38 0.000144233767059632
+39 0.00016527681145817
+40 0.000151006286614574
+41 0.000142328484798782
+42 0.000185981960385107
+43 0.000186317833140492
+44 0.00016615264758002
+45 0.000175822977325879
+46 0.000133148656459525
+47 0.000135271271574311
+48 0.000154060893692076
+49 0.000186244389624335
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007840265454066513, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007840265454066513, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..9084758ae76c5e20ad8965855f19bac9dc1c7dbd
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007840265454066513, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007840265454066513, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007840265454066513, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..d0090b9e7c15be3a793478136e11624582c6fd0a
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007840265454066513, Learning_Process.tex	
@@ -0,0 +1,257 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=7.42457651936411e-06, ymax=0.0192721562287703,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000172931380802765
+1 1.40089960041223e-05
+2 0.00012019400310237
+3 0.00156414066441357
+4 0.000175448469235562
+5 0.000111136432678904
+6 9.51003530644812e-05
+7 7.63826683396474e-05
+8 7.12328910594806e-05
+9 0.0134814539924264
+10 5.59278996661305e-05
+11 5.37034029548522e-05
+12 4.89777994516771e-05
+13 4.41584525106009e-05
+14 4.14038295275532e-05
+15 3.85342391382437e-05
+16 3.57560165866744e-05
+17 3.38309691869654e-05
+18 3.17075864586513e-05
+19 3.03860815620283e-05
+20 2.9113027267158e-05
+21 2.67216837528395e-05
+22 2.55742088484112e-05
+23 2.47789066634141e-05
+24 2.42267124122009e-05
+25 2.30719488172326e-05
+26 2.17760098166764e-05
+27 2.07189241336891e-05
+28 2.03737854462815e-05
+29 2.00939884962281e-05
+30 1.94618023670046e-05
+31 1.87997193279443e-05
+32 1.81483574124286e-05
+33 1.73013013409218e-05
+34 1.64567263709614e-05
+35 1.6056073945947e-05
+36 1.65021101565799e-05
+37 1.58134498633444e-05
+38 1.49241832332336e-05
+39 1.44618770718807e-05
+40 1.42739390867064e-05
+41 1.40278007165762e-05
+42 1.32338418552536e-05
+43 1.30369280668674e-05
+44 1.30133421407663e-05
+45 1.22722995001823e-05
+46 1.22046722026425e-05
+47 1.18425950859091e-05
+48 1.18882189781289e-05
+49 1.11898889372242e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.00012835836969316
+1 1.14379472506698e-05
+2 3.95430797652807e-05
+3 0.00502659473568201
+4 0.000131377295474522
+5 0.00014610898506362
+6 8.35562605061568e-05
+7 0.000118585070595145
+8 7.05834609107114e-05
+9 6.07184556429274e-05
+10 6.94360860507004e-05
+11 4.24023237428628e-05
+12 4.07144252676517e-05
+13 4.36398659076076e-05
+14 4.03833764721639e-05
+15 4.070332943229e-05
+16 3.87061627407093e-05
+17 3.4796819818439e-05
+18 3.84882514481433e-05
+19 3.03818360407604e-05
+20 3.00033188977977e-05
+21 3.70630405086558e-05
+22 3.35359763994347e-05
+23 2.7764563128585e-05
+24 2.35671450354857e-05
+25 2.48998694587499e-05
+26 2.52804729825584e-05
+27 2.75462225545198e-05
+28 2.28194548981264e-05
+29 1.75266686710529e-05
+30 1.63552012963919e-05
+31 1.64460143423639e-05
+32 1.65518140420318e-05
+33 1.66113259183476e-05
+34 1.96463788597612e-05
+35 1.71648189279949e-05
+36 1.32748336909572e-05
+37 1.14747790576075e-05
+38 1.40715055749752e-05
+39 1.46391130328993e-05
+40 1.204146155942e-05
+41 1.15557404569699e-05
+42 1.43566821861896e-05
+43 1.29930549519486e-05
+44 1.06136621980113e-05
+45 1.48731460285489e-05
+46 1.17399749797187e-05
+47 1.32336181195569e-05
+48 1.08162103060749e-05
+49 1.34099745991989e-05
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000167916572536342
+1 0.000170971485204063
+2 0.000171258259797469
+3 0.000173484557308257
+4 0.000170763756614178
+5 0.00016488810069859
+6 0.000168988204677589
+7 0.000172988438862376
+8 0.000168953731190413
+9 0.000168381389812566
+10 0.000171442035934888
+11 0.000169327191542834
+12 0.000168251266586594
+13 0.000167956022778526
+14 0.000167668695212342
+15 0.000169498278410174
+16 0.000168417813256383
+17 0.000173410939169116
+18 0.000168161743204109
+19 0.000166299927514046
+20 0.000166347192134708
+21 0.000169830382219516
+22 0.000172169806319289
+23 0.000169001563335769
+24 0.000167524922289886
+25 0.000165909121278673
+26 0.000169456805451773
+27 0.000166430239914916
+28 0.000171470863278955
+29 0.000169870589161292
+30 0.000166133584571071
+31 0.00016688035975676
+32 0.000170707426150329
+33 0.000167836566106416
+34 0.000170449144206941
+35 0.000169109203852713
+36 0.000166332451044582
+37 0.000167582256835885
+38 0.00017050068709068
+39 0.000168274636962451
+40 0.000168682061485015
+41 0.000166328318300657
+42 0.000172419167938642
+43 0.000170261657331139
+44 0.000170690967934206
+45 0.000164386525284499
+46 0.00016979048086796
+47 0.000168108163052239
+48 0.000168928920174949
+49 0.000167098332894966
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000172446234500967
+1 0.000146721067721955
+2 0.000142728051287122
+3 0.00012594650615938
+4 0.0001499880454503
+5 0.000202160139451735
+6 0.000158810813445598
+7 0.000128618077724241
+8 0.000164750890689902
+9 0.000173138789250515
+10 0.000143757904879749
+11 0.000162455326062627
+12 0.000169722799910232
+13 0.000174646760569885
+14 0.000175823442987166
+15 0.000161368967383169
+16 0.000174573899130337
+17 0.000126259474200197
+18 0.00017516067600809
+19 0.0001895158784464
+20 0.000189851547474973
+21 0.000157865899382159
+22 0.0001367638760712
+23 0.000163051809067838
+24 0.000176675108377822
+25 0.000189255602890626
+26 0.000160839597810991
+27 0.000185797442100011
+28 0.000143828961881809
+29 0.000159158167662099
+30 0.000188723366591148
+31 0.000182687697815709
+32 0.000146926715387963
+33 0.000171758045325987
+34 0.000150025225593708
+35 0.000162917174748145
+36 0.000186505727469921
+37 0.000175266861333512
+38 0.000150176798342727
+39 0.000171426436281763
+40 0.000167132326168939
+41 0.000186746343388222
+42 0.000134691406856291
+43 0.000151845029904507
+44 0.000150853942614049
+45 0.000206311931833625
+46 0.000156235139002092
+47 0.000169596038176678
+48 0.000165003497386351
+49 0.000179759299498983
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007917361590337773, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007917361590337773, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..3003765f6e83c9ac4dc178464495fa91849c2241
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007917361590337773, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007917361590337773, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007917361590337773, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..47f7dd82242fc3166fa599ec230154e894fef2ab
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007917361590337773, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.52912526277788e-08, ymax=0.000278045621475324,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00015148772217799
+1 8.50504511618055e-06
+2 2.16117041418329e-06
+3 1.53549206061143e-06
+4 1.20431764116802e-06
+5 7.1560288006367e-07
+6 4.90669094688201e-07
+7 3.54333053564915e-07
+8 2.88452099539427e-07
+9 2.40447121768739e-07
+10 1.99157440761155e-07
+11 1.77856080085803e-07
+12 1.62989181262674e-07
+13 1.4585164365144e-07
+14 1.285248174554e-07
+15 1.17747731565032e-07
+16 1.13210646190964e-07
+17 1.01084808079577e-07
+18 1.02062919893342e-07
+19 8.89962237238251e-08
+20 8.5026890417339e-08
+21 7.69261632171947e-08
+22 7.17297936603245e-08
+23 6.79962397498457e-08
+24 6.25936280584938e-08
+25 5.75243070954912e-08
+26 5.55170949212425e-08
+27 5.33211306219528e-08
+28 5.09412529936526e-08
+29 4.75091290752516e-08
+30 4.5518230962216e-08
+31 4.47260788405401e-08
+32 4.16954897275446e-08
+33 4.13909475582841e-08
+34 4.11973317682168e-08
+35 4.1797033389912e-08
+36 3.74084265786223e-08
+37 3.67762638120439e-08
+38 3.50065967325008e-08
+39 3.43156045801152e-08
+40 3.30943770165959e-08
+41 3.19958637362561e-08
+42 3.07501473173488e-08
+43 2.95698381336251e-08
+44 2.97896818324261e-08
+45 2.88136394743788e-08
+46 2.71056510570133e-08
+47 2.67185349400734e-08
+48 2.58816577058951e-08
+49 2.73828497654449e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000135955910081975
+1 1.01366595117725e-05
+2 2.45445994551119e-06
+3 1.38246230108052e-06
+4 1.11747192477196e-06
+5 7.95200946868135e-07
+6 2.75239074198907e-07
+7 3.13360999371071e-07
+8 2.49160677867621e-07
+9 1.86025602033624e-07
+10 2.36213310245148e-07
+11 1.77575699922272e-07
+12 1.26762401464475e-07
+13 1.182519255849e-07
+14 1.36662279714983e-07
+15 1.16099386104906e-07
+16 9.30419901123969e-08
+17 1.08775218166102e-07
+18 7.92945868965944e-08
+19 8.65220997070537e-08
+20 6.34730668025441e-08
+21 6.98582809377513e-08
+22 6.35163956985707e-08
+23 6.5105382418551e-08
+24 5.1739814210805e-08
+25 6.23185343329169e-08
+26 6.22998683752485e-08
+27 5.83621151406533e-08
+28 5.65252626927304e-08
+29 5.81095278562316e-08
+30 5.67687372665659e-08
+31 4.23684767270061e-08
+32 5.74561020982856e-08
+33 3.47980702031236e-08
+34 3.89533276745624e-08
+35 3.24291349329542e-08
+36 4.16384509094314e-08
+37 3.61972745110961e-08
+38 3.21317159546197e-08
+39 3.67958392644141e-08
+40 3.39481935895947e-08
+41 3.42325279234501e-08
+42 3.53531888208636e-08
+43 3.34208145602588e-08
+44 3.28233120683308e-08
+45 2.48497311616802e-08
+46 3.05329805883048e-08
+47 2.39286865877375e-08
+48 3.16027453095558e-08
+49 2.38816628694849e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00014868650760036
+1 0.000150669002323411
+2 0.000154292240040377
+3 0.000151468077092431
+4 0.000150407518958673
+5 0.000151664688019082
+6 0.000148720559081994
+7 0.000148451304994524
+8 0.000152487045852467
+9 0.000150682069943286
+10 0.000147283892147243
+11 0.000148526713019237
+12 0.000152001579408534
+13 0.000149914980283938
+14 0.000152258377056569
+15 0.000148145918501541
+16 0.000150478226714768
+17 0.000150248248246498
+18 0.000150770079926588
+19 0.000151136497152038
+20 0.000153092478285544
+21 0.000150596359162591
+22 0.000148156788782217
+23 0.000147175611346029
+24 0.000149409315781668
+25 0.000149391999002546
+26 0.000152988824993372
+27 0.000149583516758867
+28 0.000152247172081843
+29 0.000150205116369762
+30 0.000153226443217136
+31 0.000147501967148855
+32 0.000152213047840632
+33 0.000148815641296096
+34 0.000149231622344814
+35 0.000154101508087479
+36 0.000146866877912544
+37 0.000147714235936292
+38 0.000148785751662217
+39 0.000152137654367834
+40 0.000152621490997262
+41 0.000151020532939583
+42 0.000149337662151083
+43 0.000148656836245209
+44 0.000151220636325888
+45 0.000149771673022769
+46 0.000150388281326741
+47 0.00014990362979006
+48 0.000152663953485899
+49 0.000152768421685323
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000161210191436112
+1 0.000144669553264976
+2 0.000107031133666169
+3 0.000134756046463735
+4 0.000144492922117934
+5 0.000135361260618083
+6 0.000163761200383306
+7 0.000167614241945557
+8 0.000128735904581845
+9 0.000141493423143402
+10 0.000171339488588274
+11 0.000160532232257538
+12 0.000136363654746674
+13 0.000148826948134229
+14 0.000132631757878698
+15 0.00016666877490934
+16 0.000146306454553269
+17 0.000147889397339895
+18 0.000144364355946891
+19 0.0001419779000571
+20 0.000119743337563705
+21 0.000144315141369589
+22 0.000164722325280309
+23 0.000170618644915521
+24 0.000156714857439511
+25 0.000153640095959418
+26 0.000122482670121826
+27 0.00015437368710991
+28 0.00012851542851422
+29 0.00014454081247095
+30 0.000126130165881477
+31 0.000172629093867727
+32 0.000128622617921792
+33 0.000160131239681505
+34 0.000153208660776727
+35 0.000112106230517384
+36 0.000178030561073683
+37 0.000170946936123073
+38 0.000159568764502183
+39 0.000130989967146888
+40 0.000127583582070656
+41 0.00014166247274261
+42 0.00015445331519004
+43 0.000168904225574806
+44 0.000137644470669329
+45 0.000153359724208713
+46 0.000143335360917263
+47 0.000153951070387848
+48 0.000120893448183779
+49 0.000131154418340884
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007925890212367786, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007925890212367786, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..e1360056b28882dbb952476472d790cdc4965420
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007925890212367786, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007925890212367786, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007925890212367786, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..5395bb27b0e8034987f46d6b804cc9f869656f28
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007925890212367786, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.26798283336751e-06, ymax=0.000214634741236508,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000124690355733037
+1 1.33022876980249e-05
+2 4.02539035349037e-06
+3 1.60107902047457e-06
+4 0.000139394906000234
+5 5.62051100132521e-05
+6 3.85176717827562e-05
+7 2.69101237790892e-05
+8 2.37471977015957e-05
+9 1.95844113477506e-05
+10 1.67736161529319e-05
+11 1.44815230669337e-05
+12 1.24931002574158e-05
+13 1.14011863843189e-05
+14 1.00638017102028e-05
+15 9.19505600904813e-06
+16 8.4579787653638e-06
+17 7.88884972280357e-06
+18 7.06407672623754e-06
+19 6.65716379444348e-06
+20 6.19931734036072e-06
+21 5.74643490836024e-06
+22 5.54983944311971e-06
+23 5.11275493408903e-06
+24 4.87154784423183e-06
+25 4.5551487346529e-06
+26 4.44772695118445e-06
+27 4.3193758756388e-06
+28 4.10699340136489e-06
+29 3.87508634958067e-06
+30 3.71805845134077e-06
+31 3.6154524423182e-06
+32 3.51227049577574e-06
+33 3.37301253239275e-06
+34 3.14967519443599e-06
+35 3.14079397867317e-06
+36 3.08895005218801e-06
+37 2.94514870802232e-06
+38 2.82510018223547e-06
+39 2.77860476671776e-06
+40 2.65908192886855e-06
+41 2.53212488132704e-06
+42 2.50780385613325e-06
+43 2.44406191995949e-06
+44 2.4197242964874e-06
+45 2.31199078370992e-06
+46 2.3270406472875e-06
+47 2.23016036215995e-06
+48 2.16099056160601e-06
+49 2.19492017095035e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000151692773215473
+1 1.36365733851562e-05
+2 1.95835582417203e-06
+3 1.96388714357454e-06
+4 0.000124427053378895
+5 5.48115458514076e-05
+6 3.55116317223292e-05
+7 4.64521726826206e-05
+8 2.07624561880948e-05
+9 1.92833304026863e-05
+10 1.50647456393926e-05
+11 1.36252074298682e-05
+12 1.42031321956892e-05
+13 1.13947271529469e-05
+14 1.11804183688946e-05
+15 9.37831646297127e-06
+16 7.87066710472573e-06
+17 6.13818701822311e-06
+18 7.67985602578847e-06
+19 6.03195485382457e-06
+20 6.12153189649689e-06
+21 5.89445471632644e-06
+22 4.56283441963024e-06
+23 5.32257217855658e-06
+24 4.88262503495207e-06
+25 5.22467371411039e-06
+26 4.10695929531357e-06
+27 3.38845711667091e-06
+28 3.86961983167566e-06
+29 3.69921326637268e-06
+30 3.61075376531517e-06
+31 3.18285310640931e-06
+32 2.89116906060372e-06
+33 2.92150230052357e-06
+34 3.72781801161182e-06
+35 2.84153543361754e-06
+36 2.34384197028703e-06
+37 2.67221435024112e-06
+38 2.89065860670235e-06
+39 2.65054768533446e-06
+40 2.74647959486174e-06
+41 3.21539164360729e-06
+42 2.71771455118142e-06
+43 2.74491844720615e-06
+44 2.23246047426073e-06
+45 2.63429751612421e-06
+46 1.97719964489806e-06
+47 2.19220282815513e-06
+48 2.35260404224391e-06
+49 1.63346612680471e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000126684826682322
+1 0.000129829117213376
+2 0.00012543291086331
+3 0.000129192310851067
+4 0.000127447725390084
+5 0.000130574073409662
+6 0.000129258231027052
+7 0.000126562779769301
+8 0.000129220788949169
+9 0.000128462619613856
+10 0.000130032523884438
+11 0.0001226205349667
+12 0.000128478277474642
+13 0.000124136728118174
+14 0.000125662409118377
+15 0.000129470819956623
+16 0.00012554471322801
+17 0.000130591040942818
+18 0.000127954961499199
+19 0.000128047598991543
+20 0.000127550170873292
+21 0.000129324340377934
+22 0.000126546336105093
+23 0.000126394152175635
+24 0.000127155188238248
+25 0.00013111115549691
+26 0.000127709994558245
+27 0.000126786340842955
+28 0.000127337931189686
+29 0.000127934355987236
+30 0.000128029540064745
+31 0.000126442319015041
+32 0.000128266066894867
+33 0.000126474609714933
+34 0.000129141655634157
+35 0.000128985164337792
+36 0.000126004859339446
+37 0.000128640182083473
+38 0.000128239902551286
+39 0.00013115067849867
+40 0.000129651511088014
+41 0.000130841828649864
+42 0.000126566403196193
+43 0.000127810970298015
+44 0.000128212806885131
+45 0.000124779049656354
+46 0.000126133556477726
+47 0.000123484991490841
+48 0.000126577608170919
+49 0.000129961990751326
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000133300782181323
+1 0.000106691477412824
+2 0.000147733837366104
+3 0.000112189947685692
+4 0.000129062129417434
+5 9.96999442577362e-05
+6 0.000110944631160237
+7 0.000136219226988032
+8 0.000109880420495756
+9 0.000118614756502211
+10 0.000105015191365965
+11 0.000169981096405536
+12 0.000117541574581992
+13 0.000158122071297839
+14 0.000143622659379616
+15 0.000109375221654773
+16 0.000145442812936381
+17 9.97454262687825e-05
+18 0.000120115946629085
+19 0.000120806966151576
+20 0.000128411207697354
+21 0.000109576736576855
+22 0.000135852940729819
+23 0.000135569542180747
+24 0.000130845422972925
+25 9.36895012273453e-05
+26 0.00012448790948838
+27 0.000133864392410032
+28 0.000127560735563748
+29 0.000121754557767417
+30 0.000122923724120483
+31 0.000137041977723129
+32 0.000119475669634994
+33 0.000137956027174369
+34 0.000113340465759393
+35 0.000113794863864314
+36 0.000142455959576182
+37 0.00011917080701096
+38 0.000119575350254308
+39 9.57126831053756e-05
+40 0.000108961823571008
+41 9.70695618889295e-05
+42 0.000135809255880304
+43 0.00012373759818729
+44 0.000120329670608044
+45 0.000150678708450869
+46 0.000139870346174575
+47 0.000164444703841582
+48 0.000136672621010803
+49 0.000104847647889983
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00794545549934727, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00794545549934727, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..1839a5615212cd8225fa52ca493487dcdb7690f6
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00794545549934727, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00794545549934727, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00794545549934727, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..9e612a4125708a8750e18af9d1eb7196b3555972
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00794545549934727, Learning_Process.tex	
@@ -0,0 +1,263 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.97,0.03)},
+  anchor=south east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=6.76384274817946e-07, ymax=0.000541207300624236,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00013102222874295
+1 7.66096673032735e-06
+2 1.92674383470148e-06
+3 9.46907239267603e-05
+4 2.52115023613442e-06
+5 0.000399393844418228
+6 0.000115323979116511
+7 8.30472345114686e-05
+8 7.03398327459581e-05
+9 6.12824005656876e-05
+10 5.37029227416497e-05
+11 4.76449386042077e-05
+12 4.44571305706631e-05
+13 4.08947489631828e-05
+14 3.68660985259339e-05
+15 3.50098016497213e-05
+16 3.21582083415706e-05
+17 3.07699192489963e-05
+18 2.85052228718996e-05
+19 2.72690758720273e-05
+20 2.59462394751608e-05
+21 2.47000662056962e-05
+22 2.3285543647944e-05
+23 2.25879666686524e-05
+24 2.15965465031331e-05
+25 2.09755380637944e-05
+26 1.95759894268122e-05
+27 1.90550290426472e-05
+28 1.8592092601466e-05
+29 1.78403552126838e-05
+30 1.70475232152967e-05
+31 1.62677570187952e-05
+32 1.55355519382283e-05
+33 1.50539453898091e-05
+34 1.45766798596014e-05
+35 1.41803666338092e-05
+36 1.37040869958582e-05
+37 1.35189029606408e-05
+38 1.31068882183172e-05
+39 1.27832354337443e-05
+40 1.25693240988767e-05
+41 1.21561215564725e-05
+42 1.18499692689511e-05
+43 1.14146860141773e-05
+44 1.143960889749e-05
+45 1.10007285911706e-05
+46 1.07103141999687e-05
+47 1.06367815533304e-05
+48 1.0296451364411e-05
+49 1.01168325272738e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000113290756416973
+1 0.000110243599920068
+2 0.00035249927896075
+3 9.1654919742723e-07
+4 2.33964306062262e-06
+5 0.000346844084560871
+6 0.000117746436444577
+7 9.6499003120698e-05
+8 7.07845319993794e-05
+9 5.80131782044191e-05
+10 5.45045731996652e-05
+11 5.39455104444642e-05
+12 3.95687020500191e-05
+13 3.49664296663832e-05
+14 4.13714114984032e-05
+15 3.24744323734194e-05
+16 3.5344943171367e-05
+17 2.91693722829223e-05
+18 3.14586177410092e-05
+19 2.68589483312098e-05
+20 2.55776631092886e-05
+21 2.42387595790206e-05
+22 2.5490566258668e-05
+23 2.01831189770019e-05
+24 1.88857975444989e-05
+25 1.52811899170047e-05
+26 2.05845281016082e-05
+27 1.7981639757636e-05
+28 1.81679261004319e-05
+29 1.44308933158754e-05
+30 1.5641779100406e-05
+31 1.62190099217696e-05
+32 1.81947580131236e-05
+33 1.67226280609611e-05
+34 1.68252718140138e-05
+35 1.63452878041426e-05
+36 1.57067297550384e-05
+37 1.36517573992023e-05
+38 1.35245691126329e-05
+39 1.32688892335864e-05
+40 1.16947521746624e-05
+41 1.21386756291031e-05
+42 1.18608732009307e-05
+43 1.27795228763716e-05
+44 9.81401080935029e-06
+45 1.1223582077946e-05
+46 1.1265213288425e-05
+47 9.61473506322363e-06
+48 1.05237159004901e-05
+49 9.7574302344583e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000130108950543217
+1 0.000129966821987182
+2 0.0001287744671572
+3 0.00012886272452306
+4 0.00013350709923543
+5 0.000130266693304293
+6 0.000131826585857198
+7 0.000129084932268597
+8 0.000128184547065757
+9 0.000129221254610457
+10 0.000131222885102034
+11 0.000128106621559709
+12 0.000131174077978358
+13 0.000130290776723996
+14 0.000129457141156308
+15 0.000131202032207511
+16 0.000128849191241898
+17 0.000128445579321124
+18 0.000129158564959653
+19 0.000129204578115605
+20 0.000129668755107559
+21 0.000128079278510995
+22 0.000131062828586437
+23 0.000129253749037161
+24 0.000128321480588056
+25 0.000130184824229218
+26 0.000130586136947386
+27 0.000129780484712683
+28 0.000127348364912905
+29 0.000130870495922863
+30 0.000130981730762869
+31 0.00012890889775008
+32 0.000129027830553241
+33 0.000129034335259348
+34 0.000128347630379722
+35 0.000131799330119975
+36 0.000128961459267884
+37 0.000130525542772375
+38 0.000130473097669892
+39 0.000127689811051823
+40 0.000129040272440761
+41 0.000128650237456895
+42 0.000126364437164739
+43 0.000129341540741734
+44 0.000131993481772952
+45 0.000130701606394723
+46 0.000129847321659327
+47 0.000127396648167633
+48 0.000131460241391324
+49 0.000130017564515583
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000120365060865879
+1 0.000127051753224805
+2 0.000139073730679229
+3 0.00013181047688704
+4 9.32081238715909e-05
+5 0.000123281832202338
+6 0.000108147170976736
+7 0.000131829612655565
+8 0.000140023053972982
+9 0.000131399239762686
+10 0.000110739543742966
+11 0.000143355428008363
+12 0.000113950576633215
+13 0.000120782948215492
+14 0.000134445959702134
+15 0.000111390989331994
+16 0.000134636458824389
+17 0.000136112910695374
+18 0.000134112880914472
+19 0.000130807893583551
+20 0.000127349892864004
+21 0.000139682073495351
+22 0.000115630216896534
+23 0.000129734034999274
+24 0.000138934105052613
+25 0.000126079103210941
+26 0.000120150907605421
+27 0.000129374544485472
+28 0.000147897619171999
+29 0.00011466378782643
+30 0.000114656308142003
+31 0.000135535839945078
+32 0.000135891474201344
+33 0.000134055910166353
+34 0.000142399308970198
+35 0.000107279302028473
+36 0.000133350462419912
+37 0.000119147989607882
+38 0.000120747674372979
+39 0.000143784942338243
+40 0.000131038148538209
+41 0.000136780538014136
+42 0.000159459537826478
+43 0.000130901375086978
+44 0.000107162508356851
+45 0.00011613446258707
+46 0.000124760132166557
+47 0.000149327752296813
+48 0.000112544359581079
+49 0.000124186262837611
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007976078619187013, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007976078619187013, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..5d989ef4dcc2573b11b49e3b1d5c410124b3d905
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007976078619187013, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007976078619187013, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007976078619187013, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..f9c7959435dbb851818527aeadf7bf9b3d7fb093
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.007976078619187013, Learning_Process.tex	
@@ -0,0 +1,265 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=8.29345805809331e-09, ymax=0.000305463057248093,
+ymode=log,
+ytick style={color=black},
+ytick={1e-10,1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-10}}\),
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000145451165735722
+1 9.62859121500514e-06
+2 1.22350604669919e-06
+3 6.77423088291107e-07
+4 4.45056315356851e-07
+5 3.17454350806656e-07
+6 2.50038624471927e-07
+7 2.05349877546723e-07
+8 1.72067757375771e-07
+9 1.47206051792637e-07
+10 1.28134161059279e-07
+11 1.10500160133142e-07
+12 9.97113644984893e-08
+13 8.95745060347508e-08
+14 8.10585660815377e-08
+15 7.64646657103185e-08
+16 6.68575310669439e-08
+17 6.00272045403472e-08
+18 5.7172123035798e-08
+19 5.33575708061562e-08
+20 5.23951371178555e-08
+21 4.73269565759438e-08
+22 4.53092141583511e-08
+23 4.49047767858701e-08
+24 4.0760230746173e-08
+25 3.84728586766414e-08
+26 3.75159459053975e-08
+27 3.45032802329115e-08
+28 3.29425731138144e-08
+29 3.13748529379154e-08
+30 3.16410400102995e-08
+31 2.91696480303472e-08
+32 2.81128809120901e-08
+33 2.77102323309464e-08
+34 2.66212332178384e-08
+35 2.46777069889959e-08
+36 2.41565540903821e-08
+37 2.49667060359116e-08
+38 2.43210660499926e-08
+39 2.21134328626249e-08
+40 2.21349409912364e-08
+41 2.10568575909065e-08
+42 2.01481107353629e-08
+43 2.06752268638866e-08
+44 1.96544593933368e-08
+45 1.91821296624539e-08
+46 1.86809412383582e-08
+47 1.88810123091798e-08
+48 1.85576514155628e-08
+49 1.75128356261212e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.00013442437921185
+1 1.14600034066825e-05
+2 1.81566940682387e-06
+3 7.37583377485862e-07
+4 3.92063611798221e-07
+5 3.09561016820226e-07
+6 2.35092471712051e-07
+7 1.9041006282805e-07
+8 1.67645907822589e-07
+9 1.6470708885663e-07
+10 1.14650482885281e-07
+11 1.06503833308125e-07
+12 9.49555953866366e-08
+13 8.78577210983167e-08
+14 8.31759052744019e-08
+15 6.05492616045922e-08
+16 7.04745488633307e-08
+17 7.24195032830721e-08
+18 5.59842092684448e-08
+19 6.36269348319729e-08
+20 4.61999327683316e-08
+21 4.66833753876017e-08
+22 4.41815792839861e-08
+23 4.3435022689664e-08
+24 3.68908921188904e-08
+25 3.82899578710294e-08
+26 2.66867523635028e-08
+27 3.8891911913197e-08
+28 3.39859980158508e-08
+29 3.84378289197684e-08
+30 2.53324774490693e-08
+31 2.83186274430136e-08
+32 2.92239832333507e-08
+33 1.92486062644548e-08
+34 2.42173801012768e-08
+35 3.14350359076343e-08
+36 2.47941880360258e-08
+37 1.90180458048417e-08
+38 2.32824053369995e-08
+39 2.61327564032854e-08
+40 1.99056540139964e-08
+41 2.09919175375717e-08
+42 2.3869793253084e-08
+43 1.50486929584304e-08
+44 1.85328214996616e-08
+45 2.07719956790697e-08
+46 1.74690999443783e-08
+47 1.97749283614712e-08
+48 1.33749216146839e-08
+49 1.70480713990173e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000145338723086752
+1 0.000147773418575525
+2 0.000144868594361469
+3 0.000140848016599193
+4 0.000147923667100258
+5 0.00014532680506818
+6 0.000142566932481714
+7 0.000144997888128273
+8 0.000145579193485901
+9 0.000144021905725822
+10 0.000146385340485722
+11 0.000145220823469572
+12 0.000139446638058871
+13 0.000142626115120947
+14 0.000143537370604463
+15 0.000145740443258546
+16 0.000148306688060984
+17 0.000146898324601352
+18 0.000141902564791963
+19 0.000139549229061231
+20 0.000144634832395241
+21 0.00014864033437334
+22 0.000145868631079793
+23 0.000147995393490419
+24 0.000145008496474475
+25 0.000145424040965736
+26 0.000142311415402219
+27 0.00014783491496928
+28 0.000145217214594595
+29 0.000140466436278075
+30 0.00014589044440072
+31 0.000145334226544946
+32 0.00014626512711402
+33 0.000146184320328757
+34 0.000151042564539239
+35 0.000144564473885112
+36 0.00014237106370274
+37 0.000142792734550312
+38 0.000143620753078721
+39 0.000146446560393088
+40 0.000144505494972691
+41 0.000142740551382303
+42 0.000140004034619778
+43 0.000142200166010298
+44 0.000145928031997755
+45 0.000143169760121964
+46 0.000144195306347683
+47 0.000143487646710128
+48 0.000143444834975526
+49 0.000144979800097644
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000135340873384848
+1 0.00011788729170803
+2 0.000142252625664696
+3 0.000176598812686279
+4 0.000110796769149601
+5 0.000136650327476673
+6 0.000161478266818449
+7 0.000142470162245445
+8 0.000141303084092215
+9 0.000149891464388929
+10 0.000128176485304721
+11 0.000140542193548754
+12 0.000189022670383565
+13 0.000164552810019813
+14 0.000154659850522876
+15 0.000130715532577597
+16 0.000116480259748641
+17 0.000123769001220353
+18 0.000167264443007298
+19 0.00018941008602269
+20 0.000138708783197217
+21 0.000108105763501953
+22 0.000132331042550504
+23 0.000107497115095612
+24 0.000139089621370658
+25 0.000142250457429327
+26 0.00016459972539451
+27 0.000114427813969087
+28 0.000140054180519655
+29 0.000178131042048335
+30 0.000129843945614994
+31 0.000148461549542844
+32 0.000127096747746691
+33 0.000130607935716398
+34 0.000114042915811297
+35 0.000142694683745503
+36 0.000163395918207243
+37 0.000158307011588477
+38 0.000151860280311666
+39 0.000127167586470023
+40 0.000153174725710414
+41 0.000162526077474467
+42 0.000186235411092639
+43 0.00016578433860559
+44 0.000135570357088
+45 0.000157938993652351
+46 0.000151341242599301
+47 0.000163432167028077
+48 0.000150288658915088
+49 0.000134697154862806
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00803304149835524, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00803304149835524, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..fa66dab7330c051064d32eb95cceb1cd4476e891
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00803304149835524, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00803304149835524, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00803304149835524, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..8664b7a8658ce529403de3da2235fc40130d7e74
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00803304149835524, Learning_Process.tex	
@@ -0,0 +1,257 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.13608558830375e-06, ymax=0.010277530795496,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000125969294458628
+1 7.90059675637167e-06
+2 1.03536094684387e-05
+3 0.000434190209489316
+4 0.00679280096665025
+5 0.000330690032569692
+6 0.00018561416072771
+7 0.000144012155942619
+8 0.000121718359878287
+9 0.000106610859802458
+10 9.6057789050974e-05
+11 8.55319085530937e-05
+12 7.55893925088458e-05
+13 7.21989126759581e-05
+14 6.80514349369332e-05
+15 6.28205525572412e-05
+16 5.90872441534884e-05
+17 5.39969732926693e-05
+18 5.12445767526515e-05
+19 4.88637342641596e-05
+20 4.51007254014257e-05
+21 4.44507641077507e-05
+22 4.06390718126204e-05
+23 3.86842948500998e-05
+24 3.63403523806483e-05
+25 3.62840473826509e-05
+26 3.46162050846033e-05
+27 3.40175574820023e-05
+28 3.23747444781475e-05
+29 3.11405383399688e-05
+30 2.9725197236985e-05
+31 2.91061551251914e-05
+32 2.8153182938695e-05
+33 2.63643614744069e-05
+34 2.5313285732409e-05
+35 2.46611634793226e-05
+36 2.50597495323746e-05
+37 2.37550175370416e-05
+38 2.34550461755134e-05
+39 2.24666564463405e-05
+40 2.17491669900483e-05
+41 2.10342914215289e-05
+42 2.07680459425319e-05
+43 2.0169452909613e-05
+44 1.97196350200102e-05
+45 1.88825324585196e-05
+46 1.93496580322972e-05
+47 1.86460620170692e-05
+48 1.75590303115314e-05
+49 1.73120915860636e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000105424689536449
+1 4.69766109745251e-06
+2 1.71890133060515e-06
+3 4.63242122350493e-06
+4 0.00257828715257347
+5 0.000320638995617628
+6 0.000173469059518538
+7 0.000141520868055522
+8 0.00012152756244177
+9 0.000107582134660333
+10 9.06862624105997e-05
+11 8.91717354534194e-05
+12 0.000101463927421719
+13 6.9728383095935e-05
+14 5.41539411642589e-05
+15 6.15673707216047e-05
+16 5.09609126311261e-05
+17 5.86010064580478e-05
+18 5.10168210894335e-05
+19 4.30832733400166e-05
+20 5.06938085891306e-05
+21 3.4034044801956e-05
+22 4.49600629508495e-05
+23 4.38443748862483e-05
+24 4.8781275836518e-05
+25 3.41356389981229e-05
+26 3.49861329596024e-05
+27 2.72786510322476e-05
+28 2.89717627310893e-05
+29 2.85408459603786e-05
+30 3.04900349874515e-05
+31 2.53415291808778e-05
+32 2.4491173462593e-05
+33 3.12279989884701e-05
+34 3.26841836795211e-05
+35 2.98957947961753e-05
+36 1.95614447875414e-05
+37 2.32184302149108e-05
+38 1.96165510715218e-05
+39 2.17813885683427e-05
+40 2.27606924454449e-05
+41 2.29388515435858e-05
+42 2.00215490622213e-05
+43 1.97015979210846e-05
+44 1.89775601029396e-05
+45 2.10524522117339e-05
+46 1.34956017063814e-05
+47 1.50825599121163e-05
+48 1.98881261894712e-05
+49 1.90734081115806e-05
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000118903932161629
+1 0.000119441108836327
+2 0.000120871722174343
+3 0.000118445430416614
+4 0.000121823555673473
+5 0.000122808298328891
+6 0.000121778684842866
+7 0.00012220315693412
+8 0.000122552330140024
+9 0.000123418314615265
+10 0.000121624638268258
+11 0.000124716461868957
+12 0.000121682656754274
+13 0.000118643110909034
+14 0.000120773045637179
+15 0.000120433112897445
+16 0.000119893855298869
+17 0.000122635625302792
+18 0.000121840486826841
+19 0.000122010678751394
+20 0.000120288386824541
+21 0.000123524849186651
+22 0.000123533915029839
+23 0.000122974030091427
+24 0.000120685137517285
+25 0.000121903380204458
+26 0.000120881741167977
+27 0.000123136604088359
+28 0.000121317971206736
+29 0.000118922485853545
+30 0.000122528013889678
+31 0.000121257791761309
+32 0.000123808800708503
+33 0.000121783501526807
+34 0.000124806916574016
+35 0.000122046352771576
+36 0.000124642989248969
+37 0.000119799202366266
+38 0.000121065793791786
+39 0.000119049022032414
+40 0.000121935336210299
+41 0.0001217593671754
+42 0.000121460238005966
+43 0.000120838114526123
+44 0.000123660909594037
+45 0.000122788289445452
+46 0.000121966193546541
+47 0.00011989757331321
+48 0.000123786507174373
+49 0.00012279482325539
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.00014438152720686
+1 0.000140004354761913
+2 0.000132245244458318
+3 0.00014546666352544
+4 0.000115897717478219
+5 0.000109578533738386
+6 0.000119194148282986
+7 0.000115365815872792
+8 0.000112854620965663
+9 0.000101850033388473
+10 0.000119994299893733
+11 9.49168970691971e-05
+12 0.000122908197226934
+13 0.00014616857515648
+14 0.000127350896946155
+15 0.000131990935187787
+16 0.000133778768940829
+17 0.000111040266347118
+18 0.000118504620331805
+19 0.000115764349175151
+20 0.000130763844936155
+21 0.000105595587228891
+22 0.000101809993793722
+23 0.000110533459519502
+24 0.000127470557345077
+25 0.000113863963633776
+26 0.000125194303109311
+27 0.000105146806163248
+28 0.000120685996080283
+29 0.000143316385219805
+30 0.000110566943476442
+31 0.000121804572700057
+32 9.91397755569778e-05
+33 0.000118536838272121
+34 9.11302413442172e-05
+35 0.000118280695460271
+36 9.04735643416643e-05
+37 0.000133976616780274
+38 0.000124867874546908
+39 0.000145111349411309
+40 0.000115493290650193
+41 0.000120980133942794
+42 0.000121930555906147
+43 0.000125271893921308
+44 0.000102015561424196
+45 0.000109265791252255
+46 0.000110905435576569
+47 0.000136840011691675
+48 9.99259791569784e-05
+49 0.000110951928945724
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008065482634350848, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008065482634350848, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..164af952ea0da16ef7893d282f0af2a7b3c79ee8
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008065482634350848, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008065482634350848, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008065482634350848, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..43d1423f7899fc9af230d4cd529509bc693aa74a
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008065482634350848, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.26356248985628e-08, ymax=0.00023890547582763,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000116782262921333
+1 5.83061228098813e-06
+2 3.25040468851512e-06
+3 1.63852223522554e-06
+4 7.68889663049777e-07
+5 5.04995284700271e-07
+6 3.66744984603429e-07
+7 2.87885029592871e-07
+8 2.33921738868048e-07
+9 1.92187556535828e-07
+10 1.69261994642511e-07
+11 1.52183588397747e-07
+12 1.32607254954564e-07
+13 1.2037720864555e-07
+14 1.07215242906022e-07
+15 9.80442962372763e-08
+16 9.00758294619664e-08
+17 8.15030887224566e-08
+18 7.60502629759685e-08
+19 7.27300886183002e-08
+20 6.64337775901913e-08
+21 6.23829237156315e-08
+22 6.09479116064904e-08
+23 5.38298294827655e-08
+24 5.36741602275015e-08
+25 4.87266049731261e-08
+26 4.51343389329395e-08
+27 4.61259048734064e-08
+28 4.21595558464105e-08
+29 4.04346778282161e-08
+30 3.96013284387209e-08
+31 3.78914855048151e-08
+32 3.54263569590785e-08
+33 3.54252769341201e-08
+34 3.33578249467337e-08
+35 3.19784874136531e-08
+36 3.12344425879019e-08
+37 3.18840349677885e-08
+38 3.23309272687311e-08
+39 2.89754815696597e-08
+40 2.85053332049756e-08
+41 2.72940656742549e-08
+42 2.58867718372358e-08
+43 2.49993874490428e-08
+44 2.63251784815566e-08
+45 2.46242066737068e-08
+46 2.21858851290335e-08
+47 2.271803545284e-08
+48 2.31984209619895e-08
+49 2.1269130456858e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000136885864776559
+1 5.0177641242044e-06
+2 5.24306369698024e-06
+3 1.13605267415551e-06
+4 7.50694482576364e-07
+5 4.57888035043652e-07
+6 3.50686576666703e-07
+7 2.44995788989399e-07
+8 2.1362613722431e-07
+9 1.98136248741321e-07
+10 1.72284401855904e-07
+11 1.45054826816704e-07
+12 1.22848291539412e-07
+13 1.04430966985092e-07
+14 9.71323999010565e-08
+15 8.75283987511466e-08
+16 8.31032664905251e-08
+17 7.99997792455542e-08
+18 7.84755442850837e-08
+19 6.65332677840524e-08
+20 7.46399777540319e-08
+21 5.71864120502141e-08
+22 4.74129038252613e-08
+23 5.82024881623511e-08
+24 4.5208164323185e-08
+25 4.71462051621074e-08
+26 5.43665237273672e-08
+27 3.39289378814556e-08
+28 4.62262477185504e-08
+29 7.43850279150138e-08
+30 3.77236588633423e-08
+31 3.80502527264071e-08
+32 4.54018653783805e-08
+33 3.69844421754806e-08
+34 3.82814171473456e-08
+35 3.45783703892266e-08
+36 3.36041630077943e-08
+37 2.40735129608538e-08
+38 2.51965897035689e-08
+39 2.85280403744537e-08
+40 2.7424636783735e-08
+41 2.44859972298173e-08
+42 2.65958899348107e-08
+43 2.4931052777788e-08
+44 3.13510390981264e-08
+45 2.1047140918995e-08
+46 3.02551121933448e-08
+47 2.64821959916617e-08
+48 1.97691942815936e-08
+49 2.64092765434043e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000118581330752932
+1 0.000120450487884227
+2 0.000117832911200821
+3 0.000119519485451747
+4 0.000119100928714033
+5 0.000118187985208351
+6 0.000119677322800271
+7 0.000120265554869547
+8 0.00012118185259169
+9 0.000118479707452934
+10 0.000118011463200673
+11 0.000119156684377231
+12 0.00011941789125558
+13 0.000119671421998646
+14 0.000117922310892027
+15 0.000120885859359987
+16 0.000118372634460684
+17 0.000116942937893327
+18 0.000121162331197411
+19 0.000119814547360875
+20 0.000119435193482786
+21 0.000118437659693882
+22 0.000117381176096387
+23 0.000119152129627764
+24 0.000116788425657433
+25 0.00011658099538181
+26 0.000119524309411645
+27 0.000121093231427949
+28 0.000119622054626234
+29 0.000116043993330095
+30 0.000117042909550946
+31 0.000121229371870868
+32 0.000116592927952297
+33 0.000122219527838752
+34 0.000118145952001214
+35 0.000118570620543323
+36 0.000116205490485299
+37 0.000118766445666552
+38 0.00011937376257265
+39 0.000118787196697667
+40 0.000118235235277098
+41 0.000118029391160235
+42 0.000115523696877062
+43 0.000118577387183905
+44 0.000120157077617478
+45 0.000117029543616809
+46 0.000116770672320854
+47 0.000120591168524697
+48 0.000114854126877617
+49 0.000118225267215166
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000120048724056687
+1 0.000102406367659569
+2 0.000127798557514325
+3 0.000113131456600968
+4 0.000115570452180691
+5 0.000123648758744821
+6 0.000109004067780916
+7 0.000105207953311037
+8 9.76208393694833e-05
+9 0.000121380377095193
+10 0.000123663878184743
+11 0.000113640307972673
+12 0.000111997745989356
+13 0.000110784741991665
+14 0.000123336023534648
+15 9.99965850496665e-05
+16 0.000129111722344533
+17 0.000132845700136386
+18 9.73580390564166e-05
+19 0.000108068074041512
+20 0.000112641740997788
+21 0.000122389334137551
+22 0.000132179076899774
+23 0.000113876143586822
+24 0.000135157926706597
+25 0.000137754599563777
+26 0.000113746711576823
+27 9.56343792495318e-05
+28 0.000111507579276804
+29 0.00014323485083878
+30 0.000133898021886125
+31 9.76984883891419e-05
+32 0.000137730196001939
+33 8.90389419510029e-05
+34 0.000122151570394635
+35 0.000120040051115211
+36 0.000141488228109665
+37 0.000118617339467164
+38 0.000113607842649799
+39 0.000118661628221162
+40 0.000124328027595766
+41 0.000123943653306924
+42 0.000148994658957236
+43 0.000121666795166675
+44 0.000106200110167265
+45 0.000134372181491926
+46 0.000136746399221011
+47 0.000101867961348034
+48 0.000152698179590516
+49 0.000122897239634767
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008067369429430857, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008067369429430857, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..1be1758f08e21fbbe0950020588e1821d8b6b30c
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008067369429430857, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008067369429430857, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008067369429430857, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..1f70eb1b0f2dc9c613d8443dd6bee6a8022028cc
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008067369429430857, Learning_Process.tex	
@@ -0,0 +1,256 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.71426894668046e-06, ymax=0.00236321036112118,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000146521022543311
+1 8.88503200258128e-06
+2 0.00139494461473078
+3 0.000489381898660213
+4 0.000594405457377434
+5 0.00122842995915562
+6 0.000254991027759388
+7 0.000153974222484976
+8 0.000124956088257022
+9 0.000102565645647701
+10 8.79577928571962e-05
+11 7.77688183006831e-05
+12 7.67026940593496e-05
+13 6.11756549915299e-05
+14 5.68231698707677e-05
+15 5.25100258528255e-05
+16 4.87463985336944e-05
+17 4.36708687630016e-05
+18 4.13307061535306e-05
+19 3.78447293769568e-05
+20 3.50191221514251e-05
+21 3.31247902067844e-05
+22 3.19390237564221e-05
+23 3.03230044664815e-05
+24 2.83238878182601e-05
+25 2.74967642326374e-05
+26 2.61509521806147e-05
+27 2.43602335103787e-05
+28 2.33538321481319e-05
+29 2.29228480748134e-05
+30 2.18743462028215e-05
+31 2.06351032829843e-05
+32 2.00472823053133e-05
+33 1.96621476789005e-05
+34 1.84637810889399e-05
+35 1.80089391506044e-05
+36 1.73595653905068e-05
+37 1.66616482601967e-05
+38 1.59501796588302e-05
+39 1.55232064571464e-05
+40 1.54312201630091e-05
+41 1.47761047628592e-05
+42 1.46214570122538e-05
+43 1.38099285322824e-05
+44 1.35713753479649e-05
+45 1.30882208395633e-05
+46 1.2631008758035e-05
+47 1.24359612527769e-05
+48 1.18754687719047e-05
+49 1.19179294415517e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000157011600094847
+1 7.33267461328069e-06
+2 3.69217605111771e-06
+3 0.00173729215748608
+4 5.23833550687414e-05
+5 0.00145302887540311
+6 0.000189653932466172
+7 0.000182569827302359
+8 0.00012321381655056
+9 0.000112022797111422
+10 8.6524203652516e-05
+11 7.30370447854511e-05
+12 6.65005500195548e-05
+13 7.48859165469185e-05
+14 5.47178788110614e-05
+15 4.64195873064455e-05
+16 4.07185070798732e-05
+17 5.64262991247233e-05
+18 3.52478818967938e-05
+19 4.04188140237238e-05
+20 4.37810085713863e-05
+21 3.88177977583837e-05
+22 3.13678756356239e-05
+23 2.72453908110037e-05
+24 2.96833459287882e-05
+25 2.50859775405843e-05
+26 2.33548544201767e-05
+27 2.64758400589926e-05
+28 2.53077432716964e-05
+29 1.90890314115677e-05
+30 2.0514566131169e-05
+31 2.20143756450852e-05
+32 2.02965202333871e-05
+33 1.57321119331755e-05
+34 1.858677387645e-05
+35 1.51382992044091e-05
+36 1.71187602973077e-05
+37 1.66945283126552e-05
+38 1.78108657564735e-05
+39 1.51019112308859e-05
+40 1.26793047456886e-05
+41 1.38228615469416e-05
+42 1.10435330498149e-05
+43 1.38004224936594e-05
+44 1.19530741358176e-05
+45 1.22405826914473e-05
+46 1.243255155714e-05
+47 1.06068437162321e-05
+48 1.24174057418713e-05
+49 9.05181059351889e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000145255675306544
+1 0.00014736050798092
+2 0.000146387639688328
+3 0.000147023834870197
+4 0.000149485465954058
+5 0.000147750615724362
+6 0.000151843807543628
+7 0.000147157610626891
+8 0.000148635896039195
+9 0.000144848614581861
+10 0.000145213765790686
+11 0.000148162958794273
+12 0.000144183795782737
+13 0.000146834645420313
+14 0.000148530074511655
+15 0.000141459415317513
+16 0.000147821338032372
+17 0.000148091203300282
+18 0.000144129720865749
+19 0.000147146420204081
+20 0.000148109800647944
+21 0.000149597020936199
+22 0.000143381956149824
+23 0.00015005623572506
+24 0.000145874364534393
+25 0.000150912601384334
+26 0.000144603080116212
+27 0.000144715857459232
+28 0.00014803274825681
+29 0.000145111946039833
+30 0.000150747000589035
+31 0.000147011538501829
+32 0.000146877602674067
+33 0.000149030107422732
+34 0.000148162187542766
+35 0.000147970014950261
+36 0.000146220292663202
+37 0.000148273858940229
+38 0.000149815270560794
+39 0.000152070366311818
+40 0.000149654937558807
+41 0.0001498319033999
+42 0.000147293583722785
+43 0.000148696693941019
+44 0.000151114756590687
+45 0.000150246632983908
+46 0.000145721380249597
+47 0.000147934013511986
+48 0.00015013458323665
+49 0.000154111869051121
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000168805752764456
+1 0.000152595501276664
+2 0.000157078844495118
+3 0.000151268017361872
+4 0.000130268366774544
+5 0.000148289604112506
+6 0.000107026542536914
+7 0.000151035535964184
+8 0.000134346701088361
+9 0.000169759252457879
+10 0.000168740676599555
+11 0.000143879253300838
+12 0.000178106041857973
+13 0.000151974178152159
+14 0.0001360288442811
+15 0.000202885465114377
+16 0.00014439043297898
+17 0.000143353390740231
+18 0.000178568239789456
+19 0.000150421779835597
+20 0.000141469281516038
+21 0.000127392224385403
+22 0.000184540200280026
+23 0.000131772103486583
+24 0.000163809454534203
+25 0.000156701309606433
+26 0.000175559529452585
+27 0.000173595108208247
+28 0.000140926611493342
+29 0.000169815117260441
+30 0.00014133847435005
+31 0.000152890221215785
+32 0.000151979198562913
+33 0.000136582879349589
+34 0.00014527581515722
+35 0.000147650018334389
+36 0.000162242431542836
+37 0.000138199931825511
+38 0.000128669096739031
+39 0.000108085318061057
+40 0.000129420994198881
+41 0.000141178126796149
+42 0.000149477535160258
+43 0.00013721980212722
+44 0.000116746872663498
+45 0.000124631318612956
+46 0.000162468975759111
+47 0.000143273384310305
+48 0.00012508915096987
+49 0.000126007114886306
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00811360004686623, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00811360004686623, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..aadf56eb2acfc14a73bb12d524ce3b2e21390e58
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00811360004686623, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00811360004686623, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00811360004686623, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..e3332b499451493796aa8c950ab212891386b764
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00811360004686623, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.61951851172708e-08, ymax=0.000273991526903187,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000134877394884825
+1 1.76956345967483e-05
+2 8.41221026348649e-06
+3 1.67184498423012e-06
+4 9.3221268571142e-07
+5 5.93054323871911e-07
+6 4.49384401690622e-07
+7 3.57343225232398e-07
+8 2.83648091681243e-07
+9 2.48315387807452e-07
+10 2.02856213604719e-07
+11 1.81396416110147e-07
+12 1.55572109861168e-07
+13 1.43105864935933e-07
+14 1.27387977499893e-07
+15 1.19283228627864e-07
+16 1.03879315815902e-07
+17 9.74245324414369e-08
+18 9.29960179973932e-08
+19 8.46704395485176e-08
+20 7.79737234779532e-08
+21 7.62624168260118e-08
+22 7.09985172875349e-08
+23 6.49506475269845e-08
+24 6.05529848485276e-08
+25 5.78589123279016e-08
+26 5.67828664088665e-08
+27 5.52397771969027e-08
+28 5.35094741849207e-08
+29 5.05752062451847e-08
+30 4.61730564893514e-08
+31 4.88174336510383e-08
+32 4.34858264952709e-08
+33 4.1063294986543e-08
+34 4.09553955194042e-08
+35 3.80042024517024e-08
+36 3.72427741979209e-08
+37 3.66368340110057e-08
+38 3.52503626288581e-08
+39 3.39324763842797e-08
+40 3.97072028590628e-08
+41 3.18648893937734e-08
+42 3.13965529130655e-08
+43 3.02260758644479e-08
+44 3.16314547887941e-08
+45 2.87775048235517e-08
+46 2.79674079450842e-08
+47 2.76992118131147e-08
+48 2.68724971164147e-08
+49 2.59437165084364e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000139808427775279
+1 1.42038061312633e-05
+2 6.91461400492699e-06
+3 2.08630376619112e-06
+4 8.97923825959879e-07
+5 6.04395438585925e-07
+6 3.58486516915946e-07
+7 3.21087981092205e-07
+8 2.79566364724815e-07
+9 1.81839624247004e-07
+10 2.24185484398731e-07
+11 1.65353000625146e-07
+12 1.6845147854383e-07
+13 1.362519981285e-07
+14 1.24424914815791e-07
+15 1.23856992217952e-07
+16 1.29161293216384e-07
+17 9.21916125662392e-08
+18 7.82803581955704e-08
+19 9.7391669839908e-08
+20 8.91566855898418e-08
+21 6.62056649503029e-08
+22 6.08506525168195e-08
+23 6.32589518545501e-08
+24 6.46416467020572e-08
+25 6.21602325168169e-08
+26 5.87012678465726e-08
+27 7.00246900464663e-08
+28 5.21415692844585e-08
+29 4.43165006913659e-08
+30 5.26387218258151e-08
+31 3.85944929348625e-08
+32 5.60807329463842e-08
+33 4.73968846392836e-08
+34 3.57674707629485e-08
+35 4.11056824134448e-08
+36 3.62372212237005e-08
+37 4.45610446320188e-08
+38 3.36462555594608e-08
+39 3.09060261827199e-08
+40 3.04808764894915e-08
+41 3.01546982939271e-08
+42 2.97625799561274e-08
+43 3.04386844618421e-08
+44 2.63458534988104e-08
+45 2.87251573638514e-08
+46 2.78206506720835e-08
+47 2.71834039722307e-08
+48 2.79751706244724e-08
+49 2.52106300280275e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000134028785396367
+1 0.000134090034407564
+2 0.000136400063638575
+3 0.000137894356157631
+4 0.000134320027427748
+5 0.000136176604428329
+6 0.000132304718135856
+7 0.000133267851197161
+8 0.000133563546114601
+9 0.000136267015477642
+10 0.000135222013341263
+11 0.000134308167616837
+12 0.000136297254357487
+13 0.000138271687319502
+14 0.000134771296870895
+15 0.000137251452542841
+16 0.000133316600113176
+17 0.000134409739985131
+18 0.000133710622321814
+19 0.000132875167764723
+20 0.000134747038828209
+21 0.000133271794766188
+22 0.000134399655507877
+23 0.000134265996166505
+24 0.00013603043043986
+25 0.000137686685775407
+26 0.000133583598653786
+27 0.000134838803205639
+28 0.000136272996314801
+29 0.000132281755213626
+30 0.000137031500344165
+31 0.00013580774248112
+32 0.000131850421894342
+33 0.000135882553877309
+34 0.00013591606693808
+35 0.000136398753966205
+36 0.000134481218992732
+37 0.000134058471303433
+38 0.000136357222800143
+39 0.000135580252390355
+40 0.000137528739287518
+41 0.000134154615807347
+42 0.000136229107738473
+43 0.00013120959920343
+44 0.000136369897518307
+45 0.000133609399199486
+46 0.000132981323986314
+47 0.000132311877678148
+48 0.000135855749249458
+49 0.000134784611873329
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000150248990394175
+1 0.000148947292473167
+2 0.000129915992147289
+3 0.000118066229333635
+4 0.000146788821439259
+5 0.000130301850731485
+6 0.000165598947205581
+7 0.00015829355106689
+8 0.000158054201165214
+9 0.00012983572378289
+10 0.000140517397085205
+11 0.000149674349813722
+12 0.000131704757222906
+13 0.000111335830297321
+14 0.000142868564580567
+15 0.00012114824494347
+16 0.000156424532178789
+17 0.000144857564009726
+18 0.000151874613948166
+19 0.000163397067808546
+20 0.000141771844937466
+21 0.000155485467985272
+22 0.000147878206917085
+23 0.000147816477692686
+24 0.000137810508022085
+25 0.000115398222988006
+26 0.000151049272972159
+27 0.000141875585541129
+28 0.000127094550407492
+29 0.000164351076819003
+30 0.000123122910736129
+31 0.000133083158289082
+32 0.000166774625540711
+33 0.000131750901346095
+34 0.000133332418045029
+35 0.000128147687064484
+36 0.000144808203913271
+37 0.000153293934999965
+38 0.000128653002320789
+39 0.000135687630972825
+40 0.000122581754112616
+41 0.000152814158354886
+42 0.000128905259771273
+43 0.000176010813447647
+44 0.000129185282276012
+45 0.000153957327711396
+46 0.000157967820996419
+47 0.000162534925038926
+48 0.000133885914692655
+49 0.000142585529829375
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008147123561273072, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008147123561273072, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..9261d90c310e2044dc124ed903a6053d0437f79e
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008147123561273072, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008147123561273072, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008147123561273072, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..0c96e90af73f6ed7f30f5ef3fa5477c91214e0f1
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008147123561273072, Learning_Process.tex	
@@ -0,0 +1,256 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=6.95602583947939e-06, ymax=0.00374715196770855,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00015188375255093
+1 2.34179806284374e-05
+2 0.000127441686345264
+3 0.00281546078622341
+4 0.00036060786806047
+5 0.000163382239406928
+6 0.000127856706967577
+7 0.000105974089819938
+8 8.47483315737918e-05
+9 7.47712911106646e-05
+10 6.5370746597182e-05
+11 6.06233370490372e-05
+12 5.4251795518212e-05
+13 4.84238189528696e-05
+14 4.47915190306958e-05
+15 4.17502596974373e-05
+16 3.8044909160817e-05
+17 3.47883651556913e-05
+18 3.32862255163491e-05
+19 3.01733070955379e-05
+20 2.88431856461102e-05
+21 2.71596327365842e-05
+22 2.65361122728791e-05
+23 2.47699736064533e-05
+24 2.34761300816899e-05
+25 2.22884609684115e-05
+26 2.07578614208614e-05
+27 2.06587956199655e-05
+28 1.95642933249474e-05
+29 1.87352561624721e-05
+30 1.81092800630722e-05
+31 1.72637464856962e-05
+32 1.65239307534648e-05
+33 1.58134807861643e-05
+34 1.56355836224975e-05
+35 1.48854169310653e-05
+36 1.44471705425531e-05
+37 1.40383235702757e-05
+38 1.36486642077216e-05
+39 1.32346849568421e-05
+40 1.27532157421228e-05
+41 1.24724738270743e-05
+42 1.16929049909231e-05
+43 1.13600972326822e-05
+44 1.15375105451676e-05
+45 1.11877570816432e-05
+46 1.08526101030293e-05
+47 1.063217769115e-05
+48 1.03128213595483e-05
+49 9.98681571218185e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000177104404428974
+1 1.40634356284863e-05
+2 1.86629858944798e-05
+3 0.000151667845784687
+4 0.000312430755002424
+5 0.000236429623328149
+6 0.000125627775560133
+7 8.22651563794352e-05
+8 0.000105406470538583
+9 8.12757571111433e-05
+10 7.54082866478711e-05
+11 4.90397469548043e-05
+12 4.7222783905454e-05
+13 5.02520415466279e-05
+14 4.05342652811669e-05
+15 3.42552157235332e-05
+16 3.66904387192335e-05
+17 3.95478600694332e-05
+18 2.88193168671569e-05
+19 3.67126413038932e-05
+20 3.09257557091769e-05
+21 3.04593249893514e-05
+22 2.06467011594214e-05
+23 2.30025088967523e-05
+24 2.28201570280362e-05
+25 2.20092460949672e-05
+26 2.60427714238176e-05
+27 1.75371078512399e-05
+28 1.86031575140078e-05
+29 1.79487597051775e-05
+30 1.61678453878267e-05
+31 1.69762843142962e-05
+32 1.72754225786775e-05
+33 1.76659905264387e-05
+34 1.36178396132891e-05
+35 1.5264617104549e-05
+36 1.49742963913013e-05
+37 1.36578155434108e-05
+38 1.20600807349547e-05
+39 1.19543028631597e-05
+40 1.22651572382892e-05
+41 1.0935738828266e-05
+42 1.46534221130423e-05
+43 1.41345535666915e-05
+44 9.89403179119108e-06
+45 9.91790784610203e-06
+46 9.82421806838829e-06
+47 9.25791118788766e-06
+48 9.66077914199559e-06
+49 9.97656297840877e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000154378285515122
+1 0.000157403497723863
+2 0.000157683214638382
+3 0.000152915352373384
+4 0.000154395485878922
+5 0.000154529101564549
+6 0.000157177040819079
+7 0.000148483522934839
+8 0.000156188849359751
+9 0.000145742873428389
+10 0.000155184447066858
+11 0.000156230453285389
+12 0.000153131710248999
+13 0.000156733251060359
+14 0.000152647276991047
+15 0.00015576314763166
+16 0.000150492545799352
+17 0.000155748290126212
+18 0.000159089278895408
+19 0.000156740308739245
+20 0.000155056521180086
+21 0.000153721979586408
+22 0.000150970066897571
+23 0.000150888066855259
+24 0.000155536676174961
+25 0.000155473302584141
+26 0.000156268404680304
+27 0.000153790373587981
+28 0.000155642832396552
+29 0.000151841741171665
+30 0.000154991532326676
+31 0.000152610809891485
+32 0.000152485197759233
+33 0.000150282896356657
+34 0.00014892069157213
+35 0.000151576532516629
+36 0.00015733866894152
+37 0.000156355134095065
+38 0.000154639914399013
+39 0.000155752946739085
+40 0.000150651758303866
+41 0.000154596637003124
+42 0.000157864575157873
+43 0.00015470088692382
+44 0.00014869355072733
+45 0.000154332388774492
+46 0.000156062073074281
+47 0.000149940824485384
+48 0.000152048742165789
+49 0.000150187552208081
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000155385627294891
+1 0.000126641360111535
+2 0.000127652456285432
+3 0.000167416772455908
+4 0.000153583299834281
+5 0.000152930282638408
+6 0.000130068132421002
+7 0.000207967692404054
+8 0.000137733499286696
+9 0.000233264043345116
+10 0.000147892045788467
+11 0.000137321971124038
+12 0.000165947116329335
+13 0.000133036213810556
+14 0.000174007946043275
+15 0.000142326636705548
+16 0.000188955658813938
+17 0.000141705953865312
+18 0.000114131056761835
+19 0.000132885979837738
+20 0.000150172272697091
+21 0.000160896714078262
+22 0.000187598954653367
+23 0.000187533078133129
+24 0.000144708319567144
+25 0.000146056569064967
+26 0.000141378593980335
+27 0.000159665360115469
+28 0.000143513389048167
+29 0.000175682405824773
+30 0.000150352439959534
+31 0.000170911152963527
+32 0.000170576444361359
+33 0.000189058584510349
+34 0.000203979536308907
+35 0.000180491580977105
+36 0.000128173298435286
+37 0.000137473864015192
+38 0.000151464526425116
+39 0.000144407196785323
+40 0.000188562073162757
+41 0.000154248278704472
+42 0.000123205958516337
+43 0.000148826249642298
+44 0.000204933487111703
+45 0.000155771253048442
+46 0.000139777708682232
+47 0.000196710141608492
+48 0.000176332003320567
+49 0.000192714258446358
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008309527739078884, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008309527739078884, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..96153a85452ecef995d8bc7731e38ce089efe469
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008309527739078884, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008309527739078884, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008309527739078884, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..41bccea1319fe4757439d0cf45afff6f6968c724
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008309527739078884, Learning_Process.tex	
@@ -0,0 +1,265 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=7.88526753857482e-09, ymax=0.000293213411532462,
+ymode=log,
+ytick style={color=black},
+ytick={1e-10,1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-10}}\),
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000142241187859327
+1 5.22038772032829e-06
+2 1.59984631409316e-06
+3 6.09097696724348e-07
+4 3.42328064562025e-07
+5 2.47451026780254e-07
+6 2.02691282424894e-07
+7 1.58012127826623e-07
+8 1.32104418071322e-07
+9 1.09600918563046e-07
+10 9.81506715902469e-08
+11 8.64012079659915e-08
+12 7.54810685066332e-08
+13 6.63168364667399e-08
+14 6.46013376126575e-08
+15 5.85292596610998e-08
+16 5.3896840768175e-08
+17 4.90765472704879e-08
+18 4.72402135187622e-08
+19 4.25380584090362e-08
+20 3.80004863131944e-08
+21 3.73363207017974e-08
+22 3.47085418184179e-08
+23 3.26524052240984e-08
+24 3.05740890382822e-08
+25 3.0575993292814e-08
+26 2.91484667513942e-08
+27 2.87172703394845e-08
+28 2.58418264564853e-08
+29 2.48848550654657e-08
+30 2.35269510540093e-08
+31 2.28116689982016e-08
+32 2.18933546847211e-08
+33 2.12945181488067e-08
+34 2.0509741460728e-08
+35 1.98703649090248e-08
+36 1.94737985736992e-08
+37 1.91672473448534e-08
+38 1.78650410020964e-08
+39 1.7560177312248e-08
+40 1.74854584145123e-08
+41 1.63758944182746e-08
+42 1.59060196125438e-08
+43 1.58225645918719e-08
+44 1.52260835051266e-08
+45 1.54772727967156e-08
+46 1.42350575771388e-08
+47 1.42163099070558e-08
+48 1.49945620364633e-08
+49 1.35102231624273e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000158404858666472
+1 5.09377332491567e-06
+2 2.00016665985459e-06
+3 4.47861481234213e-07
+4 4.05965693062171e-07
+5 3.0083612045928e-07
+6 1.45719695865409e-07
+7 1.84383154078205e-07
+8 1.39783409736083e-07
+9 1.33311075956044e-07
+10 1.04075574824947e-07
+11 9.77091332288182e-08
+12 9.1061657769842e-08
+13 8.45797885062893e-08
+14 5.18146059391711e-08
+15 5.75152121484734e-08
+16 4.66905483165192e-08
+17 4.10683824725311e-08
+18 4.91456511042543e-08
+19 4.04950029064821e-08
+20 4.62172913273662e-08
+21 3.13194092882441e-08
+22 3.32113749834662e-08
+23 3.10948458093208e-08
+24 3.69535904098939e-08
+25 3.03167233539625e-08
+26 2.70771352006705e-08
+27 2.51180498622716e-08
+28 2.5556904148516e-08
+29 2.50663614309588e-08
+30 2.32077130846164e-08
+31 2.18049880373883e-08
+32 2.09308126386532e-08
+33 1.90795059751281e-08
+34 2.04878976006739e-08
+35 2.00412362261204e-08
+36 1.90110807096744e-08
+37 1.64268865177064e-08
+38 2.11732675836629e-08
+39 1.57343436057999e-08
+40 2.08574935101069e-08
+41 1.68834599634238e-08
+42 1.6862164997633e-08
+43 1.45278056251641e-08
+44 1.41540033027354e-08
+45 1.37317526238689e-08
+46 1.44866474371952e-08
+47 1.40068809884042e-08
+48 1.27221468915195e-08
+49 1.427334250792e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00014278874732554
+1 0.000144107762025669
+2 0.00014689915406052
+3 0.000142465665703639
+4 0.000143071738420986
+5 0.000143123063025996
+6 0.000141917320434004
+7 0.000145366517244838
+8 0.000145864425576292
+9 0.000146558799315244
+10 0.000144140110933222
+11 0.00014399181236513
+12 0.000143718614708632
+13 0.000143442986882292
+14 0.000142700460855849
+15 0.000142639459227212
+16 0.000141348646138795
+17 0.000142403077916242
+18 0.000145018188050017
+19 0.000147281316458248
+20 0.000143680750625208
+21 0.000144338264362887
+22 0.000146228761877865
+23 0.000142272343509831
+24 0.000145682337461039
+25 0.000145342244650237
+26 0.000145251426147297
+27 0.000142040778882802
+28 0.000141791635542177
+29 0.000145623591379263
+30 0.000141596552566625
+31 0.000141459124279208
+32 0.000144588542752899
+33 0.000142723627504893
+34 0.000144660327350721
+35 0.000146391888847575
+36 0.000144222532981075
+37 0.000143967248732224
+38 0.000143262659548782
+39 0.000142446995596401
+40 0.00014191705849953
+41 0.000143485493026674
+42 0.000139731491799466
+43 0.000144812351209112
+44 0.000144444042234682
+45 0.000143490266054869
+46 0.000143226439831778
+47 0.000140842937980779
+48 0.000144145451486111
+49 0.000143836150527932
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.00015877780970186
+1 0.000142406599479727
+2 0.000116897943371441
+3 0.00015664855891373
+4 0.000148643433931284
+5 0.000147380982525647
+6 0.000162308177095838
+7 0.000130422762595117
+8 0.000125781531096436
+9 0.000119176831503864
+10 0.000139688330818899
+11 0.000142783581395634
+12 0.000144496108987369
+13 0.000152255277498625
+14 0.000156712761963718
+15 0.000154598455992527
+16 0.00016814265109133
+17 0.000157103931996971
+18 0.000133571404148825
+19 0.000114051508717239
+20 0.000145761121530086
+21 0.00014103161811363
+22 0.000123218414955772
+23 0.000158491180627607
+24 0.000131476481328718
+25 0.000129751788335852
+26 0.000132843502797186
+27 0.000159445684403181
+28 0.000161169795319438
+29 0.000128593979752623
+30 0.000164682031027041
+31 0.000165003686561249
+32 0.000137868570163846
+33 0.000155033412738703
+34 0.000139360650791787
+35 0.000122380544780754
+36 0.000143640834721737
+37 0.00014305482909549
+38 0.000150630410644226
+39 0.000156027686898597
+40 0.000161751100677066
+41 0.000148709819768555
+42 0.000181735536898486
+43 0.000136099522933364
+44 0.000133400739287026
+45 0.000147914324770682
+46 0.000149278625031002
+47 0.000170995874213986
+48 0.000144673744216561
+49 0.000145518453791738
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008362882747557572, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008362882747557572, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..d0646125b8e5b9c8c9d647c81af83dea79c444ed
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008362882747557572, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008362882747557572, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008362882747557572, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..e8e031ef4d365603f7bfe01d1a6bd369a3259f96
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008362882747557572, Learning_Process.tex	
@@ -0,0 +1,257 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.60195447156703e-06, ymax=0.0434609016968577,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000154613837366924
+1 1.23902545965393e-05
+2 2.14152005355572e-05
+3 0.0283513180911541
+4 0.000945533567573875
+5 0.000193172352737747
+6 0.000125058504636399
+7 0.000101854304375593
+8 8.7564047134947e-05
+9 7.69811304053292e-05
+10 6.75509727443568e-05
+11 6.42249797238037e-05
+12 5.90527815802488e-05
+13 5.59404179512057e-05
+14 5.15725878358353e-05
+15 4.97356959385797e-05
+16 4.70010272692889e-05
+17 4.41773954662494e-05
+18 4.03335579903796e-05
+19 4.08917549066246e-05
+20 3.67739557987079e-05
+21 3.58970282832161e-05
+22 3.55863485310692e-05
+23 3.31666524289176e-05
+24 3.20165854645893e-05
+25 3.08584021695424e-05
+26 0.000498157052788883
+27 2.93989414785756e-05
+28 2.88741430267692e-05
+29 2.73565874522319e-05
+30 2.63302099483553e-05
+31 2.59024454862811e-05
+32 2.4625560399727e-05
+33 2.36239466175903e-05
+34 2.36967971432023e-05
+35 2.30348578043049e-05
+36 2.66500446741702e-05
+37 2.14272185985465e-05
+38 2.17644301301334e-05
+39 2.00165795831708e-05
+40 1.99109472305281e-05
+41 1.95390912267612e-05
+42 1.92191564565292e-05
+43 1.87420118891168e-05
+44 1.8800357793225e-05
+45 1.79423641384346e-05
+46 1.72825202753302e-05
+47 1.7470307284384e-05
+48 1.67740909091663e-05
+49 1.62644955707947e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000155426096171141
+1 5.52158417121973e-06
+2 2.04598745767726e-05
+3 0.0179203040897846
+4 0.00061417551478371
+5 0.000174064160091802
+6 0.000114031448902097
+7 8.78390856087208e-05
+8 7.70124242990278e-05
+9 7.52100240788423e-05
+10 9.29094603634439e-05
+11 6.55837720842101e-05
+12 0.000106955463706981
+13 5.03960472997278e-05
+14 5.75594312977046e-05
+15 3.95888309867587e-05
+16 4.27306331403088e-05
+17 4.31934313382953e-05
+18 5.38554741069674e-05
+19 3.03751730825752e-05
+20 4.73060208605602e-05
+21 3.74457631551195e-05
+22 2.79350697383052e-05
+23 3.3966305636568e-05
+24 3.06257898046169e-05
+25 2.96801154036075e-05
+26 3.47263994626701e-05
+27 2.38745251408545e-05
+28 1.7572388969711e-05
+29 2.32455568038858e-05
+30 2.31796911975835e-05
+31 2.0759774997714e-05
+32 2.35741008509649e-05
+33 2.48168344114674e-05
+34 1.86056531674694e-05
+35 1.9196604625904e-05
+36 2.96768794214586e-05
+37 2.18073455471313e-05
+38 2.21675436478108e-05
+39 2.40177887462778e-05
+40 2.40323279285803e-05
+41 1.89892107300693e-05
+42 1.79339895112207e-05
+43 1.79586677404586e-05
+44 1.34941101350705e-05
+45 1.68714796018321e-05
+46 1.89670845429646e-05
+47 1.406366845913e-05
+48 1.65613146236865e-05
+49 1.73519547388423e-05
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000154234570800327
+1 0.00015407292812597
+2 0.00015960747259669
+3 0.000158838491188362
+4 0.000161293690325692
+5 0.000149850588059053
+6 0.000159235365572385
+7 0.000153322544065304
+8 0.000154192661284469
+9 0.000155354209709913
+10 0.00015582112246193
+11 0.000153959190356545
+12 0.000160392315592617
+13 0.00017863605171442
+14 0.000155562855070457
+15 0.000157202273840085
+16 0.000155268266098574
+17 0.000155646441271529
+18 0.000153000306454487
+19 0.000157251430209726
+20 0.000158067836309783
+21 0.000164446566486731
+22 0.00015404490113724
+23 0.000154406719957478
+24 0.000158236289280467
+25 0.000158125461894087
+26 0.000149307539686561
+27 0.000157487578690052
+28 0.000154220731928945
+29 0.000148258754052222
+30 0.00015709936269559
+31 0.000152062581037171
+32 0.00015101111785043
+33 0.000155741028720513
+34 0.000155164962052368
+35 0.00139765755739063
+36 0.000153823639266193
+37 0.000156472422531806
+38 0.0093329232186079
+39 0.000156883528688923
+40 0.000160999334184453
+41 0.000155490575707518
+42 0.000156952606630512
+43 0.000152084714500234
+44 0.000155389017891139
+45 0.000155373578309081
+46 0.000159405666636303
+47 0.000156171125127003
+48 0.0001566986029502
+49 0.000152589098433964
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000164270313689485
+1 0.000163492484716699
+2 0.00016409445379395
+3 0.000136297923745587
+4 0.000143486933666281
+5 0.00019222337868996
+6 0.000126651735627092
+7 0.000156474226969294
+8 0.000166584344697185
+9 0.000152362816152163
+10 0.000163651056936942
+11 0.000193226806004532
+12 0.000103030739410315
+13 0.000142954304465093
+14 0.000146102509461343
+15 0.000134949528728612
+16 0.000144572855788283
+17 0.00016444965149276
+18 0.000148328253999352
+19 0.000130624990561046
+20 0.000121274417324457
+21 0.000121533281344455
+22 0.000158556649694219
+23 0.000161585034220479
+24 0.000151722342707217
+25 0.000118819756607991
+26 0.000208530487725511
+27 0.00013185320131015
+28 0.000211801947443746
+29 0.000230819365242496
+30 0.000151163942064159
+31 0.000199368441826664
+32 0.000178610876901075
+33 0.000147521321196109
+34 0.000150664825923741
+35 0.000164945260621607
+36 0.000159635746967979
+37 0.000144948324305005
+38 0.000151030704728328
+39 0.000181628754944541
+40 0.000150944062625058
+41 0.000146803315146826
+42 0.00013825242058374
+43 0.000179716837010346
+44 0.000137686205562204
+45 0.000147733298945241
+46 0.000115241389721632
+47 0.000138986230012961
+48 0.000135558366309851
+49 0.000173623411683366
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00839846663902155, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00839846663902155, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..36e775799d0429dc1b753d11116d41993b14ee72
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00839846663902155, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00839846663902155, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00839846663902155, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..a5e5523b6068ded9e315f598e60fd467dbb25906
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.00839846663902155, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.31459755550112e-08, ymax=0.000343346188804889,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000151244355947711
+1 6.74234615871683e-06
+2 2.55472741628182e-06
+3 1.06692880308401e-06
+4 6.24511983460252e-07
+5 4.44072952632268e-07
+6 3.44605922464325e-07
+7 2.63932406596723e-07
+8 2.25996728886457e-07
+9 1.94649373952416e-07
+10 1.61591160008356e-07
+11 1.48660021181968e-07
+12 1.28578449221095e-07
+13 1.1684380041288e-07
+14 1.04313215842922e-07
+15 9.58636547920833e-08
+16 9.27280723317381e-08
+17 8.07918425493881e-08
+18 7.54813953562916e-08
+19 7.14709287308324e-08
+20 7.20906427886803e-08
+21 6.4055804216423e-08
+22 6.09601187306907e-08
+23 5.69255185212114e-08
+24 5.39024469503602e-08
+25 5.16771372360836e-08
+26 4.89325557850862e-08
+27 4.60823095238538e-08
+28 4.57566287082045e-08
+29 4.63092888480787e-08
+30 4.19736885248767e-08
+31 3.85362319832439e-08
+32 3.59694922735798e-08
+33 3.54110127886997e-08
+34 3.47798199129556e-08
+35 3.32705489825003e-08
+36 3.33949472519635e-08
+37 3.09384908803167e-08
+38 3.16415871282061e-08
+39 2.88439583329136e-08
+40 2.8346805791557e-08
+41 2.8291657017121e-08
+42 2.58059884572504e-08
+43 2.63329145155922e-08
+44 2.43941418176519e-08
+45 5.0751058466858e-08
+46 2.35623751621006e-08
+47 2.30441532522718e-08
+48 2.24956089311945e-08
+49 2.15278230797367e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000160073017468676
+1 8.13424685475184e-06
+2 2.01307443603582e-06
+3 1.11046085748967e-06
+4 5.40020323569479e-07
+5 4.48501396022039e-07
+6 2.82250510963422e-07
+7 3.3981345382017e-07
+8 1.69528149740472e-07
+9 1.71434464846243e-07
+10 1.95435205796457e-07
+11 1.52368642147849e-07
+12 1.42322122087535e-07
+13 1.44257484180343e-07
+14 1.13548779268058e-07
+15 9.86148265269549e-08
+16 7.73531283471129e-08
+17 9.11695252625577e-08
+18 7.84968534617292e-08
+19 8.89826736738542e-08
+20 6.83958560898645e-08
+21 5.79371608466772e-08
+22 6.73247768645524e-08
+23 5.73933043312991e-08
+24 5.14483140534594e-08
+25 4.75639687635976e-08
+26 4.74646917325572e-08
+27 5.50851844138833e-08
+28 3.85286220705439e-08
+29 3.82367986162535e-08
+30 3.26130411565373e-08
+31 4.10928215899276e-08
+32 3.74159085936299e-08
+33 4.13413090427639e-08
+34 3.33029568366783e-08
+35 3.27127409605055e-08
+36 2.89283104137894e-08
+37 2.67418389654495e-08
+38 2.99174125473201e-08
+39 2.64557229456841e-08
+40 2.67681059540337e-08
+41 2.50266598555982e-08
+42 2.55039207530672e-08
+43 2.08719388439249e-08
+44 2.95259905414014e-08
+45 2.3580643215837e-08
+46 2.21769678176997e-08
+47 2.31833254815683e-08
+48 2.22256932858045e-08
+49 2.15753512833317e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000158627546625212
+1 0.000150695981574245
+2 0.000148538223584183
+3 0.000146162798046134
+4 0.00014890858437866
+5 0.000152994325617328
+6 0.00015176017768681
+7 0.000153663233504631
+8 0.000147216269397177
+9 0.000155371890286915
+10 0.000153250759467483
+11 0.000148559105582535
+12 0.000152503460412845
+13 0.000150451611261815
+14 0.000145592071930878
+15 0.000151530592120253
+16 0.000154723093146458
+17 0.000149746570969
+18 0.000148979917867109
+19 0.000153344852151349
+20 0.00015011454524938
+21 0.000152925669681281
+22 0.000151315965922549
+23 0.000152486521983519
+24 0.00015627256652806
+25 0.000151845830259845
+26 0.00015280133811757
+27 0.000154454843141139
+28 0.00014859315706417
+29 0.0001523865503259
+30 0.000152276770677418
+31 0.000153862070874311
+32 0.000150146064697765
+33 0.000153438420966268
+34 0.000153075176058337
+35 0.000149268220411614
+36 0.000147526283399202
+37 0.000153585249790922
+38 0.000153302447870374
+39 0.000153346438310109
+40 0.000151821819599718
+41 0.000151362648466602
+42 0.00015327958681155
+43 0.000153008993947878
+44 0.000152985026943497
+45 0.000150583349750377
+46 0.000152915512444451
+47 0.000151842788909562
+48 0.000154001987539232
+49 0.000151796077261679
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000152348991832696
+1 0.000167651785886846
+2 0.000185474680620246
+3 0.000216253058169968
+4 0.000172183688846417
+5 0.000146996186231263
+6 0.000154580746311694
+7 0.000137437076773494
+8 0.00019277106912341
+9 0.000124653059174307
+10 0.000138157090987079
+11 0.00018264033133164
+12 0.000144982448546216
+13 0.00016638396482449
+14 0.00020618770213332
+15 0.000158970738993958
+16 0.000126735409139656
+17 0.000179558512172662
+18 0.000182432660949416
+19 0.000145366706419736
+20 0.000171239415067248
+21 0.000142161370604299
+22 0.00015950076340232
+23 0.000154754219693132
+24 0.000115193892270327
+25 0.000159700779477134
+26 0.00014504422142636
+27 0.000136696573463269
+28 0.000181267489097081
+29 0.000157242960995063
+30 0.00014693703269586
+31 0.000156552167027257
+32 0.000168636310263537
+33 0.000143213343108073
+34 0.000140718257171102
+35 0.000181132068973966
+36 0.000186038785614073
+37 0.000137302005896345
+38 0.000138923787744716
+39 0.000141341748530976
+40 0.000157800139277242
+41 0.000162469048518687
+42 0.000136036687763408
+43 0.000148411607369781
+44 0.000144208665005863
+45 0.000172111540450715
+46 0.000140591408126056
+47 0.000154804496560246
+48 0.000145565383718349
+49 0.000156714930199087
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008583140849463098, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008583140849463098, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..ee449382343e80c0b578483f22b77cadb969d19d
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008583140849463098, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008583140849463098, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008583140849463098, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..218de07c5edae22a5e0e0d1a4e77700f19556f65
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008583140849463098, Learning_Process.tex	
@@ -0,0 +1,256 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.41151161893686e-06, ymax=0.00343463059824538,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000128337502246723
+1 6.30266686130199e-06
+2 3.44145109920646e-06
+3 0.00018572855333332
+4 0.000458583002910018
+5 0.00246907910332084
+6 0.00015420101408381
+7 6.03188673267141e-05
+8 9.48458109633066e-05
+9 5.3797473810846e-05
+10 7.99226036178879e-05
+11 0.000291140138870105
+12 5.53612626390532e-05
+13 3.17758167511784e-05
+14 2.55555187322898e-05
+15 2.16382650251035e-05
+16 1.88320173037937e-05
+17 1.72362197190523e-05
+18 1.54532590386225e-05
+19 1.38259847517475e-05
+20 1.33033408928895e-05
+21 1.18686302812421e-05
+22 1.122154208133e-05
+23 1.07467412817641e-05
+24 1.00583802122856e-05
+25 9.44047042139573e-06
+26 8.96603160072118e-06
+27 8.27982876216993e-06
+28 7.98128894530237e-06
+29 7.72093699197285e-06
+30 7.45371380617144e-06
+31 6.99391785019543e-06
+32 6.59789156998158e-06
+33 6.37615403320524e-06
+34 6.16458419244736e-06
+35 5.95868777963915e-06
+36 5.72143562749261e-06
+37 5.3570279305859e-06
+38 5.28499322172138e-06
+39 5.03427509102039e-06
+40 4.99443012813572e-06
+41 4.70771919935942e-06
+42 4.62613070340012e-06
+43 4.58028216598905e-06
+44 4.38524648416205e-06
+45 4.33407831224031e-06
+46 4.08481582780951e-06
+47 4.07697507398552e-06
+48 3.93389882447082e-06
+49 3.78307140636025e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000120248085295316
+1 1.3386073987931e-05
+2 3.46547312801704e-06
+3 7.85118481871905e-06
+4 0.000226021147682332
+5 0.000401757657527924
+6 0.000129198437207378
+7 5.51397060917225e-05
+8 6.07834444963373e-05
+9 9.984531061491e-05
+10 3.07469599647447e-05
+11 4.69116530439351e-05
+12 3.95428614865523e-05
+13 3.60344820364844e-05
+14 2.71121953119291e-05
+15 2.58157433563611e-05
+16 2.3746108126943e-05
+17 1.72986037796363e-05
+18 1.6903559298953e-05
+19 1.77607143996283e-05
+20 1.13112173494301e-05
+21 1.55311863636598e-05
+22 1.41560012707487e-05
+23 1.03728407339077e-05
+24 9.72140060184756e-06
+25 8.56459064380033e-06
+26 8.83622669789474e-06
+27 9.68716176430462e-06
+28 8.06576281320304e-06
+29 6.60550449538277e-06
+30 5.51426956008072e-06
+31 6.42262830297113e-06
+32 6.79860977470526e-06
+33 6.18843705524341e-06
+34 5.97418875258882e-06
+35 5.24976803717436e-06
+36 5.06182277604239e-06
+37 6.28430143478909e-06
+38 4.97812061439618e-06
+39 5.54635653315927e-06
+40 4.21048616772168e-06
+41 5.29277122041094e-06
+42 4.77704088552855e-06
+43 3.7323902688513e-06
+44 4.14983696828131e-06
+45 3.46044043908478e-06
+46 4.55633517049137e-06
+47 3.35455092681514e-06
+48 3.71984287994565e-06
+49 4.00399585487321e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000128596046124585
+1 0.000128407162264921
+2 0.000124157872051001
+3 0.000123010395327583
+4 0.000126977683976293
+5 0.000128169282106683
+6 0.000125371690955944
+7 0.00013170627062209
+8 0.000130118947708979
+9 0.000128754225443117
+10 0.000127704348415136
+11 0.000131523294840008
+12 0.000127677980344743
+13 0.000126824073959142
+14 0.000127223058370873
+15 0.000126532264403068
+16 0.000125978884170763
+17 0.000127238061395474
+18 0.000125147504149936
+19 0.000127128441818058
+20 0.000128506464534439
+21 0.000129148829728365
+22 0.000129818115965463
+23 0.000128004496218637
+24 0.000126807732158341
+25 0.000129194202600047
+26 0.000127918727230281
+27 0.000127884559333324
+28 0.000127633669762872
+29 0.000126021157484502
+30 0.000129357096739113
+31 0.000127607592730783
+32 0.000130342494230717
+33 0.00012810286716558
+34 0.000128364205011167
+35 0.000127035120385699
+36 0.000128310988657176
+37 0.000129083418869413
+38 0.000128474188386463
+39 0.000125735808978789
+40 0.000128158935694955
+41 0.000128093946841545
+42 0.000128227620734833
+43 0.000129431908135302
+44 0.000128417232190259
+45 0.000132460001623258
+46 0.000129371590446681
+47 0.000127595267258584
+48 0.00012751117174048
+49 0.000127310631796718
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000118423813546542
+1 0.000120320648420602
+2 0.000156694819452241
+3 0.000168879472767003
+4 0.000133809036924504
+5 0.00012223914382048
+6 0.000148491017171182
+7 9.20070597203448e-05
+8 0.000108752959931735
+9 0.000118646610644646
+10 0.000127184830489568
+11 9.45384163060226e-05
+12 0.000127427352708764
+13 0.000135570066049695
+14 0.000129511579871178
+15 0.000137119859573431
+16 0.000145855752634816
+17 0.000131614928250201
+18 0.000151036874740385
+19 0.000133364606881514
+20 0.000118517084047198
+21 0.000114310671051499
+22 0.000108951797301415
+23 0.000124105514260009
+24 0.000134458241518587
+25 0.000114980321086477
+26 0.000127200692077167
+27 0.000125983715406619
+28 0.000127048857393675
+29 0.000142641089041717
+30 0.000110739936644677
+31 0.000129056672449224
+32 0.000102507990959566
+33 0.000123822726891376
+34 0.000122971396194771
+35 0.000133854598971084
+36 0.000120844764751382
+37 0.000116399773105513
+38 0.000121781216876116
+39 0.000144218109198846
+40 0.000123648045700975
+41 0.000123991747386754
+42 0.000123156743939035
+43 0.000110563603811897
+44 0.0001190463808598
+45 0.000125744481920265
+46 0.000109959793917369
+47 0.000127442326629534
+48 0.000128472325741313
+49 0.000130701024318114
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008759962503251941, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008759962503251941, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..fb84116c222ac0fa1b88200d7ed5713d0a88fe86
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008759962503251941, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008759962503251941, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008759962503251941, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..1a2829525da1be6f71ebec72f435a599ea70653b
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.008759962503251941, Learning_Process.tex	
@@ -0,0 +1,257 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=6.96590189496014e-06, ymax=0.0184150967508042,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000144891761010513
+1 0.000168664773809724
+2 4.2574196413625e-05
+3 5.71149939787574e-05
+4 3.40054684784263e-05
+5 0.00643699849024415
+6 0.000795093772467226
+7 0.0128712169826031
+8 0.000586164940614253
+9 0.00890989322215319
+10 0.00282040797173977
+11 0.00172447238583118
+12 0.00129275093786418
+13 0.00109211541712284
+14 0.000941091799177229
+15 0.000820370041765273
+16 0.000730780302546918
+17 0.000676619296427816
+18 0.00060134194791317
+19 0.000552569981664419
+20 0.000513666367623955
+21 0.00047820369945839
+22 0.000441812153439969
+23 0.000414200621889904
+24 0.000382039550459012
+25 0.000367596338037401
+26 0.000347112742019817
+27 0.000330515002133325
+28 0.000306616566376761
+29 0.000299542036373168
+30 0.000279218453215435
+31 0.000275313126621768
+32 0.000255862658377737
+33 0.00024324408150278
+34 0.000240251800278202
+35 0.00023121053527575
+36 0.000218738874536939
+37 0.000212137136259116
+38 0.000198807945707813
+39 0.000197646353626624
+40 0.000193944026250392
+41 0.000185799319297075
+42 0.000183699681656435
+43 0.000178364323801361
+44 0.000170215847902
+45 0.000161532851052471
+46 0.000160931565915234
+47 0.000160093564772978
+48 0.000152028151205741
+49 0.000149847357533872
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000154412511619739
+1 1.70463627000572e-05
+2 3.06633264699485e-05
+3 7.51498155295849e-05
+4 9.96624930849066e-06
+5 0.000292562850518152
+6 0.000414527807151899
+7 0.00104591983836144
+8 0.000555082631763071
+9 0.00882236566394567
+10 0.00272983917966485
+11 0.00155647180508822
+12 0.00146044907160103
+13 0.00107936060521752
+14 0.000890981871634722
+15 0.000941826030611992
+16 0.000785431067924947
+17 0.000621083774603903
+18 0.00062058208277449
+19 0.000561862194444984
+20 0.00047562806867063
+21 0.000407702202210203
+22 0.000499796064104885
+23 0.000397867261199281
+24 0.000421362608904019
+25 0.000333826348651201
+26 0.000315549463266507
+27 0.000279613741440699
+28 0.000346477929269895
+29 0.000276711885817349
+30 0.000304743152810261
+31 0.00023917002545204
+32 0.000281525426544249
+33 0.000276682374533266
+34 0.00020830356515944
+35 0.000223762501263991
+36 0.000249939184868708
+37 0.000226379561354406
+38 0.000248248194111511
+39 0.000213651030207984
+40 0.000179732494871132
+41 0.000191054801689461
+42 0.000133297391585074
+43 0.000133417735924013
+44 0.000153587534441613
+45 0.000181027164217085
+46 0.000140767762786709
+47 0.000141283424454741
+48 0.000149437037180178
+49 0.000129534208099358
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000144915509736165
+1 0.000145103287650272
+2 0.000146297810715623
+3 0.000146314356243238
+4 0.000144774166983552
+5 0.000148147519212216
+6 0.000148262930451892
+7 0.000149883926496841
+8 0.000143767261761241
+9 0.000147102473420091
+10 0.000148213599459268
+11 0.000146289850817993
+12 0.000148584716953337
+13 0.000147723912959918
+14 0.00014312646817416
+15 0.000141767988679931
+16 0.00014598916459363
+17 0.000142925695399754
+18 0.000145248879562132
+19 0.00014622972230427
+20 0.000146233549457975
+21 0.000146938808029518
+22 0.000147665516124107
+23 0.000146684280480258
+24 0.000147156300954521
+25 0.000146532896906137
+26 0.000146335412864573
+27 0.00014721931074746
+28 0.000146135294926353
+29 0.000146497375681065
+30 0.000145485362736508
+31 0.000148092207382433
+32 0.000141739335958846
+33 0.000146599719300866
+34 0.000140578951686621
+35 0.000143290730193257
+36 0.000143193799885921
+37 0.000145223079016432
+38 0.00014274928253144
+39 0.000148687831824645
+40 0.000146123842569068
+41 0.000147621918586083
+42 0.000142113160109147
+43 0.000147248501889408
+44 0.000148928069393151
+45 0.000146068050526083
+46 0.000147858329000883
+47 0.000144461562740617
+48 0.000140119998832233
+49 0.000145339916343801
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000154332723468542
+1 0.0001531266461825
+2 0.000142539836815558
+3 0.000141264914418571
+4 0.000155706933583133
+5 0.000125343663967215
+6 0.000124667814816348
+7 0.000109659289591946
+8 0.000165193458087742
+9 0.00013672310160473
+10 0.000123804114991799
+11 0.000140706120873801
+12 0.000122696612379514
+13 0.000128592437249608
+14 0.000173818552866578
+15 0.00018190880655311
+16 0.000148007689858787
+17 0.000171047548064962
+18 0.000152674692799337
+19 0.000143261655466631
+20 0.000140437725349329
+21 0.000136684902827255
+22 0.000129223495605402
+23 0.000137164010084234
+24 0.000131507855257951
+25 0.000139452808070928
+26 0.000142870121635497
+27 0.000132782050059177
+28 0.000144047400681302
+29 0.000139012394356541
+30 0.000149105704622343
+31 0.000124848214909434
+32 0.000181936615263112
+33 0.000140078947879374
+34 0.000195137428818271
+35 0.000167475329362787
+36 0.000167950027389452
+37 0.000151331594679505
+38 0.000173214226379059
+39 0.000118432210001629
+40 0.000143637094879523
+41 0.000128592480905354
+42 0.000180098068085499
+43 0.000133000648929738
+44 0.000116098417493049
+45 0.000144436809932813
+46 0.000126354192616418
+47 0.000158819806529209
+48 0.000196981127373874
+49 0.000149443454574794
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.009246652659874073, Learning_Process.pdf b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.009246652659874073, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..db77a1df25f46089ab53bfd45d4749de67fb97e8
Binary files /dev/null and b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.009246652659874073, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.009246652659874073, Learning_Process.tex b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.009246652659874073, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..beb77d1d79822123bb170553cd4f88a3cecb2a78
--- /dev/null
+++ b/models_URWF/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.009246652659874073, Learning_Process.tex	
@@ -0,0 +1,268 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=5.51239590397711e-06, ymax=540.625692737325,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1,10,100,1000,10000},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\),
+  \(\displaystyle {10^{1}}\),
+  \(\displaystyle {10^{2}}\),
+  \(\displaystyle {10^{3}}\),
+  \(\displaystyle {10^{4}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00015132590488065
+1 2.86677441181382e-05
+2 2.19497196667362e-05
+3 0.00222143926657736
+4 0.000515092688146979
+5 0.000504895171616226
+6 0.000425017875386402
+7 0.000364098203135654
+8 0.000308387621771544
+9 0.000292002543574199
+10 0.000251342193223536
+11 0.000229861616389826
+12 0.000209136938792653
+13 0.000196607783436775
+14 0.00660244654864073
+15 0.0133702028542757
+16 0.984072208404541
+17 1.02689182758331
+18 1.01252353191376
+19 1.01557147502899
+20 1.02089321613312
+21 1.0191969871521
+22 1.02941346168518
+23 1.01213836669922
+24 1.02375185489655
+25 1.01593589782715
+26 1.01770341396332
+27 1.02872979640961
+28 1.02598917484283
+29 1.02553236484528
+30 1.02448523044586
+31 1.03045034408569
+32 1.02248179912567
+33 1.01724326610565
+34 1.02367067337036
+35 1.02675676345825
+36 1.02828109264374
+37 1.01434373855591
+38 1.03168427944183
+39 1.02514636516571
+40 1.027099609375
+41 1.0147533416748
+42 1.02317214012146
+43 1.02198827266693
+44 1.02181231975555
+45 1.03141105175018
+46 1.02497494220734
+47 1.02811777591705
+48 1.01856672763824
+49 1.02670133113861
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000137986615300179
+1 1.53055279952241e-05
+2 0.00371694169007242
+3 1.27231005535577e-05
+4 0.000696668168529868
+5 0.000509051547851413
+6 0.000324377790093422
+7 0.00028346964973025
+8 0.000313740136334673
+9 0.000235075742239133
+10 0.000267985364189371
+11 0.000231271478696726
+12 0.000246362440520898
+13 0.000175381763256155
+14 0.000213216859265231
+15 0.0234524011611938
+16 234.230865478516
+17 17.8644714355469
+18 5.01371002197266
+19 17.4124240875244
+20 9.41245555877686
+21 7.71734476089478
+22 6.55104970932007
+23 13.5124731063843
+24 5.30351495742798
+25 16.7587890625
+26 13.1643648147583
+27 19.1621685028076
+28 7.53910303115845
+29 21.0776271820068
+30 11.2894887924194
+31 18.3585624694824
+32 11.0045871734619
+33 5.38074445724487
+34 12.9144258499146
+35 6.79049158096313
+36 16.1718444824219
+37 4.55817842483521
+38 7.07040548324585
+39 16.0302276611328
+40 7.4126353263855
+41 7.2227258682251
+42 6.41081953048706
+43 9.20471858978271
+44 12.387412071228
+45 6.28017568588257
+46 5.5292444229126
+47 13.7884645462036
+48 4.86617374420166
+49 9.9640588760376
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000147799582919106
+1 0.000153116387082264
+2 0.000150510924868286
+3 0.000151350410305895
+4 0.000147188256960362
+5 0.00014962513523642
+6 0.000147054306580685
+7 0.000149752260767855
+8 0.000150646403199062
+9 0.000151412561535835
+10 0.00015151321713347
+11 0.000147179234772921
+12 0.000150564883369952
+13 0.000152324777445756
+14 0.000154315392137505
+15 0.000152546228491701
+16 0.000148754028487019
+17 0.000149567014886998
+18 0.00014763830404263
+19 0.000154195207869634
+20 0.000151099971844815
+21 0.00015023144078441
+22 0.000148177510709502
+23 0.000153986678924412
+24 0.000149639527080581
+25 0.000151343134348281
+26 0.000150852079968899
+27 0.000151985819684342
+28 0.000150402614963241
+29 0.000150831634528004
+30 0.000150528270751238
+31 0.000154804365593009
+32 0.000151742569869384
+33 0.000148060105857439
+34 0.000148104096297175
+35 0.000152785927639343
+36 0.000151215383084491
+37 0.000149443701957352
+38 0.000149046813021414
+39 0.000150665262481198
+40 0.000150848456542008
+41 0.000150648047565483
+42 0.000148412815178744
+43 0.000147772894706577
+44 0.000146585516631603
+45 0.000153157074237242
+46 0.000152761189383455
+47 0.000150456471601501
+48 0.000154099092469551
+49 0.000152082880958915
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000173555992660113
+1 0.000128960513393395
+2 0.000150123058119789
+3 0.000148358158185147
+4 0.000180317249032669
+5 0.000156762995175086
+6 0.000181674797204323
+7 0.000160123978275806
+8 0.000148254941450432
+9 0.000141508295200765
+10 0.0001397333398927
+11 0.000178740883711725
+12 0.000149880841490813
+13 0.000134803223772906
+14 0.000119340234959964
+15 0.000131130218505859
+16 0.00016740511637181
+17 0.000157007496454753
+18 0.000180210248799995
+19 0.000116729388537351
+20 0.000145692334626801
+21 0.000159862262080424
+22 0.000171725245309062
+23 0.000119193340651691
+24 0.000156768976012245
+25 0.000141206997795962
+26 0.000149904095451348
+27 0.000139013980515301
+28 0.000151919841300696
+29 0.000148644016007893
+30 0.000151039028423838
+31 0.000118843861855567
+32 0.000137957380502485
+33 0.000175053253769875
+34 0.000172301530255936
+35 0.000286486523691565
+36 0.000144087927765213
+37 0.000160551629960537
+38 0.000162838012329303
+39 0.000146877762745135
+40 0.00014805248065386
+41 0.000149420011439361
+42 0.000166150784934871
+43 0.000176871180883609
+44 0.000186286546522751
+45 0.000130629996419884
+46 0.000130729036754929
+47 0.000150948559166864
+48 0.000115628870844375
+49 0.000167001620866358
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.0044425053812043825, Learning_Process.pdf b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.0044425053812043825, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..84950f662e0e4574058ab0016fac77bfd95a545c
Binary files /dev/null and b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.0044425053812043825, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.0044425053812043825, Learning_Process.tex b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.0044425053812043825, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..65ce43e5528b64a3b04dbaee56676e72965c3c11
--- /dev/null
+++ b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.0044425053812043825, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.21939620488483e-06, ymax=0.000197872205573206,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00012874195817858
+1 8.55405523907393e-05
+2 3.62854843842797e-05
+3 2.05620144697605e-05
+4 1.29062036648975e-05
+5 9.02171905181604e-06
+6 7.04255035088863e-06
+7 5.94018183619482e-06
+8 5.15753117724671e-06
+9 4.74280159323826e-06
+10 4.32574779551942e-06
+11 3.92767378798453e-06
+12 3.75151194020873e-06
+13 3.46823753716308e-06
+14 3.34414335156907e-06
+15 3.05515118270705e-06
+16 3.11036751554639e-06
+17 2.8246240617591e-06
+18 2.80453468803898e-06
+19 2.61193554251804e-06
+20 2.68190092356235e-06
+21 2.56726843872457e-06
+22 2.4625310288684e-06
+23 2.45866021941765e-06
+24 2.42818737206107e-06
+25 2.33667265092663e-06
+26 2.2988522232481e-06
+27 2.27426880883286e-06
+28 2.20747710955038e-06
+29 2.09627523872769e-06
+30 2.06851404982444e-06
+31 2.11823339668626e-06
+32 2.08397182177578e-06
+33 2.13113207792048e-06
+34 2.01782745534729e-06
+35 2.04691536964674e-06
+36 1.98118277694448e-06
+37 2.05125570573728e-06
+38 1.97124654732761e-06
+39 1.98330508283107e-06
+40 1.92269817489432e-06
+41 1.91853382602858e-06
+42 1.94552717402985e-06
+43 1.87928321793152e-06
+44 1.88502099263133e-06
+45 1.94541803466564e-06
+46 1.87735270174016e-06
+47 1.78105653958482e-06
+48 1.85974397481914e-06
+49 1.82036330897972e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000133446286781691
+1 7.76849483372644e-05
+2 2.54298265645048e-05
+3 2.42054993577767e-05
+4 1.18872940220172e-05
+5 7.42398106012843e-06
+6 7.34493141862913e-06
+7 6.32684896118008e-06
+8 6.37915354673169e-06
+9 3.89056140193134e-06
+10 3.69015833712183e-06
+11 4.05947457693401e-06
+12 3.48443290931755e-06
+13 3.22852474710089e-06
+14 2.49035224442196e-06
+15 3.67431312042754e-06
+16 2.79078881249006e-06
+17 3.15541251438844e-06
+18 2.7963087632088e-06
+19 3.20975709655613e-06
+20 2.8387607926561e-06
+21 2.58743898484681e-06
+22 2.9578616249637e-06
+23 2.37359404309245e-06
+24 2.19000912693446e-06
+25 2.36486289395543e-06
+26 2.44110492531036e-06
+27 2.24713653551589e-06
+28 2.26102179112786e-06
+29 2.58044565271121e-06
+30 2.5052618184418e-06
+31 2.08695973924478e-06
+32 1.87018781616644e-06
+33 1.75966999904631e-06
+34 2.42266537497926e-06
+35 1.60877823418559e-06
+36 1.97351755559794e-06
+37 1.67420182606293e-06
+38 2.07188031708938e-06
+39 1.53677501657512e-06
+40 1.97744407159917e-06
+41 1.85218084425287e-06
+42 1.79332312200131e-06
+43 2.05529795493931e-06
+44 2.22924654735834e-06
+45 1.79334949734766e-06
+46 1.68419444435131e-06
+47 2.14343776860915e-06
+48 1.60534511906008e-06
+49 1.61777643370442e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000130644562887028
+1 0.000127789564430714
+2 0.000130922562675551
+3 0.00012951361713931
+4 0.000128504616441205
+5 0.000128733008750714
+6 0.000128376443171874
+7 0.000128041079733521
+8 0.000130590342450887
+9 0.00012852948566433
+10 0.000129191306768917
+11 0.000127412567962892
+12 0.000128130486700684
+13 0.000128280691569671
+14 0.000129705338622443
+15 0.000130249711219221
+16 0.000128919607959688
+17 0.000130145053844899
+18 0.000128004656289704
+19 0.000127085746498778
+20 0.000128958519781008
+21 0.000130444183014333
+22 0.000130995103972964
+23 0.000129614229081199
+24 0.000128186293295585
+25 0.000127355466247536
+26 0.000129386738990434
+27 0.000129676249343902
+28 0.000128524101455696
+29 0.000128082931041718
+30 0.000125987906358205
+31 0.000128729647258297
+32 0.000128659565234557
+33 0.000129813837702386
+34 0.000128932675579563
+35 0.000126994171296246
+36 0.000129212683532387
+37 0.000128536150441505
+38 0.000129826032207347
+39 0.000130211526993662
+40 0.000126068756799214
+41 0.00012577157758642
+42 0.000125726335681975
+43 0.000128964587929659
+44 0.000130446802359074
+45 0.000127437437186018
+46 0.000128024563309737
+47 0.000127355277072638
+48 0.000127639708807692
+49 0.000127228850033134
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000108679712866433
+1 0.00013584982661996
+2 0.000105354141851421
+3 0.000123557052575052
+4 0.00012985584908165
+5 0.000127313862321898
+6 0.000130603555589914
+7 0.000136110465973616
+8 0.000113280017103534
+9 0.00013300045975484
+10 0.000125565566122532
+11 0.000140321368235163
+12 0.000135212249006145
+13 0.000132250119349919
+14 0.000120775403047446
+15 0.000115324037324172
+16 0.000127387684187852
+17 0.000117153707833495
+18 0.000137499897391535
+19 0.000141603566589765
+20 0.000129415231640451
+21 0.000111917783215176
+22 0.000109934808278922
+23 0.000121114986541215
+24 0.000137074908707291
+25 0.000140572345117107
+26 0.000125270569697022
+27 0.000122448080219328
+28 0.000133132605697028
+29 0.000137890034238808
+30 0.000154921479406767
+31 0.000132010769448243
+32 0.000128655039588921
+33 0.000117517753096763
+34 0.000127649283967912
+35 0.000144834353704937
+36 0.000127644001622684
+37 0.000131319931824692
+38 0.000125745864352211
+39 0.000113629037514329
+40 0.000150746433064342
+41 0.000154483990627341
+42 0.000157007118104957
+43 0.000126687853480689
+44 0.000107257023046259
+45 0.000139449824928306
+46 0.000132811095681973
+47 0.000140798147185706
+48 0.000139344687340781
+49 0.000143128636409529
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.004646602678564447, Learning_Process.pdf b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.004646602678564447, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..e86d5e7116e3311275138cc8e11c18a51d5c3333
Binary files /dev/null and b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.004646602678564447, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.004646602678564447, Learning_Process.tex b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.004646602678564447, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..123db7e0f1b78ff3b003ff5c3fe96385e84fd425
--- /dev/null
+++ b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.004646602678564447, Learning_Process.tex	
@@ -0,0 +1,257 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=6.11825137367085e-06, ymax=0.0152526481754064,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000123352539958432
+1 8.40265929582529e-05
+2 0.000195854328921996
+3 0.000123013320262544
+4 0.00824097171425819
+5 0.00032826085225679
+6 0.000112605099275243
+7 8.49412244861014e-05
+8 7.09469895809889e-05
+9 5.92002361372579e-05
+10 5.24929237144534e-05
+11 4.59696748293936e-05
+12 4.35463589383289e-05
+13 3.90963359677698e-05
+14 3.77495489374269e-05
+15 3.30088187183719e-05
+16 3.07244627038017e-05
+17 2.94545370707056e-05
+18 2.73999175988138e-05
+19 2.64030750258826e-05
+20 2.40826775552705e-05
+21 2.36842934100423e-05
+22 2.26193114940543e-05
+23 2.12523154914379e-05
+24 2.06836575671332e-05
+25 1.9674707800732e-05
+26 1.84431864909129e-05
+27 1.87595505849458e-05
+28 1.74121159943752e-05
+29 1.68218339240411e-05
+30 1.60110030265059e-05
+31 1.50846426549833e-05
+32 1.48156632349128e-05
+33 1.44757632369874e-05
+34 1.44065861604759e-05
+35 1.35467935251654e-05
+36 1.33621870190836e-05
+37 1.32068362290738e-05
+38 1.21634948300198e-05
+39 1.2210599379614e-05
+40 1.16089231596561e-05
+41 1.15868906505057e-05
+42 1.104915918404e-05
+43 1.09993652586127e-05
+44 1.09514739961014e-05
+45 1.06670504465001e-05
+46 1.01373389043147e-05
+47 9.96700509858783e-06
+48 9.82428900897503e-06
+49 9.72369343799073e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000129797306726687
+1 6.67700151097961e-05
+2 0.00017234412371181
+3 8.32838486530818e-05
+4 0.00685779470950365
+5 0.000209906283998862
+6 0.000118023621325847
+7 7.11030006641522e-05
+8 5.42502966709435e-05
+9 6.00478379055858e-05
+10 4.973133400199e-05
+11 5.48527859791648e-05
+12 3.78363874915522e-05
+13 3.94068083551247e-05
+14 2.77676335826982e-05
+15 3.74981500499416e-05
+16 3.80524761567358e-05
+17 2.95995560009032e-05
+18 2.79167779808631e-05
+19 2.46942854573717e-05
+20 3.27412672049832e-05
+21 2.10216094274074e-05
+22 2.08369583560852e-05
+23 2.43217818933772e-05
+24 1.98087218450382e-05
+25 1.76396570168436e-05
+26 2.04074694920564e-05
+27 1.93106006918242e-05
+28 1.69583418028196e-05
+29 1.52321608766215e-05
+30 1.60776926350081e-05
+31 1.99085679923883e-05
+32 1.66688405442983e-05
+33 1.57917147589615e-05
+34 1.25318392747431e-05
+35 1.50740115714143e-05
+36 1.362363127555e-05
+37 1.17421559480135e-05
+38 1.91666513273958e-05
+39 1.28469109768048e-05
+40 1.42577719088877e-05
+41 1.20167596833198e-05
+42 1.36701992232702e-05
+43 1.09659840745735e-05
+44 1.06754050648306e-05
+45 1.06891229734174e-05
+46 1.20871500257635e-05
+47 1.13217838588753e-05
+48 1.09846432678751e-05
+49 8.73018780112034e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000124022888485342
+1 0.000122178040328436
+2 0.000124216036056168
+3 0.000124882542877458
+4 0.000123635385534726
+5 0.0106892930343747
+6 0.000123802077723667
+7 0.000123959209304303
+8 0.000124801867059432
+9 0.00012369106116239
+10 0.000119963930046652
+11 0.000120974480523728
+12 0.000124472775496542
+13 0.000121461809612811
+14 0.000123254852951504
+15 0.00012496137060225
+16 0.000122827259474434
+17 0.00012500787852332
+18 0.000125433449284174
+19 0.000127840714412741
+20 0.000125599079183303
+21 0.000123581005027518
+22 0.000124953352496959
+23 0.000123849196825176
+24 0.00012615107698366
+25 0.000125711245345883
+26 0.000122729587019421
+27 0.000123825200716965
+28 0.000122049648780376
+29 0.000125796374049969
+30 0.0001256323303096
+31 0.000125482270959765
+32 0.000125696155009791
+33 0.000124964324641041
+34 0.000125703314552084
+35 0.000125438367831521
+36 0.000122778146760538
+37 0.000120831224194262
+38 0.00012497280840762
+39 0.00012173213326605
+40 0.000122399345855229
+41 0.000123769379570149
+42 0.000121873323223554
+43 0.000123271282063797
+44 0.000123136487673037
+45 0.000123198435176164
+46 0.000120706448797137
+47 0.000124603684525937
+48 0.000126268234453164
+49 0.000124665835755877
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000126321363495663
+1 0.000139682219014503
+2 0.00915330648422241
+3 0.000120435310236644
+4 0.000130592874484137
+5 0.000109373992017936
+6 0.000133297799038701
+7 0.000127903476823121
+8 0.000117844530905131
+9 0.00012651359429583
+10 0.00015801822883077
+11 0.000149967425386421
+12 0.000118622927402612
+13 0.000149029772728682
+14 0.00013052232679911
+15 0.000117816161946394
+16 0.000134063608129509
+17 0.000117999232315924
+18 0.000111651585029904
+19 8.97156351129524e-05
+20 0.000120198565127794
+21 0.000130093409097753
+22 0.000116858376713935
+23 0.000124902857351117
+24 0.000105396487924736
+25 0.000108052212453913
+26 0.000134989371872507
+27 0.000128207902889699
+28 0.000141660828376189
+29 0.000108179308881517
+30 0.000109561602585018
+31 0.000109574364614673
+32 0.000108272899524309
+33 0.000114067741378676
+34 0.000109648790385108
+35 0.000113485046313144
+36 0.000135954192955978
+37 0.000154482593643479
+38 0.000113948284706566
+39 0.000143202836625278
+40 0.000137485476443544
+41 0.000125875885714777
+42 0.000143211058457382
+43 0.000131230990518816
+44 0.00013381517783273
+45 0.000130026324768551
+46 0.000154085151734762
+47 0.000569528841879219
+48 0.000102647092717234
+49 0.000118878509965725
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.00602909491798828, Learning_Process.pdf b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.00602909491798828, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..d199558fabf7e22bf03a4a453cc4711f3ae06b4c
Binary files /dev/null and b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.00602909491798828, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.00602909491798828, Learning_Process.tex b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.00602909491798828, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..8c3041303627ccb191e96c992ec8cb23292da7d7
--- /dev/null
+++ b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.00602909491798828, Learning_Process.tex	
@@ -0,0 +1,268 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.42168752890988e-06, ymax=15122737197.6079,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-06,0.0001,0.01,1,100,10000,1000000,100000000,10000000000,1000000000000,100000000000000},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{0}}\),
+  \(\displaystyle {10^{2}}\),
+  \(\displaystyle {10^{4}}\),
+  \(\displaystyle {10^{6}}\),
+  \(\displaystyle {10^{8}}\),
+  \(\displaystyle {10^{10}}\),
+  \(\displaystyle {10^{12}}\),
+  \(\displaystyle {10^{14}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00012172957212897
+1 0.00165739690419286
+2 6.0619116993621e-05
+3 2.7206018785364e-05
+4 1.71117444551783e-05
+5 1.29540349007584e-05
+6 1.10988430606085e-05
+7 8.72884265845641e-06
+8 7.60845114200492e-06
+9 0.0128599461168051
+10 0.404788732528687
+11 0.76510614156723
+12 0.776055753231049
+13 0.756705224514008
+14 0.747043192386627
+15 0.73643547296524
+16 0.727449059486389
+17 0.728040933609009
+18 0.698492765426636
+19 0.708868384361267
+20 0.718674719333649
+21 0.718336164951324
+22 0.668998122215271
+23 0.718708157539368
+24 0.688817501068115
+25 0.669857859611511
+26 0.707903027534485
+27 0.669574677944183
+28 0.670623302459717
+29 0.670009732246399
+30 0.679557621479034
+31 0.669172406196594
+32 0.668320596218109
+33 0.648143529891968
+34 0.659192144870758
+35 0.639491021633148
+36 0.649381935596466
+37 0.658968925476074
+38 0.678622543811798
+39 0.668625175952911
+40 0.678175985813141
+41 0.629621803760529
+42 0.648709297180176
+43 0.649277746677399
+44 0.629281282424927
+45 0.657895743846893
+46 0.658434927463531
+47 0.648937284946442
+48 0.638411462306976
+49 0.65830934047699
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000136672577355057
+1 0.00137780967634171
+2 4.91225873702206e-05
+3 2.82457367575262e-05
+4 2.07610555662541e-05
+5 1.6756312106736e-05
+6 8.96467736311024e-06
+7 1.01895993793732e-05
+8 9.14886732061859e-06
+9 0.0111930510029197
+10 2825779712
+11 1506384896
+12 446094560
+13 2004426752
+14 352745408
+15 228656496
+16 864412288
+17 66838280
+18 94817880
+19 631511360
+20 74956096
+21 21818590
+22 457429824
+23 133449176
+24 346062944
+25 390087200
+26 11484703
+27 337872064
+28 31001726
+29 239466880
+30 249894784
+31 126555712
+32 45168424
+33 37130396
+34 69822336
+35 201648736
+36 31430420
+37 206963264
+38 29642784
+39 193515856
+40 61178812
+41 67734336
+42 158505456
+43 28842870
+44 41667004
+45 69794200
+46 12232647
+47 142792960
+48 79257128
+49 9197645
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000124688405776396
+1 0.000122607132652774
+2 0.000123892634292133
+3 0.000124171157949604
+4 0.000124765108921565
+5 0.00012279165093787
+6 0.00012259061622899
+7 0.000121505974675529
+8 0.000123030491522513
+9 0.000122045799798798
+10 0.000124627389595844
+11 0.000124321159091778
+12 0.000126351209473796
+13 0.000124142679851502
+14 0.000159317482030019
+15 0.00012023956514895
+16 0.000124555968795903
+17 0.000125235936138779
+18 0.000120818753202911
+19 0.000123014731798321
+20 0.000122297002235427
+21 0.000122772398754023
+22 0.00012380514817778
+23 0.000124598955153488
+24 0.000122515004477464
+25 0.000121930344903376
+26 0.000122687531984411
+27 0.000126505925436504
+28 0.000123056292068213
+29 0.000121329561807215
+30 0.000126791084767319
+31 0.000123321762657724
+32 0.000123393125250004
+33 0.000123193516628817
+34 0.000124506856082007
+35 0.000123509526019916
+36 0.000123131874715909
+37 0.000121188262710348
+38 0.000120298340334557
+39 0.000122863450087607
+40 0.000125500038848259
+41 0.000124522630358115
+42 0.000125913531519473
+43 0.000123964753584005
+44 0.000124397687613964
+45 0.000124129597679712
+46 0.000123311430797912
+47 0.000117990799481049
+48 0.000125556427519768
+49 0.00012140237231506
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000110558466985822
+1 0.000125024002045393
+2 0.000116621959023178
+3 0.000115073635242879
+4 0.000111002380435821
+5 0.000124898200738244
+6 0.000126483631902374
+7 0.000138121380587108
+8 0.000126264669233933
+9 0.000133170557091944
+10 0.000109195418190211
+11 0.00011311888374621
+12 9.69873144640587e-05
+13 0.000113834066723939
+14 0.000113560308818705
+15 0.000147694983752444
+16 0.000111544970422983
+17 0.000103843762190081
+18 0.000143930228659883
+19 0.000128744402900338
+20 0.000130305343191139
+21 0.000126150975120254
+22 0.000116718176286668
+23 0.000107308551378082
+24 0.000128093015518971
+25 0.00013448680692818
+26 0.000127336825244129
+27 9.25531130633317e-05
+28 0.000124047073768452
+29 0.000137457420350984
+30 8.94952318049036e-05
+31 0.000121083125122823
+32 0.000121193639643025
+33 0.000123679375974461
+34 0.000111554916657042
+35 0.000121366283565294
+36 0.000126508850371465
+37 0.000140141710289754
+38 0.000148060251376592
+39 0.00012610996782314
+40 0.000116458453703672
+41 0.000114946582471021
+42 9.79141696006991e-05
+43 0.000116430433990899
+44 0.00011063721467508
+45 0.00011241441097809
+46 0.000119803524285089
+47 0.000169019025634043
+48 0.000103168342320714
+49 0.000139133888296783
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006177501104866857, Learning_Process.pdf b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006177501104866857, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..7d562f819c08706fc8557c0599b6b6a10837acf7
Binary files /dev/null and b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006177501104866857, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006177501104866857, Learning_Process.tex b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006177501104866857, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..6fbaf56b737c7bde4e9931babe47d4a6487847f1
--- /dev/null
+++ b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006177501104866857, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.52749083140528e-06, ymax=0.000401231895105951,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00012915329716634
+1 0.000311474112095311
+2 6.57535783830099e-05
+3 4.13473535445519e-05
+4 2.68503390543628e-05
+5 2.03624185814988e-05
+6 1.62467313202797e-05
+7 1.37566576086101e-05
+8 1.16411511044134e-05
+9 1.00353145171539e-05
+10 9.3360113169183e-06
+11 8.24608559923945e-06
+12 7.32689477445092e-06
+13 6.7778801167151e-06
+14 6.33236095382017e-06
+15 5.76910042582313e-06
+16 5.50627919437829e-06
+17 5.16604995937087e-06
+18 4.8882561713981e-06
+19 4.61749095848063e-06
+20 4.44692295786808e-06
+21 4.24481959271361e-06
+22 3.99933287553722e-06
+23 3.8972607399046e-06
+24 3.81670497517916e-06
+25 3.59375781044946e-06
+26 3.43939109370694e-06
+27 3.30650459545723e-06
+28 3.24810685015109e-06
+29 3.14703856929555e-06
+30 3.05233811559447e-06
+31 2.98057238978799e-06
+32 2.92525942313659e-06
+33 2.81707275462395e-06
+34 2.90360412691371e-06
+35 2.82594510281342e-06
+36 2.62762500824465e-06
+37 2.6050536234834e-06
+38 2.54162296187133e-06
+39 2.56261432696192e-06
+40 2.51788765126548e-06
+41 2.44679813476978e-06
+42 2.34335993809509e-06
+43 2.31598892241891e-06
+44 2.30098862630257e-06
+45 2.27391069529403e-06
+46 2.24894301936729e-06
+47 2.23575807467569e-06
+48 2.24139898818976e-06
+49 2.19165599446569e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000141177049954422
+1 0.00026312840054743
+2 7.09608430042863e-05
+3 4.28400744567625e-05
+4 2.75540714937961e-05
+5 2.04051593755139e-05
+6 1.63278255058685e-05
+7 1.28079072965193e-05
+8 1.14587401185418e-05
+9 1.13525229608058e-05
+10 8.19214983494021e-06
+11 7.40086488804081e-06
+12 8.15617295302218e-06
+13 7.25274594515213e-06
+14 6.20023729425156e-06
+15 6.7614923864312e-06
+16 5.76745742364437e-06
+17 5.61995238967938e-06
+18 5.30212992089218e-06
+19 5.32151125298697e-06
+20 4.15257363783894e-06
+21 4.06879144065897e-06
+22 4.44621400674805e-06
+23 4.0206641642726e-06
+24 3.858635409415e-06
+25 3.76133721147198e-06
+26 3.86052943213144e-06
+27 4.04825868827174e-06
+28 3.51762832906388e-06
+29 3.41526833835815e-06
+30 3.38809127242712e-06
+31 3.23898052556615e-06
+32 3.14404564960569e-06
+33 3.26664735439408e-06
+34 2.64002414951392e-06
+35 2.21921368392941e-06
+36 2.88004548565368e-06
+37 3.05735306938004e-06
+38 2.70315399575338e-06
+39 2.04463731279247e-06
+40 2.25369649342611e-06
+41 2.23761685447244e-06
+42 2.74447370429698e-06
+43 2.63128799815604e-06
+44 2.22853896048036e-06
+45 2.35217930821818e-06
+46 2.2070519207773e-06
+47 1.96766927729186e-06
+48 2.18573768506758e-06
+49 2.1746811853518e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000128099214634858
+1 0.000129258900415152
+2 0.000128495623357594
+3 0.000126736515085213
+4 0.000135477515868843
+5 0.000127153543871827
+6 0.000131394699565135
+7 0.000130340311443433
+8 0.000128557367133908
+9 0.000130062340758741
+10 0.000130508284200914
+11 0.000130092608742416
+12 0.000130604603327811
+13 0.000127333682030439
+14 0.000130119864479639
+15 0.000129267573356628
+16 0.000129241088870913
+17 0.00012618739856407
+18 0.000129446518258192
+19 0.000130003129015677
+20 0.000127022532979026
+21 0.00013117166236043
+22 0.00013117391790729
+23 0.000129238876979798
+24 0.000129952299175784
+25 0.00012974496348761
+26 0.000129104286315851
+27 0.000128938336274587
+28 0.000129577980260365
+29 0.00013133768516127
+30 0.000128656043671072
+31 0.00013204118295107
+32 0.000129803898744285
+33 0.000130985397845507
+34 0.00012877507833764
+35 0.000129971318528987
+36 0.000127718536532484
+37 0.000129824402392842
+38 0.000126884435303509
+39 0.00013143131218385
+40 0.000131437802338041
+41 0.00012773806520272
+42 0.000128793166368268
+43 0.000130821135826409
+44 0.000128253348520957
+45 0.000130219443235546
+46 0.000133351204567589
+47 0.000130660613649525
+48 0.000128886618767865
+49 0.00012771671754308
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000147714046761394
+1 0.000136475166073069
+2 0.000143217053846456
+3 0.000158363720402122
+4 0.000138624061946757
+5 0.000156814043293707
+6 0.000117706542368978
+7 0.000129735402879305
+8 0.000144946970976889
+9 0.00013239860709291
+10 0.000120489661640022
+11 0.000127921637613326
+12 0.000123743506264873
+13 0.000153246684931219
+14 0.000128846630104817
+15 0.000139808034873568
+16 0.00013588163710665
+17 0.000165254125022329
+18 0.000132188899442554
+19 0.000130339394672774
+20 0.000154148816363886
+21 0.000119309486763086
+22 0.000117778945423197
+23 0.000137626673677005
+24 0.000129350679344498
+25 0.000133540001115762
+26 0.000137850860483013
+27 0.00014084494614508
+28 0.000133525725686923
+29 0.000117858362500556
+30 0.000138613322633319
+31 0.000113016511022579
+32 0.000131732027512044
+33 0.000120264434372075
+34 0.000140381001983769
+35 0.000127388382679783
+36 0.000152982378494926
+37 0.000129371663206257
+38 0.000157537899212912
+39 0.00011701258335961
+40 0.000113451365905348
+41 0.000151682281284593
+42 0.000134349800646305
+43 0.000130043728859164
+44 0.000146397083881311
+45 0.000127821971545927
+46 9.75552829913795e-05
+47 0.000124095502542332
+48 0.000139255964313634
+49 0.000153061002492905
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006184898493082446, Learning_Process.pdf b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006184898493082446, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..ae1078110710c5bb0f4919eee061f445b57dd3c9
Binary files /dev/null and b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006184898493082446, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006184898493082446, Learning_Process.tex b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006184898493082446, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..beee3db87d7bbd04379310555a8f7ddeb6bb17f4
--- /dev/null
+++ b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006184898493082446, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.29071661342225e-06, ymax=0.000259886162827204,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000152854350744747
+1 8.59933206811547e-05
+2 5.37313426320907e-05
+3 3.15406250592787e-05
+4 1.42745120683685e-05
+5 9.49216791923391e-06
+6 7.26637790648965e-06
+7 6.11664427196956e-06
+8 5.40450173502904e-06
+9 4.7659582378401e-06
+10 4.43111639469862e-06
+11 4.18155741499504e-06
+12 3.99119289795635e-06
+13 3.72961949324235e-06
+14 3.57789963345567e-06
+15 3.46798060490983e-06
+16 3.2745192584116e-06
+17 3.1925558232615e-06
+18 3.0636690553365e-06
+19 2.92838308268983e-06
+20 2.97910719382344e-06
+21 2.70370082944282e-06
+22 2.82103724202898e-06
+23 2.64022219198523e-06
+24 2.69312681666634e-06
+25 2.69428687715845e-06
+26 2.5844456104096e-06
+27 2.8038132313668e-06
+28 2.35160337069829e-06
+29 2.46196486841654e-06
+30 2.46720583163551e-06
+31 2.39312271332892e-06
+32 2.44874399868422e-06
+33 2.36915502682677e-06
+34 2.41366615227889e-06
+35 2.28028716264816e-06
+36 2.27963641918905e-06
+37 2.24759628508764e-06
+38 2.23865640691656e-06
+39 2.21327809413197e-06
+40 2.21626987695345e-06
+41 2.21392269850185e-06
+42 2.11377641790023e-06
+43 2.15220984500775e-06
+44 2.10954908652639e-06
+45 2.11720862353104e-06
+46 2.04974571715866e-06
+47 2.13777411772753e-06
+48 2.03110062102496e-06
+49 2.05456035473617e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000184121454367414
+1 7.85090742283501e-05
+2 5.55238984816242e-05
+3 4.0643510146765e-05
+4 1.00566676337621e-05
+5 8.44656369736185e-06
+6 7.77047989686253e-06
+7 6.78152855471126e-06
+8 5.2028990467079e-06
+9 5.46550927538192e-06
+10 4.75525530418963e-06
+11 3.88719490729272e-06
+12 3.81543031835463e-06
+13 3.61372599400056e-06
+14 3.54014855474816e-06
+15 2.68868598141125e-06
+16 3.43073838848795e-06
+17 2.70137002189585e-06
+18 2.94342567030981e-06
+19 2.93864695777302e-06
+20 2.33372588809289e-06
+21 3.57201724909828e-06
+22 2.35964262174093e-06
+23 3.33284265252587e-06
+24 2.42265832639532e-06
+25 2.50853372563142e-06
+26 2.42691248786286e-06
+27 2.46387139668514e-06
+28 2.8292286060605e-06
+29 2.15375916923222e-06
+30 2.79692949334276e-06
+31 2.55180657404708e-06
+32 2.0652366856666e-06
+33 2.82239739135548e-06
+34 1.91260483006772e-06
+35 2.58036720879318e-06
+36 2.13902512768982e-06
+37 1.94141625797783e-06
+38 2.51362303060887e-06
+39 2.20427932617895e-06
+40 1.6426914726253e-06
+41 2.02729529519274e-06
+42 2.24775044443959e-06
+43 2.20754964175285e-06
+44 2.03904528461862e-06
+45 1.93705682249856e-06
+46 2.05122478291742e-06
+47 1.65627193382534e-06
+48 1.98862358047336e-06
+49 1.96232031157706e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.0001564242556924
+1 0.000154436347656883
+2 0.000155192872625776
+3 0.000159420233103447
+4 0.000155175643158145
+5 0.000157091519213282
+6 0.000155179906869307
+7 0.000158546128659509
+8 0.000153884073370136
+9 0.000154207547893748
+10 0.000156697031343356
+11 0.000156224399688654
+12 0.000155736866872758
+13 0.00015903874009382
+14 0.00015194175648503
+15 0.00015566912770737
+16 0.000153119719470851
+17 0.000155662390170619
+18 0.000154492372530513
+19 0.000153789078467526
+20 0.000153585293446667
+21 0.000151967498823069
+22 0.000155166184413247
+23 0.000158192298840731
+24 0.000155577683472075
+25 0.000156508351210505
+26 0.000156356603838503
+27 0.000155288769747131
+28 0.000153230736032128
+29 0.000154199267853983
+30 0.000154045410454273
+31 0.000150313877384178
+32 0.000158150214701891
+33 0.000156366906594485
+34 0.000158721129992045
+35 0.000154600958921947
+36 0.000154624562128447
+37 0.000157653776113875
+38 0.00015355454524979
+39 0.000155411340529099
+40 0.000152895503561012
+41 0.000155420275405049
+42 0.000158014561748132
+43 0.000156045905896463
+44 0.000155665838974528
+45 0.000158839204232208
+46 0.000155780260683969
+47 0.000153345812577754
+48 0.000156955444253981
+49 0.000155710440594703
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000150512278196402
+1 0.000172428393852897
+2 0.000166421275935136
+3 0.000123356730910018
+4 0.000163328935741447
+5 0.000144751305924729
+6 0.000163055345183238
+7 0.000132723434944637
+8 0.000173945431015454
+9 0.000170508748851717
+10 0.000148150793393143
+11 0.000151367494254373
+12 0.000157086571562104
+13 0.000128352388856001
+14 0.000190008780919015
+15 0.000158966344315559
+16 0.000180902468855493
+17 0.000156580688781105
+18 0.000168189944815822
+19 0.000174953805981204
+20 0.000176883186213672
+21 0.000190700011444278
+22 0.000165512654348277
+23 0.000135552952997386
+24 0.00015721537056379
+25 0.000149441504618153
+26 0.000150701132952236
+27 0.000161074916832149
+28 0.000179478607606143
+29 0.000171571038663387
+30 0.000171940686414018
+31 0.000204201089218259
+32 0.000136192247737199
+33 0.000154105058754794
+34 0.000129451160319149
+35 0.000167515987413935
+36 0.000168718950590119
+37 0.000140535601531155
+38 0.000178134287125431
+39 0.000159292234457098
+40 0.000182733740075491
+41 0.000160100433276966
+42 0.000136518909130245
+43 0.000154161432874389
+44 0.000158708993694745
+45 0.000130557440570556
+46 0.000156214155140333
+47 0.00018008791084867
+48 0.00014499768440146
+49 0.00015638409240637
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006296385671426951, Learning_Process.pdf b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006296385671426951, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..48b02a4e4b3cbf3b11d4bede3869ae977eb50315
Binary files /dev/null and b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006296385671426951, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006296385671426951, Learning_Process.tex b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006296385671426951, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..5a12649c8534e31ac3d491b90919819b65921db4
--- /dev/null
+++ b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006296385671426951, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.36669187829582e-06, ymax=0.000226022629544883,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000120891425467562
+1 0.000179189213667996
+2 4.48413193225861e-05
+3 2.22224880417343e-05
+4 1.57550002768403e-05
+5 1.16922865345259e-05
+6 9.33108913159231e-06
+7 8.00571069703437e-06
+8 6.9200082180032e-06
+9 6.11797440797091e-06
+10 5.62141667614924e-06
+11 4.96194888910395e-06
+12 4.52567564934725e-06
+13 4.23843630414922e-06
+14 3.98618294639164e-06
+15 3.64744869330025e-06
+16 3.49750644090818e-06
+17 3.31252863361442e-06
+18 3.23149765790731e-06
+19 3.05244861920073e-06
+20 2.92354638986581e-06
+21 2.9317388907657e-06
+22 2.80555923382053e-06
+23 2.74083754447929e-06
+24 2.5818299036473e-06
+25 2.48521268986224e-06
+26 2.49688082476496e-06
+27 2.40596659750736e-06
+28 2.34092954087828e-06
+29 2.34814979194198e-06
+30 2.25384542318352e-06
+31 2.21383629650518e-06
+32 2.16401417674206e-06
+33 2.17066144614364e-06
+34 2.17399019675213e-06
+35 2.07914172278834e-06
+36 2.0457639493543e-06
+37 1.91118078873842e-06
+38 1.96641462935077e-06
+39 1.91192793863593e-06
+40 1.91544040717417e-06
+41 1.89183697330009e-06
+42 1.8575606191007e-06
+43 1.8902915144281e-06
+44 1.8016578451352e-06
+45 1.78711525222752e-06
+46 1.78405446149554e-06
+47 1.77964204794989e-06
+48 1.7700523358144e-06
+49 1.72389445651788e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.00014029405429028
+1 0.000142792792757973
+2 4.5654051064048e-05
+3 2.44429829763249e-05
+4 1.33007333715796e-05
+5 1.30646139950841e-05
+6 1.0103736713063e-05
+7 7.13412146069459e-06
+8 6.08045911576482e-06
+9 4.96864504384575e-06
+10 5.07400000060443e-06
+11 4.93360266773379e-06
+12 4.75252500109491e-06
+13 3.99980217480334e-06
+14 3.56858799932525e-06
+15 4.25454936703318e-06
+16 3.94504195355694e-06
+17 3.8140315155033e-06
+18 3.05741968986695e-06
+19 3.59871091859532e-06
+20 3.22335517921601e-06
+21 2.69028146249184e-06
+22 2.79827304439095e-06
+23 2.38468624047528e-06
+24 2.85280088974105e-06
+25 3.7344282191043e-06
+26 2.32738943850563e-06
+27 2.52255063060147e-06
+28 2.58361023952602e-06
+29 1.92325455827813e-06
+30 2.29325428335869e-06
+31 2.44685725192539e-06
+32 2.54525525633653e-06
+33 1.983631591429e-06
+34 1.87568184628617e-06
+35 2.01941907107539e-06
+36 1.86484976438805e-06
+37 2.74787998932879e-06
+38 2.15784234569583e-06
+39 2.24122436520702e-06
+40 1.90239484254562e-06
+41 1.74797730778664e-06
+42 1.9204919681215e-06
+43 1.73245223322738e-06
+44 2.13237285606738e-06
+45 2.01376133190934e-06
+46 1.82627832145954e-06
+47 1.93736536857614e-06
+48 1.84558234650467e-06
+49 1.86970453341928e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000123156802146696
+1 0.000123941717902198
+2 0.000123547884868458
+3 0.000120347329357173
+4 0.000124289159430191
+5 0.000119462412840221
+6 0.000120876400615089
+7 0.000121419965580571
+8 0.000123683188576251
+9 0.000122100798762403
+10 0.000124460362712853
+11 0.000122589728562161
+12 0.000123928242828697
+13 0.000125383478007279
+14 0.000123024728964083
+15 0.000123950041597709
+16 0.000122983619803563
+17 0.000123749836347997
+18 0.000121340344776399
+19 0.00012161917402409
+20 0.000122655023005791
+21 0.000124009588034824
+22 0.000119169184472412
+23 0.000121447177662048
+24 0.000123951904242858
+25 0.000124433165183291
+26 0.000123114848975092
+27 0.000124441343359649
+28 0.00012425912427716
+29 0.000124114536447451
+30 0.000122742392704822
+31 0.000121156481327489
+32 0.000123128993436694
+33 0.000123019359307364
+34 0.000123114048619755
+35 0.000122009259939659
+36 0.000122400146210566
+37 0.000121163473522756
+38 0.000116656527097803
+39 0.00012360823166091
+40 0.000121753284474835
+41 0.000125628081150353
+42 0.000119133153930306
+43 0.000121876320918091
+44 0.000120545701065566
+45 0.000125206017401069
+46 0.000121193115774076
+47 0.000120651311590336
+48 0.000120979588245973
+49 0.000123295831144787
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000119234027806669
+1 0.000112086941953748
+2 0.000117271905764937
+3 0.000144485893542878
+4 0.000107694060716312
+5 0.000152338980115019
+6 0.000139156705699861
+7 0.000133150009787641
+8 0.000114458474854473
+9 0.000127720108139329
+10 0.000107543150079437
+11 0.000120843309559859
+12 0.000111848188680597
+13 9.83502031886019e-05
+14 0.000117911724373698
+15 0.000111401626782026
+16 0.000120718592370395
+17 0.000112432833702769
+18 0.000133800524054095
+19 0.000132842134917155
+20 0.000123721911222674
+21 0.000110468339698855
+22 0.000154016015585512
+23 0.000133382272906601
+24 0.000110911649244372
+25 0.000107055551779922
+26 0.000119331409223378
+27 0.000106689440144692
+28 0.000109844746475574
+29 0.000110018088889774
+30 0.000122915414976887
+31 0.000136381830088794
+32 0.000119101780001074
+33 0.000119981079478748
+34 0.000116668386908714
+35 0.000129601627122611
+36 0.000125856298836879
+37 0.0001371299586026
+38 0.000175759880221449
+39 0.000115523893327918
+40 0.000130920830997638
+41 9.67314044828527e-05
+42 0.000155180183355696
+43 0.000128943269373849
+44 0.000141257289214991
+45 9.96300004771911e-05
+46 0.000135883616167121
+47 0.000142767283250578
+48 0.000137769267894328
+49 0.000118240852316376
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006346069856044679, Learning_Process.pdf b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006346069856044679, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..f2f251a2d660d06d8ea0165ef4bcab9847e9bf86
Binary files /dev/null and b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006346069856044679, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006346069856044679, Learning_Process.tex b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006346069856044679, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..ac075be5c83d52a5988aab9b921e60cb5e665033
--- /dev/null
+++ b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006346069856044679, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.54449939220609e-06, ymax=0.000223843486786943,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000146016682265326
+1 0.000146862788824365
+2 3.53571413143072e-05
+3 2.03302879526746e-05
+4 1.46346610563342e-05
+5 1.08328285932657e-05
+6 8.94258846528828e-06
+7 7.62912759455503e-06
+8 6.92884850650444e-06
+9 6.01580131842638e-06
+10 6.28760517429328e-06
+11 5.18405977345537e-06
+12 4.77010189570137e-06
+13 4.49499566457234e-06
+14 4.22066841565538e-06
+15 3.97374469685019e-06
+16 3.86077863367973e-06
+17 3.85263729185681e-06
+18 3.59427281182434e-06
+19 3.41380405188829e-06
+20 3.31651153828716e-06
+21 3.26827625940496e-06
+22 3.26316421705997e-06
+23 3.16372870656778e-06
+24 3.06382571579888e-06
+25 2.9992979762028e-06
+26 2.93083530777949e-06
+27 2.81803818324988e-06
+28 2.81319148598413e-06
+29 2.7509493065736e-06
+30 2.7825090000988e-06
+31 2.72034935733245e-06
+32 2.7088574370282e-06
+33 2.66267034021439e-06
+34 2.63657830146258e-06
+35 2.71634780801833e-06
+36 2.4958128506114e-06
+37 2.51676033258263e-06
+38 2.64112827608187e-06
+39 2.46489958044549e-06
+40 2.4344565190404e-06
+41 2.47703701461433e-06
+42 2.38159327636822e-06
+43 2.36800565289741e-06
+44 2.42307464759506e-06
+45 2.37309563999588e-06
+46 2.3328498173214e-06
+47 2.25181133828301e-06
+48 2.29089209824451e-06
+49 2.3381701339531e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000157141679665074
+1 0.000113669040729292
+2 3.06908077618573e-05
+3 1.88359026651597e-05
+4 1.19328205983038e-05
+5 1.01570758488378e-05
+6 8.01028090791078e-06
+7 7.78779485699488e-06
+8 5.45143757335609e-06
+9 6.9517586780421e-06
+10 5.46651654076413e-06
+11 5.36035940967849e-06
+12 4.91337414132431e-06
+13 4.08770074500353e-06
+14 4.18785703004687e-06
+15 4.33957393397577e-06
+16 3.80187634618778e-06
+17 3.94710650652996e-06
+18 3.75511604033818e-06
+19 3.58483157469891e-06
+20 3.24112625094131e-06
+21 3.09607639792375e-06
+22 3.23177050631784e-06
+23 2.55719101005525e-06
+24 3.22946220876474e-06
+25 2.97042925012647e-06
+26 3.19399919135321e-06
+27 3.37607048095379e-06
+28 2.75275738204073e-06
+29 3.51189964931109e-06
+30 2.42801729655184e-06
+31 2.9468062621163e-06
+32 2.61067657447711e-06
+33 2.81088478004676e-06
+34 2.82841324406036e-06
+35 2.17868364416063e-06
+36 3.22021514875814e-06
+37 2.65656376541301e-06
+38 1.93652067537187e-06
+39 2.67965901912248e-06
+40 2.39845462601807e-06
+41 2.4933508484537e-06
+42 2.34438107327151e-06
+43 2.74026183433307e-06
+44 2.35646416513191e-06
+45 2.63177093984268e-06
+46 2.37400695368706e-06
+47 2.3500717816205e-06
+48 2.22191306420427e-06
+49 2.08814049074135e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000143930534250103
+1 0.000147586717503145
+2 0.000150622363435104
+3 0.000143183380714618
+4 0.000151325351907872
+5 0.000149496947415173
+6 0.000147696904605255
+7 0.000147447557537816
+8 0.000147969461977482
+9 0.000145119760418311
+10 0.000148738006828353
+11 0.000146624908666126
+12 0.000148133636685088
+13 0.000146562480949797
+14 0.000147611586726271
+15 0.000147921993630007
+16 0.000149290965055116
+17 0.000143701632623561
+18 0.000145907673868351
+19 0.000145573270856403
+20 0.000148663079016842
+21 0.000146888487506658
+22 0.000151240732520819
+23 0.000146437669172883
+24 0.000143819532240741
+25 0.000144227378768846
+26 0.000147769445902668
+27 0.000147540311445482
+28 0.000146762482472695
+29 0.000149148399941623
+30 0.000146956692333333
+31 0.000147051643580198
+32 0.000147770260809921
+33 0.000144720179378055
+34 0.000147650061990134
+35 0.000148342878674157
+36 0.000145838333992288
+37 0.000146514837979339
+38 0.000147145328810439
+39 0.000145393220009282
+40 0.000147742466651835
+41 0.000148056802572682
+42 0.000147360333357938
+43 0.00014731046394445
+44 0.00014775840099901
+45 0.000147566985106096
+46 0.000146444202982821
+47 0.000144929872476496
+48 0.000145134443300776
+49 0.000145036276080646
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000171341162058525
+1 0.000141574564622715
+2 0.000113064212200698
+3 0.000178529531694949
+4 0.000108404725324363
+5 0.000124289770610631
+6 0.000144682460813783
+7 0.000142548145959154
+8 0.000138450908707455
+9 0.00016177944780793
+10 0.000128669737023301
+11 0.000149929299368523
+12 0.000136207017931156
+13 0.000151754094986245
+14 0.000143507480970584
+15 0.000137651921249926
+16 0.000127200313727371
+17 0.000175221255631186
+18 0.000157838338054717
+19 0.000160449111717753
+20 0.000132038796436973
+21 0.000146959035191685
+22 0.000106207582575735
+23 0.000149641404277645
+24 0.000178109883563593
+25 0.00016948590928223
+26 0.000138505434733815
+27 0.000146088466863148
+28 0.000149567174958065
+29 0.000127131846966222
+30 0.000142461358336732
+31 0.000145586556755006
+32 0.000139841096824966
+33 0.000165925346664153
+34 0.000141457858262584
+35 0.000131974898977205
+36 0.000154223205754533
+37 0.000148346633068286
+38 0.000144237055792473
+39 0.000162736483616754
+40 0.000141495766001754
+41 0.000139113326440565
+42 0.000141261538374238
+43 0.000144487057696097
+44 0.000139048119308427
+45 0.000142621342092752
+46 0.000150918320287019
+47 0.000166251760674641
+48 0.000167153018992394
+49 0.000163829099619761
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006420579349013603, Learning_Process.pdf b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006420579349013603, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..269853c292d99ff4ad56c956571025f30d5dc627
Binary files /dev/null and b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006420579349013603, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006420579349013603, Learning_Process.tex b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006420579349013603, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..8d6c77eefce9f60bcf54b52b0007700e06c65ffd
--- /dev/null
+++ b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006420579349013603, Learning_Process.tex	
@@ -0,0 +1,256 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.14897933579727e-06, ymax=0.0012297948203546,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00014792216825299
+1 0.000167291829711758
+2 0.000937626347877085
+3 0.000684322323650122
+4 0.000322602485539392
+5 8.19130582385696e-05
+6 5.88380244153086e-05
+7 4.71212551929057e-05
+8 3.94909766328055e-05
+9 3.33349707943853e-05
+10 2.85792011709418e-05
+11 2.55244976870017e-05
+12 2.29030883929227e-05
+13 2.0939827663824e-05
+14 1.9354507458047e-05
+15 1.74166470969794e-05
+16 1.64306729857344e-05
+17 1.49579927892773e-05
+18 1.38330742629478e-05
+19 1.32028408188489e-05
+20 1.25654178191326e-05
+21 1.15866478154203e-05
+22 1.10654045784031e-05
+23 1.03019274320104e-05
+24 1.00378929346334e-05
+25 9.35681691771606e-06
+26 9.25115091376938e-06
+27 8.90214232640574e-06
+28 8.23727896204218e-06
+29 8.10310939414194e-06
+30 7.60973716751323e-06
+31 7.48808133721468e-06
+32 7.34727882445441e-06
+33 7.17847979103681e-06
+34 6.74586362947593e-06
+35 6.39043673800188e-06
+36 6.22409015704761e-06
+37 6.09856169830891e-06
+38 6.07840183874941e-06
+39 5.78972685616463e-06
+40 5.57795965505647e-06
+41 5.9518124544411e-06
+42 5.45352941117017e-06
+43 5.82651864533545e-06
+44 5.2359132496349e-06
+45 5.12845736011514e-06
+46 5.03297360410215e-06
+47 4.8387792048743e-06
+48 4.73461750516435e-06
+49 4.6614136408607e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000134741741931066
+1 9.89287655102089e-05
+2 0.000802236434537917
+3 0.000672093068715185
+4 0.000222952381591313
+5 7.74214277043939e-05
+6 6.03046864853241e-05
+7 4.69912702101283e-05
+8 3.41281156579498e-05
+9 3.48978901456576e-05
+10 3.24238098983187e-05
+11 2.70992750301957e-05
+12 2.41189809457865e-05
+13 2.03539766516769e-05
+14 1.56333535414888e-05
+15 1.72793188539799e-05
+16 1.3081546057947e-05
+17 1.44852238008752e-05
+18 1.4170516806189e-05
+19 1.17553008749383e-05
+20 1.0456132258696e-05
+21 1.1288839232293e-05
+22 1.1955909030803e-05
+23 1.13355772555224e-05
+24 9.80059940047795e-06
+25 1.12268717202824e-05
+26 7.42641577744507e-06
+27 7.78685171098914e-06
+28 9.43682698562043e-06
+29 7.00124383001821e-06
+30 9.51696983975125e-06
+31 7.46582827559905e-06
+32 6.0491015574371e-06
+33 5.59823456569575e-06
+34 6.21207209405839e-06
+35 7.22286358723068e-06
+36 7.51211200622492e-06
+37 6.45460386294872e-06
+38 5.22938807989703e-06
+39 6.12335725236335e-06
+40 6.46642592982971e-06
+41 4.67291738459608e-06
+42 5.25947052665288e-06
+43 5.05281923324219e-06
+44 4.49629033028032e-06
+45 4.31541866419138e-06
+46 4.13021507483791e-06
+47 6.2305475694302e-06
+48 4.90657430418651e-06
+49 5.1160254770366e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000141483076731674
+1 0.000145524318213575
+2 0.000150096690049395
+3 0.000146876904182136
+4 0.000148625680594705
+5 0.000140833086334169
+6 0.000147666592965834
+7 0.000148043312947266
+8 0.000148145118146203
+9 0.000148994236951694
+10 0.000146839520311914
+11 0.000145928599522449
+12 0.000146981605212204
+13 0.000149298153701238
+14 0.000142372911795974
+15 0.000147350845509209
+16 0.000146910606417805
+17 0.000145243175211363
+18 0.00014742455095984
+19 0.000148325765621848
+20 0.000150644642417319
+21 0.000147587634273805
+22 0.000146741716889665
+23 0.000147125916555524
+24 0.000148972525494173
+25 0.000146031539770775
+26 0.00014845747500658
+27 0.000145914716995321
+28 0.000143923709401861
+29 0.00014805406681262
+30 0.000145944504765794
+31 0.000147371290950105
+32 0.000144530538818799
+33 0.000142302524182014
+34 0.000146229998790659
+35 0.000147200014907867
+36 0.000143491313792765
+37 0.000141208525747061
+38 0.000148018662002869
+39 0.000146697799209505
+40 0.000146129241329618
+41 0.000148331819218583
+42 0.000146002697874792
+43 0.000146139718708582
+44 0.000147624654346146
+45 0.000149082377902232
+46 0.000144725694553927
+47 0.000145877856994048
+48 0.000148698352859356
+49 0.000149850122397766
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000191192826605402
+1 0.000159850053023547
+2 0.000116280258225743
+3 0.00014102655404713
+4 0.000125343518448062
+5 0.000196973720449023
+6 0.00013635381765198
+7 0.000131483175209723
+8 0.000130371627165005
+9 0.000125529651995748
+10 0.00014343042857945
+11 0.000149092826177366
+12 0.000138442541356198
+13 0.000117595031042583
+14 0.000185570956091397
+15 0.000144562145578675
+16 0.00014163603191264
+17 0.000157706512254663
+18 0.000139219235279597
+19 0.000130127067677677
+20 0.000109742097265553
+21 0.000137705967063084
+22 0.000142934339237399
+23 0.000140429168823175
+24 0.000120625620184001
+25 0.000183845782885328
+26 0.000128083062008955
+27 0.000149796178448014
+28 0.000165398305398412
+29 0.000131194741697982
+30 0.000150890467921272
+31 0.000136033209855668
+32 0.000161862757522613
+33 0.000183359952643514
+34 0.000150401683640666
+35 0.000140234958962537
+36 0.000174088097992353
+37 0.000191978790098801
+38 0.000131230015540496
+39 0.000144164121593349
+40 0.00015034391253721
+41 0.000130348867969587
+42 0.000152185704791918
+43 0.000148590101161972
+44 0.000135512236738577
+45 0.000119901589641813
+46 0.000162802389240824
+47 0.000157625603605993
+48 0.000126777944387868
+49 0.000114735754323192
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006521254071831862, Learning_Process.pdf b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006521254071831862, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..a1d3d612f4400931b08da37f7a31c77bd4efa6af
Binary files /dev/null and b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006521254071831862, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006521254071831862, Learning_Process.tex b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006521254071831862, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..adb8fa86f86ba2c23c23e0b1c950548e6ed7c30d
--- /dev/null
+++ b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006521254071831862, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.61552487348375e-06, ymax=0.000896358580059704,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000135137495817617
+1 0.000153705113916658
+2 6.54672185191885e-05
+3 3.75147646991536e-05
+4 2.84925627056509e-05
+5 2.2202730178833e-05
+6 1.81890645762905e-05
+7 1.55232610268285e-05
+8 1.30693815663108e-05
+9 1.1602452104853e-05
+10 1.05873914435506e-05
+11 9.46555883274414e-06
+12 8.41602832224453e-06
+13 8.09241555543849e-06
+14 7.38899689167738e-06
+15 6.8365170591278e-06
+16 6.39866220808472e-06
+17 6.08198843110586e-06
+18 5.77343053009827e-06
+19 5.41919462193619e-06
+20 4.98691497341497e-06
+21 4.83184294353123e-06
+22 4.63085734736524e-06
+23 4.47096135758329e-06
+24 4.34705862062401e-06
+25 4.21198774347431e-06
+26 3.9799851947464e-06
+27 3.808142764683e-06
+28 3.67051052307943e-06
+29 3.61975935447845e-06
+30 3.57079011337191e-06
+31 3.43985175277339e-06
+32 3.3331682516291e-06
+33 3.23288145409606e-06
+34 3.14539011014858e-06
+35 3.0801854791207e-06
+36 3.71237797480717e-06
+37 3.28081955558446e-06
+38 3.08020662487252e-06
+39 2.97342876365292e-06
+40 2.86222120848834e-06
+41 2.7421781396697e-06
+42 2.66077381638752e-06
+43 2.671270067367e-06
+44 2.52411223300442e-06
+45 2.48619221565605e-06
+46 2.4718576696614e-06
+47 2.44870102505956e-06
+48 2.38533743868174e-06
+49 2.35952575167175e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000141520242323168
+1 0.000672584515996277
+2 5.42096749995835e-05
+3 4.66893652628642e-05
+4 2.60354136116803e-05
+5 1.9687437088578e-05
+6 1.59212522703456e-05
+7 1.41139580591698e-05
+8 1.49541710925405e-05
+9 1.23143927339697e-05
+10 8.8576489361003e-06
+11 1.08469357655849e-05
+12 9.91526212601457e-06
+13 6.16505440120818e-06
+14 6.89241414875141e-06
+15 6.76505669616745e-06
+16 6.08443042438012e-06
+17 5.1202596296207e-06
+18 4.69938822789118e-06
+19 4.80152721138438e-06
+20 6.3627944655309e-06
+21 5.0248927436769e-06
+22 4.88211571791908e-06
+23 4.23767824031529e-06
+24 3.69447957382363e-06
+25 3.21400216307666e-06
+26 4.14313353758189e-06
+27 4.27889835918904e-06
+28 4.26186261393013e-06
+29 3.63024378202681e-06
+30 3.04648779092531e-06
+31 3.19444120577828e-06
+32 3.71809301213943e-06
+33 3.52316487806092e-06
+34 3.36719426741183e-06
+35 3.23924405165599e-06
+36 3.04603941003734e-06
+37 3.10599511976761e-06
+38 2.9250825264171e-06
+39 2.74811077360937e-06
+40 2.42219425672374e-06
+41 2.78142829301942e-06
+42 3.00015176435409e-06
+43 2.48751871367858e-06
+44 3.07382697428693e-06
+45 2.6876198262471e-06
+46 2.33667924476322e-06
+47 2.15302247852378e-06
+48 2.35706943385594e-06
+49 2.33948298955511e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000136749993544072
+1 0.000135777474497445
+2 0.000138198083732277
+3 0.000140081523568369
+4 0.000135270427563228
+5 0.000137588081997819
+6 0.00014012205065228
+7 0.000131142121972516
+8 0.000136756338179111
+9 0.000136345362989232
+10 0.000134113157400861
+11 0.000134961403091438
+12 0.000140125208417885
+13 0.000136273796670139
+14 0.000137361654196866
+15 0.000137768074637279
+16 0.000136834380100481
+17 0.000133575507788919
+18 0.000135746377054602
+19 0.000136560236569494
+20 0.000138211413286626
+21 0.000135386158945039
+22 0.000133992056362331
+23 0.000135319656692445
+24 0.00013414332352113
+25 0.000134184840135276
+26 0.00013673298235517
+27 0.000137060793349519
+28 0.000137135444674641
+29 0.000137281662318856
+30 0.000134712419821881
+31 0.000135127353132702
+32 0.000138392089866102
+33 0.000136382164782844
+34 0.000137829963932745
+35 0.000137149923830293
+36 0.000136136906803586
+37 0.000136171249323525
+38 0.000134182366309687
+39 0.000133702662424184
+40 0.00013494142331183
+41 0.000133625231683254
+42 0.000136838090838864
+43 0.00013928439875599
+44 0.000139968818984926
+45 0.000133379333419725
+46 0.000135813374072313
+47 0.000135286958538927
+48 0.000137364404508844
+49 0.00013643542479258
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.00012293022882659
+1 0.000134172310936265
+2 0.000116179602628108
+3 9.69559914665297e-05
+4 0.000138223942485638
+5 0.000120765231258702
+6 9.38096200115979e-05
+7 0.00017051502072718
+8 0.000126017068396322
+9 0.000127566090668552
+10 0.000149481100379489
+11 0.000138038056320511
+12 9.78177340584807e-05
+13 0.000127590421470813
+14 0.000120803881145548
+15 0.000114466813101899
+16 0.00012417629477568
+17 0.000149485247675329
+18 0.000133718524011783
+19 0.000129332634969614
+20 0.000109935601358302
+21 0.000135663271066733
+22 0.000151808199007064
+23 0.000138458286528476
+24 0.000146714141010307
+25 0.000153165732626803
+26 0.000127544422866777
+27 0.000124424608657137
+28 0.000120917546155397
+29 0.000123058125609532
+30 0.000141714655910619
+31 0.000140699339681305
+32 0.000107848485640716
+33 0.000126225393614732
+34 0.000117636074719485
+35 0.000121919809316751
+36 0.000131049266201444
+37 0.000123609410366043
+38 0.000147706668940373
+39 0.00015185157826636
+40 0.000268803793005645
+41 0.00015543241170235
+42 0.00012465390318539
+43 0.000104633778391872
+44 9.56724907155149e-05
+45 0.000153911794768646
+46 0.000134342073579319
+47 0.000139751777169295
+48 0.000120747732580639
+49 0.000127563296700828
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006537464394918427, Learning_Process.pdf b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006537464394918427, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..3f0a52afe7bbd76fd5a2434f0a2e74bafc17759e
Binary files /dev/null and b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006537464394918427, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006537464394918427, Learning_Process.tex b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006537464394918427, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..da8fae3cb12096a2864f7349bb2763bea3144987
--- /dev/null
+++ b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006537464394918427, Learning_Process.tex	
@@ -0,0 +1,256 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.9753645061653e-06, ymax=0.00343068846071309,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000147219790960662
+1 0.00244410941377282
+2 0.000336532015353441
+3 6.36962431599386e-05
+4 4.04940401494969e-05
+5 3.08290436805692e-05
+6 2.40670888160821e-05
+7 1.98803172679618e-05
+8 1.75237382791238e-05
+9 1.48713024827885e-05
+10 1.43756105899229e-05
+11 1.24377875181381e-05
+12 1.09644115582341e-05
+13 9.94484435068443e-06
+14 9.14711381483357e-06
+15 8.45023987494642e-06
+16 7.76756860432215e-06
+17 7.37178061172017e-06
+18 6.98154599376721e-06
+19 6.54428686175379e-06
+20 6.23757114226464e-06
+21 5.96209383729729e-06
+22 5.68759878660785e-06
+23 5.47789659322007e-06
+24 5.23705512023298e-06
+25 5.01188333146274e-06
+26 4.83302665088559e-06
+27 4.69643828182598e-06
+28 4.51226469522226e-06
+29 4.39967107013217e-06
+30 4.2401734390296e-06
+31 4.16618877352448e-06
+32 4.09841777582187e-06
+33 3.92259698855923e-06
+34 3.85728844776168e-06
+35 3.82176131097367e-06
+36 3.72395334125031e-06
+37 3.57572730536049e-06
+38 3.42530233865546e-06
+39 3.45999865203339e-06
+40 3.38054201165505e-06
+41 3.34096716869681e-06
+42 3.27616885442694e-06
+43 3.22582332046295e-06
+44 3.13178247779433e-06
+45 3.10747236653697e-06
+46 3.05634398500843e-06
+47 3.01069144370558e-06
+48 2.98674922305509e-06
+49 2.96158782475686e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000126493338029832
+1 0.0018462585285306
+2 0.0021176659502089
+3 7.01645403751172e-05
+4 4.30037725891452e-05
+5 2.72530432994245e-05
+6 2.64897189481417e-05
+7 2.35346578847384e-05
+8 1.52571565195103e-05
+9 1.5837211321923e-05
+10 1.26159930005088e-05
+11 1.0697196557885e-05
+12 1.10041437437758e-05
+13 1.00532988653868e-05
+14 9.00858412933303e-06
+15 8.62824435898801e-06
+16 9.01518342288909e-06
+17 7.80948448664276e-06
+18 6.80454832036048e-06
+19 6.73166505293921e-06
+20 6.22338848188519e-06
+21 5.96852714807028e-06
+22 5.6703124755586e-06
+23 5.2249606596888e-06
+24 5.11435200678534e-06
+25 5.10787276652991e-06
+26 5.14865450895741e-06
+27 4.46255762653891e-06
+28 4.75820297651808e-06
+29 4.56174529972486e-06
+30 4.45716887043091e-06
+31 4.05145738113788e-06
+32 3.91722278436646e-06
+33 4.09205904361443e-06
+34 3.60180797542853e-06
+35 3.13964460474381e-06
+36 3.08705170937174e-06
+37 3.89105207432294e-06
+38 4.27087798016146e-06
+39 3.28338728650124e-06
+40 3.60373201147013e-06
+41 3.15469560518977e-06
+42 3.18265460919065e-06
+43 2.91757828563277e-06
+44 3.45178500538168e-06
+45 3.2035973163147e-06
+46 2.999579464813e-06
+47 3.0723615509487e-06
+48 2.77273193205474e-06
+49 2.84239376924234e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000143850265885703
+1 0.0001484341773903
+2 0.000142734104883857
+3 0.000146945036249235
+4 0.000146593083627522
+5 0.000144853693200275
+6 0.000146296981256455
+7 0.000147075901622884
+8 0.000143028126331046
+9 0.000147466795169748
+10 0.000148790641105734
+11 0.000146123536978848
+12 0.000144495497806929
+13 0.000146164558827877
+14 0.000139690964715555
+15 0.000145916288602166
+16 0.000145350233651698
+17 0.000145327081554569
+18 0.000144041638122872
+19 0.000142228658660315
+20 0.000142063887324184
+21 0.000146439197123982
+22 0.00014497987285722
+23 0.000147532307892106
+24 0.000145436366437934
+25 0.000147696511703543
+26 0.000145963858813047
+27 0.000141897122375667
+28 0.000145773272379301
+29 0.000148810038808733
+30 0.000145451660500839
+31 0.000145384881761856
+32 0.000147241909871809
+33 0.000147940765600652
+34 0.00014758639736101
+35 0.000146237638546154
+36 0.000145618832902983
+37 0.000142693606903777
+38 0.000138783681904897
+39 0.00014500884572044
+40 0.000146381833474152
+41 0.00014709607057739
+42 0.000145725716720335
+43 0.000146535399835557
+44 0.000143439145176671
+45 0.000146778402267955
+46 0.000147707585711032
+47 0.000147544065839611
+48 0.000149387487908825
+49 0.000145331607200205
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000158067996380851
+1 0.000116924340545665
+2 0.000167608057381585
+3 0.00012951331154909
+4 0.000132874032715335
+5 0.000146244536153972
+6 0.00013332741218619
+7 0.000126614060718566
+8 0.000163400865858421
+9 0.000124429381685331
+10 0.000111856374132913
+11 0.000136647140607238
+12 0.000150551742990501
+13 0.00013625631981995
+14 0.00019365971093066
+15 0.000138625109684654
+16 0.000144463643664494
+17 0.000145516300108284
+18 0.000158284849021584
+19 0.00017136316455435
+20 0.000170753788552247
+21 0.000133472625748254
+22 0.000146779770147987
+23 0.000122502009617165
+24 0.000140418909722939
+25 0.000122459066915326
+26 0.000138002127641812
+27 0.000174156783032231
+28 0.000138850402436219
+29 0.000111587018182036
+30 0.000142437856993638
+31 0.000146658319863491
+32 0.000126120226923376
+33 0.000119796743092593
+34 0.000125003178254701
+35 0.000134577057906426
+36 0.000143464378197677
+37 0.000170449638972059
+38 0.000202825249289162
+39 0.000146417311043479
+40 0.000133375709992833
+41 0.000129859181470238
+42 0.000138350776978768
+43 0.000131371358293109
+44 0.00016072834841907
+45 0.000130159998661838
+46 0.000122208133689128
+47 0.00012231248547323
+48 0.000105643695860635
+49 0.000144066027132794
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.00654207104836212, Learning_Process.pdf b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.00654207104836212, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..e8083473a255d84596317c0687b05a000666ca66
Binary files /dev/null and b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.00654207104836212, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.00654207104836212, Learning_Process.tex b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.00654207104836212, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..b7909065e8526c92f4e26f4fc025ef87df89774a
--- /dev/null
+++ b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.00654207104836212, Learning_Process.tex	
@@ -0,0 +1,257 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.22979605100711e-06, ymax=0.0227174024735681,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000146073958603665
+1 0.00042843070696108
+2 0.011374888010323
+3 0.000255016784649342
+4 0.00013320631114766
+5 8.96297133294865e-05
+6 7.05685815773904e-05
+7 5.65224872843828e-05
+8 4.78138535981998e-05
+9 4.1103867260972e-05
+10 3.63872604793869e-05
+11 3.20377657772042e-05
+12 2.82832988887094e-05
+13 2.58388681686483e-05
+14 2.34537656069733e-05
+15 2.14861320273485e-05
+16 1.94935855688527e-05
+17 1.81008617801126e-05
+18 1.68561837199377e-05
+19 1.57704998855479e-05
+20 1.45695821629488e-05
+21 1.37399492814438e-05
+22 1.30082535179099e-05
+23 1.24376074381871e-05
+24 1.17419067464652e-05
+25 1.12427105705137e-05
+26 1.09477368823718e-05
+27 1.04137398011517e-05
+28 9.93789581116289e-06
+29 9.47962053032825e-06
+30 9.1724677986349e-06
+31 8.84870769368717e-06
+32 8.41438577481313e-06
+33 8.13519272924168e-06
+34 7.9129731602734e-06
+35 7.60631610319251e-06
+36 7.5852499321627e-06
+37 7.30618558009155e-06
+38 7.02321449352894e-06
+39 6.91625382387429e-06
+40 6.69927885610377e-06
+41 6.57923646940617e-06
+42 6.41569113213336e-06
+43 6.20626133240876e-06
+44 6.05658487984329e-06
+45 5.96763084104168e-06
+46 5.77946866542334e-06
+47 5.76549655306735e-06
+48 7.32389389668242e-06
+49 5.49465130461613e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000128524290630594
+1 0.000164084558491595
+2 0.0151875140145421
+3 0.00021188631944824
+4 0.000114114278403576
+5 9.92140994640067e-05
+6 6.82936224620789e-05
+7 6.25389729975723e-05
+8 4.65861703560222e-05
+9 4.08260384574533e-05
+10 3.44343025062699e-05
+11 2.99198563880054e-05
+12 2.88427399937063e-05
+13 2.29612433031434e-05
+14 2.14216906897491e-05
+15 1.9687306121341e-05
+16 1.99267615244025e-05
+17 1.73593234649161e-05
+18 1.58622024173383e-05
+19 1.4593310879718e-05
+20 1.62907435878878e-05
+21 1.51632411871105e-05
+22 1.38694076667889e-05
+23 1.27226221593446e-05
+24 1.27277280626004e-05
+25 1.21099901662092e-05
+26 9.24952473724261e-06
+27 9.92960303847212e-06
+28 9.35676234803395e-06
+29 9.57367319642799e-06
+30 8.65327729115961e-06
+31 8.5410783867701e-06
+32 8.98359758139122e-06
+33 8.44920759845991e-06
+34 8.3513241406763e-06
+35 8.52804532769369e-06
+36 6.50035872240551e-06
+37 6.58352155369357e-06
+38 7.40736231819028e-06
+39 6.75191358823213e-06
+40 6.56538168186671e-06
+41 5.8501891544438e-06
+42 5.84192457608879e-06
+43 6.23690584689029e-06
+44 6.3701322687848e-06
+45 5.88368538956274e-06
+46 6.18488274994888e-06
+47 4.831111709791e-06
+48 5.2765403779631e-06
+49 5.15669671585783e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000147273138281889
+1 0.000141484983032569
+2 0.000143391211167909
+3 0.000145143756526522
+4 0.000143319441122003
+5 0.000141715281642973
+6 0.000145720900036395
+7 0.000145712911034934
+8 0.000146105870953761
+9 0.000146727004903369
+10 0.000143237150041386
+11 0.000143989876960404
+12 0.000149738902109675
+13 0.00014468994049821
+14 0.0001480458304286
+15 0.000142341013997793
+16 0.000144642865052447
+17 0.000146967897308059
+18 0.000140893753268756
+19 0.000141361480928026
+20 0.000145951955346391
+21 0.000142040342325345
+22 0.000145556681673042
+23 0.000142457458423451
+24 0.000143626239150763
+25 0.000146672813571058
+26 0.000143959885463119
+27 0.000142727731144987
+28 0.000145862344652414
+29 0.00014730024849996
+30 0.00014167747576721
+31 0.000145961690577678
+32 0.000146763195516542
+33 0.000149220970342867
+34 0.000146121412399225
+35 0.00014237362483982
+36 0.00014530865882989
+37 0.000143025856232271
+38 0.000147065613418818
+39 0.000143607569043525
+40 0.000144250312587246
+41 0.000143915021908469
+42 0.00014576900866814
+43 0.000144269753945991
+44 0.000143851793836802
+45 0.000145752987009473
+46 0.00014693483535666
+47 0.000143005294376053
+48 0.000145263824379072
+49 0.000142947232234292
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000116198862087913
+1 0.000166829850059003
+2 0.000145012149005197
+3 0.000131532142404467
+4 0.000151804546476342
+5 0.000166928104590625
+6 0.000129887295770459
+7 0.000129666412249207
+8 0.000125155464047566
+9 0.00011929123866139
+10 0.000149835832417011
+11 0.000145852871355601
+12 9.37132426770404e-05
+13 0.000137509181513451
+14 0.000107679945358541
+15 0.000160184965352528
+16 0.00013825946371071
+17 0.000115856775664724
+18 0.000170796251040883
+19 0.000167191406944767
+20 0.000133745183120482
+21 0.000164933546329848
+22 0.000129924475913867
+23 0.000158361290232278
+24 0.000146130085340701
+25 0.000120398333820049
+26 0.000145124329719692
+27 0.000154459892655723
+28 0.000130801956402138
+29 0.000112980720587075
+30 0.000166058613103814
+31 0.000127615960082039
+32 0.000121060344099533
+33 9.95409718598239e-05
+34 0.000130337532027625
+35 0.00016191198665183
+36 0.000133095993078314
+37 0.00015239036292769
+38 0.000122641824418679
+39 0.000146665857755579
+40 0.000143978555570357
+41 0.000142924385727383
+42 0.000129463718621992
+43 0.000143633093102835
+44 0.000140445205033757
+45 0.000132266504806466
+46 0.000119825279398356
+47 0.000152788707055151
+48 0.000132883011247031
+49 0.000154151377500966
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.00663179949858218, Learning_Process.pdf b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.00663179949858218, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..828ad96554af0c505dc80c340ac312a316c2538a
Binary files /dev/null and b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.00663179949858218, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.00663179949858218, Learning_Process.tex b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.00663179949858218, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..839b0b00d887233af73bab189fb977248b3d8efa
--- /dev/null
+++ b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.00663179949858218, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=5.65335106056614e-06, ymax=0.000526736744314391,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000152916734805331
+1 0.000372348556993529
+2 0.00030913224327378
+3 0.000363671744707972
+4 0.000357900775270537
+5 0.000195184038602747
+6 0.000128953965031542
+7 9.89131003734656e-05
+8 8.13416190794669e-05
+9 6.71867892378941e-05
+10 5.62055247428361e-05
+11 5.02067232446279e-05
+12 4.43387252744287e-05
+13 3.97014773625415e-05
+14 3.58250508725177e-05
+15 3.30865295836702e-05
+16 3.17965896101668e-05
+17 2.79682535619941e-05
+18 2.60320339293685e-05
+19 2.44537168327952e-05
+20 2.27372056542663e-05
+21 2.18306267925072e-05
+22 1.9961349607911e-05
+23 1.91219023690792e-05
+24 1.83506090252195e-05
+25 1.80372317117872e-05
+26 1.63697241077898e-05
+27 1.5537840226898e-05
+28 1.50950263559935e-05
+29 1.40384745463962e-05
+30 1.40717493195552e-05
+31 1.31262249851716e-05
+32 1.22991759781144e-05
+33 1.27958082885016e-05
+34 1.17478166430374e-05
+35 1.13051592052216e-05
+36 1.10410555862472e-05
+37 1.06773650259129e-05
+38 1.08113508758834e-05
+39 9.77306081040297e-06
+40 9.7398360594525e-06
+41 9.51096171775134e-06
+42 9.09492246137233e-06
+43 8.56442602525931e-06
+44 8.66988011694048e-06
+45 8.31139095680555e-06
+46 8.06808293418726e-06
+47 8.19395881990204e-06
+48 7.58936221245676e-06
+49 7.52644200474606e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000145694109960459
+1 0.000215676293009892
+2 0.000413190486142412
+3 0.000412427209084854
+4 0.000428628001827747
+5 0.000224887626245618
+6 0.000145724130561575
+7 0.00010260254930472
+8 7.05717247910798e-05
+9 7.43852069717832e-05
+10 6.40492071397603e-05
+11 4.88612240587827e-05
+12 4.99119523738045e-05
+13 4.17463124904316e-05
+14 3.55936754203867e-05
+15 3.33885218424257e-05
+16 2.96161924779881e-05
+17 3.16382247547153e-05
+18 2.6952606276609e-05
+19 2.6173860533163e-05
+20 2.40706249314826e-05
+21 2.24250979954377e-05
+22 2.03096042241668e-05
+23 2.02007358893752e-05
+24 1.50922105603968e-05
+25 1.81639898073627e-05
+26 1.70609910128405e-05
+27 1.56794885697309e-05
+28 1.62820906552952e-05
+29 1.5577064914396e-05
+30 1.31158494696137e-05
+31 1.27342300402233e-05
+32 1.48874796650489e-05
+33 9.1723659352283e-06
+34 1.24545331345871e-05
+35 1.01553114291164e-05
+36 9.82862002274487e-06
+37 1.18092330012587e-05
+38 7.53517952034599e-06
+39 1.08075637399452e-05
+40 8.27480744192144e-06
+41 9.13954409043072e-06
+42 7.68802419770509e-06
+43 1.18789266707608e-05
+44 9.30272562982282e-06
+45 9.31660179048777e-06
+46 8.68478127813432e-06
+47 6.9473476287385e-06
+48 9.88027204584796e-06
+49 8.49197567731608e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000154186433064751
+1 0.000151455111335963
+2 0.000150540479808114
+3 0.000152828288264573
+4 0.000154246648889966
+5 0.00014947856834624
+6 0.000148949955473654
+7 0.000147166327224113
+8 0.000153244895045646
+9 0.000151343454490416
+10 0.000152244901983067
+11 0.000153018976561725
+12 0.000155384666868486
+13 0.000154623849084601
+14 0.000150559673784301
+15 0.000153160959598608
+16 0.000152417997014709
+17 0.000152702777995728
+18 0.000142961362143978
+19 0.00014944261056371
+20 0.000151669140905142
+21 0.000150003135786392
+22 0.000151628701132722
+23 0.000148210674524307
+24 0.000150682142702863
+25 0.000149921077536419
+26 0.000154679917613976
+27 0.000148641658597626
+28 0.000152020249515772
+29 0.000153449480421841
+30 0.000147653554449789
+31 0.000153081258758903
+32 0.000150813182699494
+33 0.000151722822920419
+34 0.000154582812683657
+35 0.000155062589328736
+36 0.000153380984556861
+37 0.000150998050230555
+38 0.000151336716953665
+39 0.000152674576384015
+40 0.000152691369294189
+41 0.000151138578075916
+42 0.000153622459038161
+43 0.000154554581968114
+44 0.000149550702190027
+45 0.000145950019941665
+46 0.000154108085553162
+47 0.000151676489622332
+48 0.000151685933815315
+49 0.000155284389620647
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.00013099197531119
+1 0.000156682261149399
+2 0.000165834673680365
+3 0.000143707060487941
+4 0.000128362094983459
+5 0.00017559302796144
+6 0.000177600042661652
+7 0.000195015294593759
+8 0.000138547402457334
+9 0.000155591624206863
+10 0.000148587889270857
+11 0.000145033991429955
+12 0.00012660282664001
+13 0.000126838276628405
+14 0.000166850863024592
+15 0.000145826765219681
+16 0.0001533802569611
+17 0.000143268596730195
+18 0.000232486010645516
+19 0.000175444292835891
+20 0.000154329361976124
+21 0.000166361685842276
+22 0.000155129499034956
+23 0.000188212376087904
+24 0.000158130293129943
+25 0.000168622907949612
+26 0.000124380516353995
+27 0.000183697542524897
+28 0.000150075109559111
+29 0.000145530721056275
+30 0.000190260107046925
+31 0.000147008831845596
+32 0.000167256730492227
+33 0.000152912019984797
+34 0.000132343018776737
+35 0.00013979228970129
+36 0.000144717821967788
+37 0.000163751465152018
+38 0.000154736029799096
+39 0.000142697434057482
+40 0.000143938683322631
+41 0.000157878137542866
+42 0.000134894828079268
+43 0.000125447942991741
+44 0.000171632025740109
+45 0.000205039468710311
+46 0.000131875742226839
+47 0.00015933821850922
+48 0.00015364759019576
+49 0.000118590520287398
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006632989981227572, Learning_Process.pdf b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006632989981227572, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..fb289a340f8f55c956f92a27aa014872ae76bfcd
Binary files /dev/null and b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006632989981227572, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006632989981227572, Learning_Process.tex b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006632989981227572, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..e5a48b8f28ce1db0f7814539c0767d9d08cffe6b
--- /dev/null
+++ b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006632989981227572, Learning_Process.tex	
@@ -0,0 +1,257 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.82299734366873e-06, ymax=0.0167476986731059,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000158774710143916
+1 0.000791904341895133
+2 0.0112835047766566
+3 0.000756491092033684
+4 0.00013451388804242
+5 8.73594035510905e-05
+6 6.59989236737601e-05
+7 5.29086137248669e-05
+8 4.16487600887194e-05
+9 3.60823833034374e-05
+10 3.20914114126936e-05
+11 2.80639887932921e-05
+12 2.45712762989569e-05
+13 2.25554140342865e-05
+14 2.05849246412981e-05
+15 1.82745297934161e-05
+16 1.70753501151921e-05
+17 1.56490041263169e-05
+18 1.49432189573417e-05
+19 1.37365686896374e-05
+20 1.32016784846201e-05
+21 1.26459590319428e-05
+22 1.16934861580376e-05
+23 1.09828743006801e-05
+24 1.0618731721479e-05
+25 1.00813258541166e-05
+26 9.57348856900353e-06
+27 9.40204154176172e-06
+28 8.58445855556056e-06
+29 8.47458068164997e-06
+30 8.23760183266131e-06
+31 8.07115884526866e-06
+32 7.68517202232033e-06
+33 7.42310112400446e-06
+34 7.16164322511759e-06
+35 7.13355484549538e-06
+36 6.90758361088228e-06
+37 6.76040235703113e-06
+38 6.63547552903765e-06
+39 6.38900610283599e-06
+40 6.29832948106923e-06
+41 6.18339618085884e-06
+42 6.21992376181879e-06
+43 5.83414703214657e-06
+44 5.74676505493699e-06
+45 5.522748324438e-06
+46 5.43544638276217e-06
+47 5.23814651387511e-06
+48 5.4282331802824e-06
+49 5.20521780345007e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000157695350935683
+1 0.000806744385045022
+2 0.00752730667591095
+3 0.000391561363358051
+4 0.000214663989027031
+5 0.000108993728645146
+6 6.80294106132351e-05
+7 4.8727284593042e-05
+8 6.06173234700691e-05
+9 3.93906993849669e-05
+10 2.97145797958365e-05
+11 2.72320303338347e-05
+12 2.73213609034428e-05
+13 1.9572607925511e-05
+14 1.88630492630182e-05
+15 2.05058222491061e-05
+16 1.81054456334095e-05
+17 1.67002654052339e-05
+18 1.43094248414855e-05
+19 1.55429152073339e-05
+20 1.19322066893801e-05
+21 1.03499096439919e-05
+22 1.20699014587444e-05
+23 1.15452739919419e-05
+24 1.07945106719853e-05
+25 1.02937137853587e-05
+26 1.06074894574704e-05
+27 8.40459688333794e-06
+28 1.22818919408019e-05
+29 9.687560122984e-06
+30 8.64221237861784e-06
+31 8.47007777338149e-06
+32 8.45343311084434e-06
+33 8.40212942421203e-06
+34 8.69679843162885e-06
+35 7.02726674717269e-06
+36 7.03629939380335e-06
+37 7.37618529456086e-06
+38 5.44199883734109e-06
+39 7.32278886061977e-06
+40 6.57191731079365e-06
+41 6.07121000939514e-06
+42 5.19044760949328e-06
+43 5.77291029912885e-06
+44 5.56382519789622e-06
+45 6.60842806610162e-06
+46 5.5493997024314e-06
+47 6.68410530124675e-06
+48 4.19007301388774e-06
+49 5.0891935643449e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000162801909027621
+1 0.000160765470354818
+2 0.000162987125804648
+3 0.000154719571582973
+4 0.000162056341650896
+5 0.000161283081979491
+6 0.000156668262206949
+7 0.000160222625709139
+8 0.000159562492626719
+9 0.000159641014761291
+10 0.000161984193255194
+11 0.000159310176968575
+12 0.000159882329171523
+13 0.00015901708684396
+14 0.000157544505782425
+15 0.000159372328198515
+16 0.000163376142154448
+17 0.000160077193868347
+18 0.00015957112191245
+19 0.000158613518578932
+20 0.000162743774126284
+21 0.000161290125106461
+22 0.000159874965902418
+23 0.00016185910499189
+24 0.000157743474119343
+25 0.00016039154434111
+26 0.000160409093950875
+27 0.00016264570876956
+28 0.000159116971190087
+29 0.000161297124577686
+30 0.000164010096341372
+31 0.000170708910445683
+32 0.000160633237101138
+33 0.000161868578288704
+34 0.000157996386406012
+35 0.000157279631821439
+36 0.000162964919582009
+37 0.000166588710271753
+38 0.000163651537150145
+39 0.000157354501425289
+40 0.000199505942873657
+41 0.000154618217493407
+42 0.000161128744366579
+43 0.000160462208441459
+44 0.000157656511873938
+45 0.000157590911840089
+46 0.000160626121214591
+47 0.000158692870172672
+48 0.000162701311637647
+49 0.000162496697157621
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000134086891193874
+1 0.00015296321362257
+2 0.000129579289932735
+3 0.000207493823836558
+4 0.00013329710054677
+5 0.000141663404065184
+6 0.000184805670869537
+7 0.000158211099915206
+8 0.000160874173161574
+9 0.000166028970852494
+10 0.000134897025418468
+11 0.000156815876835026
+12 0.00015458685811609
+13 0.000156789625179954
+14 0.000174582048202865
+15 0.000152382854139432
+16 0.000139668030897155
+17 0.000155837522470392
+18 0.00015961546159815
+19 0.000170908737345599
+20 0.000140976073453203
+21 0.000145529571454972
+22 0.000163478165632114
+23 0.000157556962221861
+24 0.000171850420883857
+25 0.000154051740537398
+26 0.000161083866260014
+27 0.000144869351061061
+28 0.000169360471772961
+29 0.000159135219291784
+30 0.00011828795686597
+31 0.000128401195979677
+32 0.000143457567901351
+33 0.000139549665618688
+34 0.000174246684764512
+35 0.000174606087966822
+36 0.00012861771392636
+37 0.000150414736708626
+38 0.000152537002577446
+39 0.000176868619746529
+40 0.000135358539409935
+41 0.0002005034184549
+42 0.000146236925502308
+43 0.000166376135894097
+44 0.000177739129867405
+45 0.000171303676324897
+46 0.000142400589538738
+47 0.000159929229994304
+48 0.00013274147931952
+49 0.000136603150167502
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006633926287156921, Learning_Process.pdf b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006633926287156921, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..fd204d521639bafe4d940d3201f465d1842345b3
Binary files /dev/null and b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006633926287156921, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006633926287156921, Learning_Process.tex b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006633926287156921, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..efaba3dac9d556673d4df65813c27597391d0c38
--- /dev/null
+++ b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006633926287156921, Learning_Process.tex	
@@ -0,0 +1,256 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.46829038489535e-06, ymax=0.00200772158391873,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000125278282212093
+1 0.00144598225597292
+2 8.2392456533853e-05
+3 3.70763445971534e-05
+4 2.53528251050739e-05
+5 1.79500784724951e-05
+6 1.4629217730544e-05
+7 1.19092201202875e-05
+8 9.9787848739652e-06
+9 8.712113412912e-06
+10 7.80660775490105e-06
+11 6.9703582994407e-06
+12 6.39229801890906e-06
+13 6.24381618763437e-06
+14 5.4979736887617e-06
+15 5.14789780936553e-06
+16 4.87750639877049e-06
+17 4.61184072264587e-06
+18 4.29153124059667e-06
+19 4.09661697631236e-06
+20 3.93010805055383e-06
+21 3.92692845707643e-06
+22 3.52716824636445e-06
+23 3.48785806636442e-06
+24 3.30451052832359e-06
+25 3.25812220580701e-06
+26 3.08852827402006e-06
+27 3.07172831526259e-06
+28 2.97216206490702e-06
+29 2.87714806290751e-06
+30 2.77974254458968e-06
+31 2.75855836662231e-06
+32 2.71260728368361e-06
+33 2.7100879833597e-06
+34 2.61221725850191e-06
+35 2.59528633250738e-06
+36 2.53143093686958e-06
+37 2.39184441852558e-06
+38 2.49463437285158e-06
+39 2.36337086789717e-06
+40 2.34703361456923e-06
+41 2.43199428950902e-06
+42 2.38458301282662e-06
+43 2.2856404484628e-06
+44 2.18770242099708e-06
+45 2.18415743802325e-06
+46 2.127242169081e-06
+47 2.09107952287013e-06
+48 2.059271082544e-06
+49 2.07214429792657e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000123730671475641
+1 0.00104920938611031
+2 7.88551406003535e-05
+3 4.18300624005497e-05
+4 2.11649585253326e-05
+5 1.98051202460192e-05
+6 1.30712523969123e-05
+7 1.19222886496573e-05
+8 1.01588238976547e-05
+9 9.67035794019466e-06
+10 7.36489755581715e-06
+11 7.43711234463262e-06
+12 6.34377374808537e-06
+13 5.7559805100027e-06
+14 5.20883349963697e-06
+15 4.77461435366422e-06
+16 4.09044014304527e-06
+17 4.00742601414095e-06
+18 4.21986214860226e-06
+19 3.73064722225536e-06
+20 3.6082460610487e-06
+21 3.63660797120247e-06
+22 4.05857144869515e-06
+23 3.04915920423809e-06
+24 3.50365371559747e-06
+25 2.83458371086454e-06
+26 3.40939163834264e-06
+27 3.21931520375074e-06
+28 2.97565566143021e-06
+29 2.82034193332947e-06
+30 3.37243841386226e-06
+31 2.72002102974511e-06
+32 2.37541621572745e-06
+33 2.21554705603921e-06
+34 3.10434916173108e-06
+35 2.19188814298832e-06
+36 2.1784524051327e-06
+37 2.91196352009138e-06
+38 2.38176085076702e-06
+39 2.39670271184877e-06
+40 2.04792559088673e-06
+41 2.82311953014869e-06
+42 2.27391478802019e-06
+43 2.35803418036085e-06
+44 2.59705370808661e-06
+45 2.03869603865314e-06
+46 2.11635847335856e-06
+47 2.55207146437897e-06
+48 2.31228364100389e-06
+49 2.0436352770048e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000123741163406521
+1 0.000125611972180195
+2 0.000128814135678113
+3 0.000125700607895851
+4 0.000123872683616355
+5 0.000125906532048248
+6 0.000125273116282187
+7 0.000125576189020649
+8 0.000126163955428638
+9 0.000124932223116048
+10 0.000125998805742711
+11 0.000123359030112624
+12 0.000126171958982013
+13 0.000121208075142931
+14 0.000125237056636252
+15 0.000121038327051792
+16 0.000125063001178205
+17 0.000126531202113256
+18 0.000127251536468975
+19 0.000128537765704095
+20 0.00012561515904963
+21 0.000123726174933836
+22 0.000129254476632923
+23 0.000123366611660458
+24 0.000126639337395318
+25 0.000125993901747279
+26 0.0001267656480195
+27 0.000123939506011084
+28 0.000125864826259203
+29 0.00012583628995344
+30 0.00012433786469046
+31 0.000125793187180534
+32 0.000126286191516556
+33 0.000124945538118482
+34 0.000124578713439405
+35 0.000124023194075562
+36 0.000124994869111106
+37 0.000125334874610417
+38 0.000126647340948693
+39 0.000123714838991873
+40 0.000121995486551896
+41 0.00012681563384831
+42 0.000125695471069776
+43 0.000126040104078129
+44 0.000124182144645602
+45 0.000124054757179692
+46 0.000126283732242882
+47 0.000121594304800965
+48 0.000126532511785626
+49 0.000122517696581781
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000140483418363146
+1 0.000121321951155551
+2 9.37396180233918e-05
+3 0.000117338997370098
+4 0.000137277980684303
+5 0.00011750434350688
+6 0.000125177873997018
+7 0.000120454249554314
+8 0.000120327553304378
+9 0.00013112869055476
+10 0.000118851035949774
+11 0.000139416239107959
+12 0.000117139730718918
+13 0.000159670933499001
+14 0.000122498706332408
+15 0.000163535383762792
+16 0.000125271544675343
+17 0.000115155686216895
+18 0.000106088191387244
+19 9.77237723418511e-05
+20 0.000120963100926019
+21 0.000139061390655115
+22 9.04913686099462e-05
+23 0.000143674886203371
+24 0.000109596097900067
+25 0.000119878932309803
+26 0.000112033150799107
+27 0.000141061973408796
+28 0.000119735886983108
+29 0.000120079981570598
+30 0.000129441294120625
+31 0.000116826478915755
+32 0.000112859081127681
+33 0.000124514554045163
+34 0.000130240980070084
+35 0.000132915665744804
+36 0.000127556137158535
+37 0.000122423778520897
+38 0.000114357637357898
+39 0.000137961280415766
+40 0.000153198488987982
+41 0.000109063890704419
+42 0.000119315242045559
+43 0.000115609451313503
+44 0.00013440589827951
+45 0.000135423746542074
+46 0.000113061527372338
+47 0.000156372188939713
+48 0.000112530098704156
+49 0.000150812993524596
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.0066644362636068075, Learning_Process.pdf b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.0066644362636068075, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..ddf57a384138404e2ca5589075741af6d41f8223
Binary files /dev/null and b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.0066644362636068075, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.0066644362636068075, Learning_Process.tex b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.0066644362636068075, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..5183f0d662d5821e93cb1616d24e5c4a89bcf6bc
--- /dev/null
+++ b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.0066644362636068075, Learning_Process.tex	
@@ -0,0 +1,256 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.68608287808581e-06, ymax=0.00144472489370626,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000135314316139556
+1 0.000847388990223408
+2 0.000666094070766121
+3 0.000827521609608084
+4 0.000190639941138215
+5 0.000104428363556508
+6 8.1935191701632e-05
+7 6.42042650724761e-05
+8 5.21507427038159e-05
+9 4.44732104369905e-05
+10 3.85268904210534e-05
+11 3.39769576385152e-05
+12 3.05480243696366e-05
+13 2.67958585027372e-05
+14 2.41845409618691e-05
+15 2.21916216105456e-05
+16 2.01761577045545e-05
+17 1.87227196875028e-05
+18 1.74336200871039e-05
+19 1.61142579599982e-05
+20 1.51331296365242e-05
+21 1.45747817441588e-05
+22 1.37649903990678e-05
+23 1.29034769997816e-05
+24 1.20791792141972e-05
+25 1.16131450340617e-05
+26 1.09835218609078e-05
+27 1.04715290945023e-05
+28 1.02436961242347e-05
+29 9.66099742072402e-06
+30 9.52275422605453e-06
+31 9.07762569113402e-06
+32 8.44070564198773e-06
+33 8.45294380269479e-06
+34 8.14409304439323e-06
+35 7.98137807578314e-06
+36 7.66448647482321e-06
+37 7.31975706003141e-06
+38 7.3444539339107e-06
+39 7.01682256476488e-06
+40 6.72365513310069e-06
+41 6.68379698254284e-06
+42 6.60747900838032e-06
+43 6.28925135970348e-06
+44 6.02903855906334e-06
+45 6.03628996032057e-06
+46 5.8061750678462e-06
+47 5.71573127672309e-06
+48 5.48531397726038e-06
+49 5.47336048839497e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000141461190651171
+1 0.00110131490509957
+2 9.63786515058018e-05
+3 0.000918967474717647
+4 0.000204448660952039
+5 0.000138011804665439
+6 7.23036355338991e-05
+7 6.07881920586806e-05
+8 5.59669533686247e-05
+9 4.60505070805084e-05
+10 3.9455288060708e-05
+11 3.2681393349776e-05
+12 2.57078936556354e-05
+13 2.80012882285519e-05
+14 2.61648274317849e-05
+15 2.30747955356492e-05
+16 2.38451593759237e-05
+17 2.11962887988193e-05
+18 1.86318793566898e-05
+19 1.88302146852948e-05
+20 1.68532333191251e-05
+21 1.56828300532652e-05
+22 1.29825784824789e-05
+23 1.35591808430036e-05
+24 1.33793919303571e-05
+25 1.20760678328224e-05
+26 1.16923574751127e-05
+27 1.14389522423153e-05
+28 9.07923731574556e-06
+29 1.09772099676775e-05
+30 7.85016345616896e-06
+31 8.87720852915663e-06
+32 1.02511266959482e-05
+33 7.47425974623184e-06
+34 7.71775376051664e-06
+35 7.41604890208691e-06
+36 6.52697053737938e-06
+37 7.70725091570057e-06
+38 5.5861528380774e-06
+39 6.30843715043738e-06
+40 6.88481304678135e-06
+41 5.67127199246897e-06
+42 4.83547046314925e-06
+43 5.85989937462728e-06
+44 6.79824461258249e-06
+45 5.78160916120396e-06
+46 6.0414072322601e-06
+47 5.59790487386636e-06
+48 6.50027095616679e-06
+49 5.55799078938435e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000133173103677109
+1 0.000138121264171787
+2 0.000137233640998602
+3 0.000139196505188011
+4 0.000132995221065357
+5 0.000133741428726353
+6 0.00013545248657465
+7 0.000133272536913864
+8 0.000136244358145632
+9 0.000134358269860968
+10 0.00013512147415895
+11 0.000136776550789364
+12 0.000136667134938762
+13 0.000137276205350645
+14 0.00013596352073364
+15 0.000136773698613979
+16 0.000133250097860582
+17 0.000135098103783093
+18 0.000135379494167864
+19 0.000135491776745766
+20 0.00013748713536188
+21 0.000135644804686308
+22 0.000136586430016905
+23 0.000135861540911719
+24 0.000130541011458263
+25 0.000131157736177556
+26 0.000136250731884502
+27 0.000133230234496295
+28 0.000135082809720188
+29 0.000136714603286237
+30 0.000131905617308803
+31 0.000136002650833689
+32 0.000135949900140986
+33 0.000137971903313883
+34 0.000131905966554768
+35 0.000135146270622499
+36 0.000134816174977459
+37 0.00013422331539914
+38 0.000137406808789819
+39 0.000137539085699245
+40 0.000133645356982015
+41 0.000131154374685138
+42 0.000135885798954405
+43 0.000134383764816448
+44 0.000136356728035025
+45 0.000132595421746373
+46 0.000133611058117822
+47 0.000134636531583965
+48 0.000136491406010464
+49 0.00013573927571997
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000159263247041963
+1 0.000115006674604956
+2 0.000122939076391049
+3 0.000106408137071412
+4 0.000161034797201864
+5 0.000152276523294859
+6 0.000139258336275816
+7 0.000158537659444846
+8 0.000131030406919308
+9 0.000148581166286021
+10 0.000141177195473574
+11 0.00012842622527387
+12 0.000130020125652663
+13 0.000124469312140718
+14 0.000134234724100679
+15 0.000125738399219699
+16 0.000158559225383215
+17 0.000141284894198179
+18 0.000138521019835025
+19 0.000137546638143249
+20 0.000121757620945573
+21 0.000137213370180689
+22 0.000129058535094373
+23 0.000132781118736602
+24 0.000185576485819183
+25 0.000176997113157995
+26 0.0001318958675256
+27 0.000158982831635512
+28 0.000142350952955894
+29 0.000126193539472297
+30 0.000173906053532846
+31 0.000134614092530683
+32 0.000133925044792704
+33 0.000117079027404543
+34 0.000171414110809565
+35 0.000141494601848535
+36 0.00014559124247171
+37 0.000147694954648614
+38 0.000118721647595521
+39 0.000124091442557983
+40 0.000155068977619521
+41 0.000179392154677771
+42 0.000134225861984305
+43 0.000149974293890409
+44 0.000131126944324933
+45 0.000163308563060127
+46 0.000154166802531108
+47 0.000145873666042462
+48 0.000129384992760606
+49 0.000135624082759023
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006952041177068557, Learning_Process.pdf b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006952041177068557, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..13c3330c64c424d02302f9a8ecb9626a8e7b7f58
Binary files /dev/null and b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006952041177068557, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006952041177068557, Learning_Process.tex b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006952041177068557, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..f689e3067e92c4fecdcd02a1fb764dc2827e5c29
--- /dev/null
+++ b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006952041177068557, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.39602885443932e-06, ymax=0.000239702666236612,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000129238876979798
+1 0.000106902713014279
+2 3.29677859554067e-05
+3 1.82955627678894e-05
+4 1.3440245311358e-05
+5 1.00769866548944e-05
+6 8.44116948428564e-06
+7 7.05480078977416e-06
+8 6.11199993727496e-06
+9 5.64235779165756e-06
+10 5.00275336889899e-06
+11 4.60033425042639e-06
+12 4.22765788243851e-06
+13 3.94541120840586e-06
+14 3.85348812415032e-06
+15 3.92197171095177e-06
+16 3.5313612443133e-06
+17 3.43034571415046e-06
+18 3.11635926664167e-06
+19 3.06886568068876e-06
+20 2.96982193503936e-06
+21 2.92323898065661e-06
+22 2.89369495476421e-06
+23 2.79648816103872e-06
+24 2.765916633507e-06
+25 2.53734856414667e-06
+26 2.61479067376058e-06
+27 2.53486905421596e-06
+28 2.44885268330108e-06
+29 2.45911064666871e-06
+30 2.36691789723409e-06
+31 2.36546361520595e-06
+32 2.38395955420856e-06
+33 2.3490060812037e-06
+34 2.30571890824649e-06
+35 2.28849626182637e-06
+36 2.22685821427149e-06
+37 2.29751344704709e-06
+38 2.25934718400822e-06
+39 2.18471791413322e-06
+40 2.18786044570152e-06
+41 2.18970626519877e-06
+42 2.16298872146581e-06
+43 2.02612204702746e-06
+44 2.07251309802814e-06
+45 2.06422078008472e-06
+46 2.03469562620739e-06
+47 1.95468510355568e-06
+48 1.98168118004105e-06
+49 1.98688439922989e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000128213199786842
+1 0.000100659322924912
+2 2.94419915007893e-05
+3 1.79883045348106e-05
+4 1.07521582322079e-05
+5 9.3458575065597e-06
+6 6.28709676675498e-06
+7 6.9189018176985e-06
+8 6.30839076620759e-06
+9 4.77313733426854e-06
+10 5.53136806047405e-06
+11 4.37872404290829e-06
+12 5.0805501814466e-06
+13 4.96392704008031e-06
+14 3.54153780790512e-06
+15 3.28613032252179e-06
+16 3.31011074194976e-06
+17 2.83242729892663e-06
+18 3.62976311407692e-06
+19 2.71000612883654e-06
+20 2.58222667071095e-06
+21 2.8662548174907e-06
+22 2.54161886914517e-06
+23 2.78384572993673e-06
+24 2.73862701760663e-06
+25 3.12754309561569e-06
+26 2.53655730375613e-06
+27 2.29350598601741e-06
+28 2.62329331235378e-06
+29 2.3834934381739e-06
+30 2.91880519398546e-06
+31 2.4177456907637e-06
+32 2.44689476858184e-06
+33 2.21571667680109e-06
+34 2.153149125661e-06
+35 1.93462278730294e-06
+36 2.24896916733996e-06
+37 1.98205975721066e-06
+38 1.83490669769526e-06
+39 2.06823074222484e-06
+40 1.76390517481195e-06
+41 1.90537070920982e-06
+42 1.89590286936436e-06
+43 2.13117596103984e-06
+44 1.80567553798028e-06
+45 2.10229768526915e-06
+46 2.040048229901e-06
+47 2.11677911465813e-06
+48 2.0248985492799e-06
+49 2.2485373847303e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000130786589579657
+1 0.000128662199131213
+2 0.000125353064504452
+3 0.00013340228179004
+4 0.000130351298139431
+5 0.000128413943457417
+6 0.000122154859127477
+7 0.000125155536807142
+8 0.000126318220281973
+9 0.000126153623568825
+10 0.000126995786558837
+11 0.000126246886793524
+12 0.000128057290567085
+13 0.000125523074530065
+14 0.00012508241343312
+15 0.000133853740408085
+16 0.000126473387354054
+17 0.000129666528664529
+18 0.000128779764054343
+19 0.000128797342767939
+20 0.000126832135720178
+21 0.000128269879496656
+22 0.000129504696815275
+23 0.000127180537674576
+24 0.000128086438053288
+25 0.000126747268950567
+26 0.000132940374896862
+27 0.000131710708956234
+28 0.000127576815430075
+29 0.000126725048176013
+30 0.000128319239593111
+31 0.000129483349155635
+32 0.000124725760542788
+33 0.000130487474962138
+34 0.000129377949633636
+35 0.00012711322051473
+36 0.00012887864431832
+37 0.000131070904899389
+38 0.000133024193928577
+39 0.000131191976834089
+40 0.000124166064779274
+41 0.000131887412862852
+42 0.00012535898713395
+43 0.000127369232359342
+44 0.000129857493448071
+45 0.000128928222693503
+46 0.000129714331706055
+47 0.000130600572447293
+48 0.000133179069962353
+49 0.00012590728874784
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000110991510155145
+1 0.000132346947793849
+2 0.000161077739903703
+3 0.000100110475614201
+4 0.000115941918920726
+5 0.000133221139549278
+6 0.000189710786798969
+7 0.00016312618390657
+8 0.000151294210809283
+9 0.00015455340326298
+10 0.000147765924339183
+11 0.000150482665048912
+12 0.000135881477035582
+13 0.000161014075274579
+14 0.000161429314175621
+15 8.37486004456878e-05
+16 0.000149934203363955
+17 0.000123156874906272
+18 0.000129466221551411
+19 0.000130384287331253
+20 0.000146361635415815
+21 0.000133118635858409
+22 0.00012506426719483
+23 0.000146849648444913
+24 0.00015843209985178
+25 0.000146437334478833
+26 9.46649888646789e-05
+27 0.000104965198261198
+28 0.000143018303788267
+29 0.000149097395478748
+30 0.000130060885567218
+31 0.0001216795280925
+32 0.000164111494086683
+33 0.000115715738502331
+34 0.000126789702335373
+35 0.000147559825563803
+36 0.000129579493659548
+37 0.00010647364979377
+38 0.000116220202471595
+39 0.000106087187305093
+40 0.000168492711964063
+41 0.00010612574260449
+42 0.000159156086738221
+43 0.000142626042361371
+44 0.000122306882985868
+45 0.000130686254124157
+46 0.000120619894005358
+47 0.000112015266495291
+48 9.17321594897658e-05
+49 0.000153740096720867
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006960739397022517, Learning_Process.pdf b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006960739397022517, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..b89dc370ef206f0a79e73f5b319080d4eedefadb
Binary files /dev/null and b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006960739397022517, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006960739397022517, Learning_Process.tex b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006960739397022517, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..94df9fc363c8417d1fa925bcb78544f6efa374e0
--- /dev/null
+++ b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.006960739397022517, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.28834387913584e-06, ymax=0.00021705355162935,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000125867052702233
+1 0.00010330888471799
+2 3.15476099785883e-05
+3 1.59654355229577e-05
+4 1.15161583380541e-05
+5 8.9915356511483e-06
+6 7.67580604588147e-06
+7 6.38180654277676e-06
+8 5.68287214264274e-06
+9 4.90097636429709e-06
+10 4.57137866760604e-06
+11 4.26729729952058e-06
+12 4.03046942665242e-06
+13 3.74282763004885e-06
+14 3.46394904227054e-06
+15 3.27724978888e-06
+16 3.23342987940123e-06
+17 3.15384613713832e-06
+18 3.00986380352697e-06
+19 2.87787997876876e-06
+20 2.84972657027538e-06
+21 2.77164735962288e-06
+22 2.66219626610109e-06
+23 2.60664023699064e-06
+24 2.57877036347054e-06
+25 2.5381852992723e-06
+26 2.43964836954547e-06
+27 2.42531632466125e-06
+28 2.42160240304656e-06
+29 2.38991810874722e-06
+30 2.34648450714303e-06
+31 2.29873671742098e-06
+32 2.25495705308276e-06
+33 2.17875526686839e-06
+34 2.21670802602603e-06
+35 2.15386694435438e-06
+36 2.14155920730263e-06
+37 2.12037116398278e-06
+38 2.13539919968753e-06
+39 2.15616091736592e-06
+40 2.0782763385796e-06
+41 2.45131968767964e-06
+42 2.03150443667255e-06
+43 2.01327134163876e-06
+44 2.07423204301449e-06
+45 1.92657989828149e-06
+46 1.95668121705239e-06
+47 1.9110273115075e-06
+48 1.98719521904422e-06
+49 1.98667885342729e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000165503573953174
+1 9.28336012293585e-05
+2 3.11435978801455e-05
+3 2.03201107069617e-05
+4 1.07042951640324e-05
+5 1.06402640085435e-05
+6 6.96787174092606e-06
+7 6.08176151217776e-06
+8 4.68473899672972e-06
+9 5.64075025977218e-06
+10 4.41555175711983e-06
+11 4.1679941205075e-06
+12 3.46146225638222e-06
+13 3.65857681572379e-06
+14 3.74484625353944e-06
+15 4.04909451390267e-06
+16 3.12094789478579e-06
+17 2.79345431408728e-06
+18 2.93464086098538e-06
+19 3.03611614071997e-06
+20 2.89260674435354e-06
+21 2.60220440395642e-06
+22 2.98369968732004e-06
+23 2.74816125056532e-06
+24 2.29545435104228e-06
+25 2.13898488254927e-06
+26 2.42652436099888e-06
+27 2.2718174932379e-06
+28 2.27423811338667e-06
+29 2.45253181674343e-06
+30 2.29620445679757e-06
+31 2.3081474864739e-06
+32 2.25980693357997e-06
+33 2.41930956690339e-06
+34 1.86720751571556e-06
+35 2.26000770453538e-06
+36 2.31167223319062e-06
+37 1.77553579305822e-06
+38 1.87667956197402e-06
+39 1.95107827494212e-06
+40 2.36387904806179e-06
+41 1.62643959811248e-06
+42 2.10957205126761e-06
+43 1.89980551112967e-06
+44 1.87063903922535e-06
+45 2.09052109312324e-06
+46 1.98620432456664e-06
+47 2.1605203528452e-06
+48 2.01719717551896e-06
+49 1.87464900136547e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000128083062008955
+1 0.000132096320157871
+2 0.000128262254293077
+3 0.000132517961901613
+4 0.000128580533782952
+5 0.000129267267766409
+6 0.000131383931147866
+7 0.000127039980725385
+8 0.000130395608721301
+9 0.000128782965475693
+10 0.000128992469399236
+11 0.000129294290672988
+12 0.00012909434735775
+13 0.000132052460685372
+14 0.000130753818666562
+15 0.000130573243950494
+16 0.000130408472614363
+17 0.000132320637931116
+18 0.000132132539874874
+19 0.000131727661937475
+20 0.000130177068058401
+21 0.000129868334624916
+22 0.000129268242744729
+23 0.000125399368698709
+24 0.000130176907987334
+25 0.000129212901811115
+26 0.000126422077300958
+27 0.00013014322030358
+28 0.000126242055557668
+29 0.000125266305985861
+30 0.000132398621644825
+31 0.000127037012134679
+32 0.000130620377603918
+33 0.000126915299915709
+34 0.000127399049233645
+35 0.000130715721752495
+36 0.000131754670292139
+37 0.000127587714814581
+38 0.000132044558995403
+39 0.00013001479965169
+40 0.000128639978356659
+41 0.000130826389067806
+42 0.000127638530102558
+43 0.000129120133351535
+44 0.000132810353534296
+45 0.00012869606143795
+46 0.00012922115274705
+47 0.000131385968415998
+48 0.000130995555082336
+49 0.000133314752019942
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000144064557389356
+1 0.000110474175016861
+2 0.000144770412589423
+3 0.000106666120700538
+4 0.000142055709147826
+5 0.000135152746224776
+6 0.000117290139314719
+7 0.000155122266733088
+8 0.000124847792903893
+9 0.000140512551297434
+10 0.000136970120365731
+11 0.000134176327264868
+12 0.000135205060360022
+13 0.000110091947135516
+14 0.000122750527225435
+15 0.000125903694424778
+16 0.000121473101899028
+17 0.000108199681562837
+18 0.00011377932241885
+19 0.000111486260720994
+20 0.00012829908519052
+21 0.000128201878396794
+22 0.000136208691401407
+23 0.000170284052728675
+24 0.000125461636343971
+25 0.000133969573653303
+26 0.000160856390721165
+27 0.000126782630104572
+28 0.000160819938173518
+29 0.000171933599631302
+30 0.000107061248854734
+31 0.000155294663272798
+32 0.000119871634524316
+33 0.000156737311044708
+34 0.000154247201862745
+35 0.000120834425615612
+36 0.000113121364847757
+37 0.000150115272845142
+38 0.000111288907646667
+39 0.000126982093206607
+40 0.000138554998557083
+41 0.000115041402750649
+42 0.000148071587318555
+43 0.000136199611006305
+44 0.000102412530395668
+45 0.00014214422844816
+46 0.000137027149321511
+47 0.00011731382983271
+48 0.000119404074212071
+49 9.94010115391575e-05
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.0069986256900484226, Learning_Process.pdf b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.0069986256900484226, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..7195c6d075b21468579d1fd3351782620d3c8547
Binary files /dev/null and b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.0069986256900484226, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.0069986256900484226, Learning_Process.tex b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.0069986256900484226, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..37d93b3cc045698fd95416278946fbfc01104c6c
--- /dev/null
+++ b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.0069986256900484226, Learning_Process.tex	
@@ -0,0 +1,256 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.52856598811911e-06, ymax=0.00320448153356523,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000122611309052445
+1 0.000261250301264226
+2 0.00235123466700315
+3 0.00026196803082712
+4 0.000129154403111897
+5 9.15501295821741e-05
+6 7.06769715179689e-05
+7 5.8389861806063e-05
+8 5.01289759995416e-05
+9 4.23595593019854e-05
+10 3.76262541976757e-05
+11 3.24354004987981e-05
+12 2.96571488433983e-05
+13 2.73126734100515e-05
+14 2.46396084548905e-05
+15 2.1806379663758e-05
+16 2.06611312023597e-05
+17 1.9076785974903e-05
+18 1.79410963028204e-05
+19 1.65677374752704e-05
+20 1.5760710084578e-05
+21 1.4905893294781e-05
+22 1.39157009471091e-05
+23 1.27711882669246e-05
+24 1.24239159049466e-05
+25 1.18313182611018e-05
+26 1.13705100375228e-05
+27 1.10485852928832e-05
+28 1.04364498838549e-05
+29 1.01208634077921e-05
+30 9.50861704041017e-06
+31 9.48479464568663e-06
+32 8.74573652254185e-06
+33 8.72268356033601e-06
+34 8.56954466144089e-06
+35 8.20599052531179e-06
+36 7.80033406044822e-06
+37 7.60818329581525e-06
+38 7.49788341636304e-06
+39 6.99378006174811e-06
+40 6.82846484778565e-06
+41 6.69215478410479e-06
+42 6.52122434985358e-06
+43 6.40787993688718e-06
+44 6.11232053415733e-06
+45 6.11403993389104e-06
+46 5.9447847888805e-06
+47 5.86974238103721e-06
+48 5.68065479455981e-06
+49 5.93044114793884e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000158307942911051
+1 0.000162458542035893
+2 0.00205359281972051
+3 0.00029559270478785
+4 0.000131674882140942
+5 8.63296663737856e-05
+6 7.42190386517905e-05
+7 5.6861750636017e-05
+8 4.01707548007835e-05
+9 4.23367273469921e-05
+10 3.34715805365704e-05
+11 3.86694446206093e-05
+12 2.91668020508951e-05
+13 2.19053617911413e-05
+14 2.13459934457205e-05
+15 2.6193878511549e-05
+16 1.91628678294364e-05
+17 1.94178901438136e-05
+18 1.65127039508661e-05
+19 1.70719267771346e-05
+20 1.33250086946646e-05
+21 1.24231182780932e-05
+22 1.26132654258981e-05
+23 1.55239340529079e-05
+24 1.19728083518567e-05
+25 1.34872143462417e-05
+26 1.14196600407013e-05
+27 9.15700275072595e-06
+28 1.07699697764474e-05
+29 8.6962618297548e-06
+30 9.87682142294943e-06
+31 9.33163664740277e-06
+32 1.02594776762999e-05
+33 8.0908794188872e-06
+34 7.14391080691712e-06
+35 6.86407020111801e-06
+36 7.94510833657114e-06
+37 7.02900888427394e-06
+38 6.14655027675326e-06
+39 7.84528310759924e-06
+40 7.45013994674082e-06
+41 7.06529772287467e-06
+42 6.81265964885824e-06
+43 5.99195846007206e-06
+44 6.98661597198225e-06
+45 5.97252756051603e-06
+46 5.44792692380724e-06
+47 4.80905828226241e-06
+48 5.29606631971546e-06
+49 5.07077083966578e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000128047046018764
+1 0.000125653692521155
+2 0.000125288672279567
+3 0.000126243976410478
+4 0.000124885482364334
+5 0.000126892395201139
+6 0.000123932521091774
+7 0.000126729122712277
+8 0.000125379257951863
+9 0.000124031546874903
+10 0.000126166924019344
+11 0.000127628009067848
+12 0.000126305516459979
+13 0.000123720557894558
+14 0.00012654323654715
+15 0.000128684434457682
+16 0.000125275677419268
+17 0.000123586927657016
+18 0.000127586463349871
+19 0.000125961363664828
+20 0.000125358361401595
+21 0.000123948353575543
+22 0.000126620099763386
+23 0.000128930187202059
+24 0.000127422623336315
+25 0.000124230369692668
+26 0.000123769597848877
+27 0.000127683248138055
+28 0.000126222817925736
+29 0.000128482221043669
+30 0.000124895828776062
+31 0.000127080318634398
+32 0.000128903775475919
+33 0.000126369384815916
+34 0.000127019418869168
+35 0.000127475563203916
+36 0.000124308091471903
+37 0.000125112434034236
+38 0.000125708029372618
+39 0.000129321037093177
+40 0.000125302685773931
+41 0.000123804071336053
+42 0.000124029771541245
+43 0.00012433688971214
+44 0.000123361693113111
+45 0.000125955353723839
+46 0.000125106773339212
+47 0.000124015641631559
+48 0.000124041151138954
+49 0.000127042643725872
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.0001074351821444
+1 0.000127876875922084
+2 0.000131456181406975
+3 0.000122611454571597
+4 0.000137191527755931
+5 0.000118776224553585
+6 0.0001479613565607
+7 0.000119878000987228
+8 0.000133833847939968
+9 0.000144516961881891
+10 0.000126398430438712
+11 0.000115244205517229
+12 0.000124914178741165
+13 0.000147729137097485
+14 0.000121583092550281
+15 0.000102296522527467
+16 0.00013390438107308
+17 0.000148172141052783
+18 0.000114182199467905
+19 0.000127084626001306
+20 0.000132110508275218
+21 0.000145609214087017
+22 0.000122355297207832
+23 9.94934598566033e-05
+24 0.000115046939754393
+25 0.000142831326229498
+26 0.000145247293403372
+27 0.000112011963210534
+28 0.000124835903989151
+29 0.000104529426607769
+30 0.000139253039378673
+31 0.000116518698632717
+32 0.000103021309769247
+33 0.00012388730829116
+34 0.000116671311843675
+35 0.000113758665975183
+36 0.000142110497108661
+37 0.000135994559968822
+38 0.000129708583699539
+39 9.83023201115429e-05
+40 0.000133089633891359
+41 0.000146456106449477
+42 0.000146152553497814
+43 0.000142769174999557
+44 0.000150742896948941
+45 0.000128932108054869
+46 0.000139562151161954
+47 0.000146874677739106
+48 0.000143338256748393
+49 0.000116624076326843
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.007116958706429896, Learning_Process.pdf b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.007116958706429896, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..8cacdf2f15cdb47aa7d41fc2f508f9825e8b4966
Binary files /dev/null and b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.007116958706429896, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.007116958706429896, Learning_Process.tex b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.007116958706429896, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..159c767676c12b71a6ca6f1af560545fb189ed92
--- /dev/null
+++ b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.007116958706429896, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.88558775961617e-06, ymax=0.000429652118570408,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00015559587336611
+1 0.00033569906372577
+2 0.00017588991613593
+3 6.87527353875339e-05
+4 4.44720026280265e-05
+5 3.19117643812206e-05
+6 2.59039261436556e-05
+7 2.16875232581515e-05
+8 1.83295196620747e-05
+9 1.5611010894645e-05
+10 1.3689409570361e-05
+11 1.24796697491547e-05
+12 1.12190973595716e-05
+13 1.03525144368177e-05
+14 9.49803688854445e-06
+15 8.89185412233928e-06
+16 8.10656456451397e-06
+17 7.86263080954086e-06
+18 7.25777636034763e-06
+19 6.95764083502581e-06
+20 6.63044602333684e-06
+21 6.40036432741908e-06
+22 5.80224013901898e-06
+23 5.61477600058424e-06
+24 5.36462630407186e-06
+25 5.22752907272661e-06
+26 5.08301945956191e-06
+27 4.85484179080231e-06
+28 4.66015762867755e-06
+29 4.63251626570127e-06
+30 4.48281252829474e-06
+31 4.36037817053148e-06
+32 4.1861771933327e-06
+33 4.13919224229176e-06
+34 3.94908465750632e-06
+35 3.86794135920354e-06
+36 3.83103724743705e-06
+37 3.80186202164623e-06
+38 3.66180938726757e-06
+39 3.55880683855503e-06
+40 3.44585964739963e-06
+41 3.40877318194543e-06
+42 3.3854146295198e-06
+43 3.36859875460505e-06
+44 3.27025145452353e-06
+45 3.25065730066854e-06
+46 3.13611280944315e-06
+47 3.17825129059202e-06
+48 3.02198759527528e-06
+49 3.01005502478802e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000135369817144237
+1 0.00015748395526316
+2 0.000188791585969739
+3 5.65368500247132e-05
+4 4.38316710642539e-05
+5 4.10433276556432e-05
+6 2.90001280518482e-05
+7 1.83349093276775e-05
+8 1.69644190464169e-05
+9 1.72032687260071e-05
+10 1.61725020006998e-05
+11 1.25408405438066e-05
+12 1.24203234008746e-05
+13 1.0824657692865e-05
+14 9.85104907158529e-06
+15 8.34306320030009e-06
+16 9.31242539081722e-06
+17 7.0492810664291e-06
+18 8.00650741439313e-06
+19 6.73300110065611e-06
+20 5.84881263421266e-06
+21 4.93374000143376e-06
+22 7.46400337447994e-06
+23 6.56411521049449e-06
+24 6.53494589641923e-06
+25 5.92638707530568e-06
+26 5.25259974892833e-06
+27 5.49310789210722e-06
+28 5.33598813490244e-06
+29 4.41188331024023e-06
+30 4.28162684329436e-06
+31 3.83549559046514e-06
+32 4.1381372284377e-06
+33 3.7859940675844e-06
+34 4.5218030209071e-06
+35 4.17323417423177e-06
+36 4.23559777118498e-06
+37 3.33058846990752e-06
+38 3.73316288460046e-06
+39 3.80622986995149e-06
+40 4.0776817513688e-06
+41 3.54211192643561e-06
+42 3.40135079568427e-06
+43 2.69743031822145e-06
+44 3.22883283843112e-06
+45 3.16027376356942e-06
+46 3.22967025567777e-06
+47 2.41331258621358e-06
+48 3.10526661451149e-06
+49 3.00143301501521e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000151414264109917
+1 0.000151805288624018
+2 0.000156819703988731
+3 0.000152896100189537
+4 0.000154710985952988
+5 0.000154543769895099
+6 0.000154308756464161
+7 0.000150251391460188
+8 0.000150302133988589
+9 0.00015527757932432
+10 0.000152627137140371
+11 0.000155519126565196
+12 0.000154079432832077
+13 0.000155048197484575
+14 0.00015237761544995
+15 0.000158229871885851
+16 0.000152966895257123
+17 0.00015105158672668
+18 0.000156109425006434
+19 0.000153417538967915
+20 0.000156829744810238
+21 0.000151994812767953
+22 0.000155492758494802
+23 0.000151938991621137
+24 0.000154053443111479
+25 0.000158489958266728
+26 0.000153797052917071
+27 0.000155151166836731
+28 0.000153034154209308
+29 0.000152982698637061
+30 0.000151754153193906
+31 0.00015498828724958
+32 0.000156583075295202
+33 0.000149086903547868
+34 0.000155406742123887
+35 0.000155852190800942
+36 0.000151431406266056
+37 0.000152056032675318
+38 0.00015445621102117
+39 0.000149819548823871
+40 0.000153265267726965
+41 0.000152681517647579
+42 0.000151792977703735
+43 0.000152107182657346
+44 0.000153460496221669
+45 0.000154232751810923
+46 0.000156965965288691
+47 0.000154850538820028
+48 0.000152920911205001
+49 0.000155990055645816
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000170238854479976
+1 0.000168698403285816
+2 0.000124836908071302
+3 0.000156960537424311
+4 0.000141500262543559
+5 0.000144769001053646
+6 0.000144784920848906
+7 0.000180757851921953
+8 0.000182842486537993
+9 0.00013716881221626
+10 0.000169906052178703
+11 0.000135435795527883
+12 0.000147511120303534
+13 0.000139299532747827
+14 0.000162173368153162
+15 0.000109352076833602
+16 0.000157463233335875
+17 0.000175366454641335
+18 0.000127616978716105
+19 0.000151343163452111
+20 0.000122464218293317
+21 0.000167452832101844
+22 0.000134823261760175
+23 0.000167695412528701
+24 0.000150285079143941
+25 0.00010707068577176
+26 0.000149018247611821
+27 0.000138853094540536
+28 0.000156099791638553
+29 0.000157261005369946
+30 0.000170300758327357
+31 0.000138108327519149
+32 0.000123728343169205
+33 0.000191430124687031
+34 0.00013660684635397
+35 0.000129854830447584
+36 0.000170273924595676
+37 0.000163302538567223
+38 0.000144030011142604
+39 0.000185611264896579
+40 0.000153776258230209
+41 0.000158221067977138
+42 0.000167325371876359
+43 0.000162625277880579
+44 0.000153456654516049
+45 0.000148184524732642
+46 0.000119812881166581
+47 0.000142074321047403
+48 0.000158065973664634
+49 0.000132008208311163
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.007153250380658371, Learning_Process.pdf b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.007153250380658371, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..b8f9ec8089bd4712ba8cc3c34826196360e08991
Binary files /dev/null and b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.007153250380658371, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.007153250380658371, Learning_Process.tex b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.007153250380658371, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..5027650b16c818b5698c6493899fba4e1bd38aec
--- /dev/null
+++ b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.007153250380658371, Learning_Process.tex	
@@ -0,0 +1,256 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=5.601520362605e-06, ymax=0.00191363679716452,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000133337933220901
+1 0.00114032707642764
+2 0.000951805326621979
+3 0.000248798314714804
+4 0.000162964759510942
+5 0.000121551420306787
+6 9.85351725830697e-05
+7 8.17672844277695e-05
+8 6.86326820868999e-05
+9 6.01745596213732e-05
+10 5.16555373906158e-05
+11 4.73999753012322e-05
+12 4.18501440435648e-05
+13 3.79737684852444e-05
+14 3.37967030645814e-05
+15 3.12239135382697e-05
+16 2.90318730549188e-05
+17 2.69757856585784e-05
+18 2.55166451097466e-05
+19 2.35402694670483e-05
+20 2.2098678527982e-05
+21 2.1183706849115e-05
+22 1.98689867829671e-05
+23 1.90464452316519e-05
+24 1.80113856913522e-05
+25 1.71200790646253e-05
+26 1.64306820806814e-05
+27 1.58353250299115e-05
+28 1.44694258779055e-05
+29 1.43932948049041e-05
+30 1.38425248223939e-05
+31 1.33505236590281e-05
+32 1.26030154206092e-05
+33 1.26671802718192e-05
+34 1.19506603368791e-05
+35 1.14835220301757e-05
+36 1.15992797873332e-05
+37 1.11402787297266e-05
+38 1.07587093225447e-05
+39 1.04599675978534e-05
+40 9.94747733784607e-06
+41 9.74222894001286e-06
+42 9.6602188932593e-06
+43 9.38676294026664e-06
+44 9.15904274734203e-06
+45 9.10419475985691e-06
+46 8.74091529112775e-06
+47 8.57412396726431e-06
+48 8.29741838970222e-06
+49 1.22744886539294e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000174701082869433
+1 0.000851294316817075
+2 0.00102678930852562
+3 0.000204437397769652
+4 0.000185991520993412
+5 0.000141410884680226
+6 9.43358245422132e-05
+7 8.99217193364166e-05
+8 6.80131633998826e-05
+9 5.07041222590487e-05
+10 5.76087040826678e-05
+11 3.7005669582868e-05
+12 3.93773807445541e-05
+13 3.40758815582376e-05
+14 3.72892063751351e-05
+15 3.71096830349416e-05
+16 3.03658725897549e-05
+17 2.95583504339447e-05
+18 2.25525382120395e-05
+19 2.39435175899416e-05
+20 2.34930685110157e-05
+21 1.91065973922377e-05
+22 2.02622886718018e-05
+23 1.87478708539857e-05
+24 2.12710274354322e-05
+25 1.63473396241898e-05
+26 1.48827984958189e-05
+27 1.38722607516684e-05
+28 1.79303460754454e-05
+29 1.36422695504734e-05
+30 1.32838786157663e-05
+31 1.26071336126188e-05
+32 1.42453745866078e-05
+33 1.07463583844947e-05
+34 1.37949964482686e-05
+35 1.24964417409501e-05
+36 8.39352560433326e-06
+37 1.02580161183141e-05
+38 1.01516916402034e-05
+39 1.09846223494969e-05
+40 9.96968992694747e-06
+41 1.00474499049596e-05
+42 8.07276228442788e-06
+43 8.53782603371656e-06
+44 8.1377174865338e-06
+45 8.10340770840412e-06
+46 7.81315884523792e-06
+47 7.36249057808891e-06
+48 8.7453026935691e-06
+49 7.30243073121528e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000137108567287214
+1 0.000139379189931788
+2 0.000138031275128014
+3 0.00013746133481618
+4 0.000137043607537635
+5 0.000134835005155765
+6 0.000136995324282907
+7 0.000135325230075978
+8 0.000137124050525017
+9 0.000137782873935066
+10 0.00013869657414034
+11 0.000135530630359426
+12 0.000137108014314435
+13 0.00013748902711086
+14 0.000137553084641695
+15 0.000139235577080399
+16 0.000135942711494863
+17 0.000139289026265033
+18 0.000136408751131967
+19 0.000138469462399371
+20 0.00013865387882106
+21 0.00014089813339524
+22 0.000134301139041781
+23 0.000138440009322949
+24 0.000139457653858699
+25 0.000138117407914251
+26 0.000140096643008292
+27 0.00013826870417688
+28 0.000140851509058848
+29 0.000141678377985954
+30 0.000136786315124482
+31 0.000139211071655154
+32 0.000138169081765227
+33 0.000140209871460684
+34 0.000137926079332829
+35 0.00146790512371808
+36 0.000141898795845918
+37 0.000137880677357316
+38 0.000142987846629694
+39 0.000135806592879817
+40 0.000139389376272447
+41 0.000138464572955854
+42 0.000137810682645068
+43 0.000138647563289851
+44 0.000136132308398373
+45 0.000137391267344356
+46 0.000136695249238983
+47 0.000138708433951251
+48 0.000134509202325717
+49 0.000138770526973531
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000142763296025805
+1 0.000139921772642992
+2 0.000127986277220771
+3 0.000133696623379365
+4 0.000144497957080603
+5 0.000164908036822453
+6 0.000146962964208797
+7 0.000156606212840416
+8 0.000146725797094405
+9 0.000133547626319341
+10 0.000127806051750667
+11 0.000158451352035627
+12 0.000136957227368839
+13 0.000139496827614494
+14 0.000140922260470688
+15 0.000123565725516528
+16 0.000150891952216625
+17 0.000120304131996818
+18 0.000150568419485353
+19 0.000129060397739522
+20 0.000126832310343161
+21 0.000111334047687706
+22 0.000169883103808388
+23 0.000134228655952029
+24 0.000126107595860958
+25 0.00014944993017707
+26 0.000114073314762209
+27 0.000129800144350156
+28 0.000109569511550944
+29 0.000112505884317216
+30 0.000146383812534623
+31 0.000124060403322801
+32 0.000138786548632197
+33 0.000113670299469959
+34 0.00013185094576329
+35 0.000119975993584376
+36 0.000100598685094155
+37 0.000133802663185634
+38 9.36878423090093e-05
+39 0.000149881889228709
+40 0.000122129320516251
+41 0.000126985585666262
+42 0.000132704270072281
+43 0.000125206977827474
+44 0.000157419563038275
+45 0.000132447414216585
+46 0.000139451236464083
+47 0.00012261513620615
+48 0.000162998723681085
+49 0.000123898251331411
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.007244572110883856, Learning_Process.pdf b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.007244572110883856, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..1b68a908442f61a6836c3b4df36492ddda44d201
Binary files /dev/null and b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.007244572110883856, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.007244572110883856, Learning_Process.tex b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.007244572110883856, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..16c647223f5458394399bd9e1301beed3f4d95f2
--- /dev/null
+++ b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.007244572110883856, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.20408459613769e-06, ymax=0.000496435896657191,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000132098692120053
+1 0.000388083542929962
+2 0.000134430971229449
+3 8.20711356936954e-05
+4 5.97818288952112e-05
+5 4.77190551464446e-05
+6 3.78598160750698e-05
+7 3.0190607503755e-05
+8 2.79453870462021e-05
+9 2.32086695177713e-05
+10 2.15396084968233e-05
+11 1.95355842151912e-05
+12 1.71714491443709e-05
+13 1.60067156684818e-05
+14 1.46996890180162e-05
+15 1.367128243146e-05
+16 1.28476594909444e-05
+17 1.14588974611252e-05
+18 1.10913533717394e-05
+19 1.04556311271153e-05
+20 9.79665765044047e-06
+21 9.21273385756649e-06
+22 8.74687975738198e-06
+23 8.27362964628264e-06
+24 7.76001434132922e-06
+25 7.55021801523981e-06
+26 7.1163790380524e-06
+27 6.915797257534e-06
+28 6.68679422233254e-06
+29 6.48412151349476e-06
+30 6.11771474723355e-06
+31 6.01748979534023e-06
+32 5.70068004890345e-06
+33 5.59148475076654e-06
+34 5.26832172909053e-06
+35 5.23182052347693e-06
+36 5.25046061738976e-06
+37 5.08022685608012e-06
+38 4.81848792333039e-06
+39 4.70112354378216e-06
+40 4.70416034659138e-06
+41 4.45004252469516e-06
+42 4.51575306215091e-06
+43 4.49907201982569e-06
+44 4.5083884288033e-06
+45 4.29363717557862e-06
+46 4.00216276830179e-06
+47 4.00394810640137e-06
+48 3.89179012927343e-06
+49 3.97763778892113e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000150030085933395
+1 0.000378524186089635
+2 0.000156868176418357
+3 8.20070199551992e-05
+4 5.83222790737636e-05
+5 3.65299310942646e-05
+6 4.10368957091123e-05
+7 4.65110279037617e-05
+8 2.7635504011414e-05
+9 3.22158120980021e-05
+10 2.19998746615602e-05
+11 1.82850235432852e-05
+12 1.97948265849845e-05
+13 1.75579407368787e-05
+14 1.55181733134668e-05
+15 1.28688725453685e-05
+16 1.04335113064735e-05
+17 1.43624465636094e-05
+18 1.05386616269243e-05
+19 9.29936413740506e-06
+20 9.27661312744021e-06
+21 9.33313367568189e-06
+22 8.40431039250689e-06
+23 7.94497009337647e-06
+24 8.89388957148185e-06
+25 7.0142946242413e-06
+26 7.91833645052975e-06
+27 6.89141188559006e-06
+28 6.48250124868355e-06
+29 5.67561573916464e-06
+30 6.65567495161667e-06
+31 5.76502088733832e-06
+32 6.19028651271947e-06
+33 5.55731821805239e-06
+34 1.02785843409947e-05
+35 5.7347438087163e-06
+36 4.24284871769487e-06
+37 4.55418648925843e-06
+38 5.49533706362126e-06
+39 5.5161567615869e-06
+40 4.26727092417423e-06
+41 5.39274969924008e-06
+42 3.82304051527171e-06
+43 3.56871350959409e-06
+44 4.01651141146431e-06
+45 3.3487976907054e-06
+46 4.66868823423283e-06
+47 3.9775463847036e-06
+48 4.28252633355442e-06
+49 2.81946176983183e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000133497640490532
+1 0.000130097731016576
+2 0.000132844652398489
+3 0.000134156027343124
+4 0.000137034832732752
+5 0.00013374540139921
+6 0.000135575552121736
+7 0.000137627677759156
+8 0.000133869587443769
+9 0.000132400018628687
+10 0.000131463762954809
+11 0.000133383713546209
+12 0.000136358794406988
+13 0.000132630812004209
+14 0.00013693947403226
+15 0.000134697678731754
+16 0.000132947287056595
+17 0.000135426889755763
+18 0.000133664914756082
+19 0.000137343813548796
+20 0.000133870024001226
+21 0.000133185356389731
+22 0.000133997280499898
+23 0.000135839378344826
+24 0.000134011774207465
+25 0.000135923299239948
+26 0.000130497384816408
+27 0.000136062197270803
+28 0.000128549610963091
+29 0.000137034992803819
+30 0.000135003399918787
+31 0.000134579502628185
+32 0.000135340029373765
+33 0.000135197304189205
+34 0.000131809239974245
+35 0.000136124799610116
+36 0.000132320696138777
+37 0.000131652675918303
+38 0.000130616754177026
+39 0.000132498724269681
+40 0.000132767672766931
+41 0.000136312621179968
+42 0.000132524364744313
+43 0.000137770781293511
+44 0.000131061766296625
+45 0.000133448309497908
+46 0.000137778464704752
+47 0.000132308996398933
+48 0.000136043920065276
+49 0.000129577456391416
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000134047644678503
+1 0.000166776779224165
+2 0.00014275147987064
+3 0.00013212114572525
+4 0.000103863494587131
+5 0.000133568013552576
+6 0.000117505973321386
+7 9.86668965197168e-05
+8 0.000134663336211815
+9 0.000147013663081452
+10 0.000157257672981359
+11 0.000132326211314648
+12 0.000111618406663183
+13 0.000146336227771826
+14 0.000107509251392912
+15 0.000124792539281771
+16 0.000142350225360133
+17 0.000123137258924544
+18 0.000133736597490497
+19 0.000102656544186175
+20 0.000141443786560558
+21 0.000143405413837172
+22 0.000133610665216111
+23 0.000117876879812684
+24 0.000133550609461963
+25 0.000115906426799484
+26 0.000164601879077964
+27 0.000112709451059345
+28 0.000174094151589088
+29 0.000101744422863703
+30 0.000121682816825341
+31 0.0001287780032726
+32 0.000115268041554373
+33 0.000122320809168741
+34 0.000150748339365236
+35 0.000110288674477488
+36 0.000145862184581347
+37 0.000151862725033425
+38 0.000162098920554854
+39 0.000144900273880921
+40 0.000143614583066665
+41 0.00011217196151847
+42 0.000144694480695762
+43 0.000106716368463822
+44 0.000160016497829929
+45 0.000138511022669263
+46 9.63607380981557e-05
+47 0.000145770725794137
+48 0.000117164490802679
+49 0.00017201695300173
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.007545490776910161, Learning_Process.pdf b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.007545490776910161, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..2de5c91c9714086e4a0ab566f895eca3295555bf
Binary files /dev/null and b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.007545490776910161, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.007545490776910161, Learning_Process.tex b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.007545490776910161, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..4b4741be779b607218d15be3f639fbd08488f8e3
--- /dev/null
+++ b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.007545490776910161, Learning_Process.tex	
@@ -0,0 +1,256 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=5.67626652583202e-06, ymax=0.00372017258872776,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000124962243717164
+1 0.000441349460743368
+2 0.00201525562442839
+3 0.000306603818899021
+4 0.000170489889569581
+5 0.000125364123960026
+6 0.000103106518508866
+7 8.54290774441324e-05
+8 7.19400268280879e-05
+9 6.20797582087107e-05
+10 5.4881427786313e-05
+11 4.79015106975567e-05
+12 4.2752693843795e-05
+13 4.04083657485899e-05
+14 3.6480683775153e-05
+15 3.33214047714137e-05
+16 3.01019135804381e-05
+17 2.92989461740945e-05
+18 2.65466514974833e-05
+19 2.50192388193682e-05
+20 2.36336709349416e-05
+21 2.17454853554955e-05
+22 2.10735761356773e-05
+23 1.99147198145511e-05
+24 1.90225982805714e-05
+25 1.83509710041108e-05
+26 1.7547137758811e-05
+27 1.62446704052854e-05
+28 1.56958067236701e-05
+29 1.52673310367391e-05
+30 1.44521864058333e-05
+31 1.4034912965144e-05
+32 1.35972686621244e-05
+33 1.31771039377782e-05
+34 1.26620861919946e-05
+35 1.23069030451006e-05
+36 1.15971088234801e-05
+37 1.1483944945212e-05
+38 1.11056815512711e-05
+39 1.08494596133824e-05
+40 1.05835852082237e-05
+41 1.0235457921226e-05
+42 1.02050053101266e-05
+43 9.65684557741042e-06
+44 9.73299484030576e-06
+45 9.38099492486799e-06
+46 9.0509402070893e-06
+47 8.89147577254334e-06
+48 8.83057236933382e-06
+49 8.61847547639627e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000123288831673563
+1 0.000359091209247708
+2 0.00277038640342653
+3 0.000288972834823653
+4 0.000182258125278167
+5 0.000144437028211541
+6 8.99639344424941e-05
+7 6.88195577822626e-05
+8 6.56775882816873e-05
+9 5.87548383919057e-05
+10 5.05476018588524e-05
+11 5.41800873179454e-05
+12 5.1383856771281e-05
+13 3.41812046826817e-05
+14 3.48365574609488e-05
+15 3.48831017618068e-05
+16 3.79661032638978e-05
+17 2.38728553085821e-05
+18 2.93633038381813e-05
+19 2.53404559771297e-05
+20 2.32543225138215e-05
+21 2.62142111751018e-05
+22 1.99430814973311e-05
+23 2.03364215849433e-05
+24 1.86033230420435e-05
+25 1.56337810039986e-05
+26 1.47433265738073e-05
+27 1.84596447070362e-05
+28 1.63868335221196e-05
+29 1.50366658999701e-05
+30 1.61582029249985e-05
+31 1.42864710142021e-05
+32 1.32475861391868e-05
+33 1.26060403999873e-05
+34 1.37205270220875e-05
+35 1.2657165825658e-05
+36 1.44898440339603e-05
+37 1.17839153972454e-05
+38 1.19025162348407e-05
+39 1.08363310573623e-05
+40 1.05842846096493e-05
+41 1.07025862234877e-05
+42 8.39315634948434e-06
+43 1.10976998257684e-05
+44 7.6222909228818e-06
+45 8.89704097062349e-06
+46 9.72061843640404e-06
+47 9.33812134462642e-06
+48 7.72566545492737e-06
+49 7.83644645707682e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000124740603496321
+1 0.000125332197058015
+2 0.000124587095342577
+3 0.000125385864521377
+4 0.000125120233860798
+5 0.000120936485473067
+6 0.000124970538308844
+7 0.000123901321785524
+8 0.000127582592540421
+9 0.000126764862216078
+10 0.000127837178297341
+11 0.00012604556104634
+12 0.000127537670778111
+13 0.000125581456813961
+14 0.000123314544907771
+15 0.00012674942263402
+16 0.000119570642709732
+17 0.000127155901282094
+18 0.000124610349303111
+19 0.000121875542390626
+20 0.000124602753203362
+21 0.000127184146549553
+22 0.000125658931210637
+23 0.000125735707115382
+24 0.000122600526083261
+25 0.000120356497063767
+26 0.000122245895909145
+27 0.000124923681141809
+28 0.000124816811876372
+29 0.000126591228763573
+30 0.000125930208014324
+31 0.000125408347230405
+32 0.000123379955766723
+33 0.000125137361465022
+34 0.000126072845887393
+35 0.000124796264572069
+36 0.000124017547932453
+37 0.000123213729239069
+38 0.000124620390124619
+39 0.000122959667351097
+40 0.000125364837003872
+41 0.000123628837172873
+42 0.000125459133414552
+43 0.000124650832731277
+44 0.0001270307257073
+45 0.000123088131658733
+46 0.000124792743008584
+47 0.000123972247820348
+48 0.000126376166008413
+49 0.000127203005831689
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000123242949484847
+1 0.000120985416288022
+2 0.000125931459479034
+3 0.000119883523439057
+4 0.000121137549285777
+5 0.000159233371959999
+6 0.000125222708447836
+7 0.000131401655380614
+8 0.000101355697552208
+9 0.000105544611869846
+10 9.41670368774794e-05
+11 0.000112674606498331
+12 9.94093716144562e-05
+13 0.000118947718874551
+14 0.000138303046696819
+15 0.000104310449387413
+16 0.000170552055351436
+17 0.000104416794783901
+18 0.000126163315144368
+19 0.000150690335431136
+20 0.000126837287098169
+21 0.000103363236121368
+22 0.000114190253952984
+23 0.000117167655844241
+24 0.000144242338137701
+25 0.000165031640790403
+26 0.000145240919664502
+27 0.000123576377518475
+28 0.000117604809929617
+29 0.000108588603325188
+30 0.000114958107587881
+31 0.000117905787192285
+32 0.00013801890600007
+33 0.000120234144560527
+34 0.000112247325887438
+35 0.000125292252050713
+36 0.000131434353534132
+37 0.000140217802254483
+38 0.000124095284263603
+39 0.000140201431349851
+40 0.000118133255455177
+41 0.000134278350742534
+42 0.000118460622616112
+43 0.000125462116557173
+44 0.000103616075648461
+45 0.00013963547826279
+46 0.000124469224829227
+47 0.000130344953504391
+48 0.000110084147308953
+49 0.000102117970527615
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.009405021303920515, Learning_Process.pdf b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.009405021303920515, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..d77ece635ef167d4b3b3a63be81a3aa594b65768
Binary files /dev/null and b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.009405021303920515, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.009405021303920515, Learning_Process.tex b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.009405021303920515, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..58688336543337c04c228e7c583a67b3688f0af3
--- /dev/null
+++ b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.009405021303920515, Learning_Process.tex	
@@ -0,0 +1,257 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=8.31771945504377e-06, ymax=0.0439916904324105,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000166003941558301
+1 0.0139195714145899
+2 0.00106287794187665
+3 0.00749908294528723
+4 0.000545305723790079
+5 0.00030809867894277
+6 0.000215967957046814
+7 0.000169249411555938
+8 0.000136484784889035
+9 0.000114882866910193
+10 0.000101034231192898
+11 8.82626336533576e-05
+12 7.83975119702518e-05
+13 6.92351095494814e-05
+14 6.3859362853691e-05
+15 5.78505605517421e-05
+16 5.30228353454731e-05
+17 4.77971916552633e-05
+18 4.54805485787801e-05
+19 4.24285208282527e-05
+20 3.81901918444782e-05
+21 3.73319962818641e-05
+22 3.47663590218872e-05
+23 3.30575348925777e-05
+24 3.10791292577051e-05
+25 2.88272094621789e-05
+26 2.70558884949423e-05
+27 2.68480798695236e-05
+28 2.51585424848599e-05
+29 2.36945179494796e-05
+30 2.35534789680969e-05
+31 2.17461856664158e-05
+32 2.12171325983945e-05
+33 2.0399385903147e-05
+34 1.97912977455417e-05
+35 1.90251830645138e-05
+36 1.84241598617518e-05
+37 1.76595876837382e-05
+38 1.65957208082546e-05
+39 1.64562225108966e-05
+40 1.61835505423369e-05
+41 1.58268449013121e-05
+42 1.50318664964288e-05
+43 1.44656078191474e-05
+44 1.41901746246731e-05
+45 1.39414332807064e-05
+46 1.32980685521034e-05
+47 1.32866725834901e-05
+48 1.31547039927682e-05
+49 1.23150502986391e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000164622149895877
+1 0.0297938566654921
+2 0.000187909914529882
+3 0.00638345861807466
+4 0.000707272090949118
+5 0.00026140347472392
+6 0.00018949135846924
+7 0.000137056907988153
+8 0.000139399067847989
+9 0.000119915952382144
+10 9.11877941689454e-05
+11 8.05263553047553e-05
+12 7.19678937457502e-05
+13 7.31449908926152e-05
+14 5.56163977307733e-05
+15 5.33084676135331e-05
+16 4.93414809170645e-05
+17 5.44986105524004e-05
+18 4.25476719101425e-05
+19 4.45750629296526e-05
+20 4.88632613269147e-05
+21 3.5302738979226e-05
+22 3.43655083270278e-05
+23 2.98921495414106e-05
+24 3.12809715978801e-05
+25 3.36526099999901e-05
+26 3.26032459270209e-05
+27 2.30614132306073e-05
+28 2.48932465183316e-05
+29 2.64743612206075e-05
+30 2.06128243007697e-05
+31 2.41250036197016e-05
+32 2.1469037164934e-05
+33 2.20637775782961e-05
+34 1.85494482138893e-05
+35 1.77869205799652e-05
+36 1.84799700946314e-05
+37 1.75714903889457e-05
+38 2.14955780393211e-05
+39 1.75556142494315e-05
+40 1.54565732373158e-05
+41 1.3455460248224e-05
+42 1.61095322255278e-05
+43 1.59460178110749e-05
+44 1.48474928209907e-05
+45 1.31864098875667e-05
+46 1.46627962749335e-05
+47 1.28245419546147e-05
+48 1.22814089991152e-05
+49 1.50306905197795e-05
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000167732403497212
+1 0.000166210738825612
+2 0.000167564881849103
+3 0.000167659018188715
+4 0.000162835072842427
+5 0.00016698389663361
+6 0.000161995398229919
+7 0.000165273246238939
+8 0.000168796046636999
+9 0.000168740312801674
+10 0.000162915734108537
+11 0.000160552212037146
+12 0.000167651131050661
+13 0.000164357756148092
+14 0.000165913588716649
+15 0.000164888144354336
+16 0.000163829274242744
+17 0.000164891403983347
+18 0.000161427451530471
+19 0.000162265379913151
+20 0.000166761717991903
+21 0.000165733901667409
+22 0.000168181664776057
+23 0.000166689278557897
+24 0.000167573380167596
+25 0.00016435187717434
+26 0.000166373501997441
+27 0.000164406083058566
+28 0.000163251635967754
+29 0.00016326762852259
+30 0.000168756290804595
+31 0.00016554408648517
+32 0.000167660051374696
+33 0.000162997966981493
+34 0.000167052829056047
+35 0.000165652876603417
+36 0.000165680190548301
+37 0.000165771358297206
+38 0.000165952515089884
+39 0.000165389239555225
+40 0.000166936166351661
+41 0.000165555451530963
+42 0.000198072244529612
+43 0.000163984805112705
+44 0.000166302284924313
+45 0.000167270613019355
+46 0.000169667022419162
+47 0.00016848040104378
+48 0.000164775556186214
+49 0.000160338589921594
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000149651110405102
+1 0.000162918935529888
+2 0.000147276543430053
+3 0.00015037672710605
+4 0.000192014951608144
+5 0.000155070825712755
+6 0.00020108770695515
+7 0.000169229810126126
+8 0.000140630087116733
+9 0.000140700067277066
+10 0.000191971019376069
+11 0.00021460592688527
+12 0.000150854350067675
+13 0.000176758054294623
+14 0.000165923571330495
+15 0.000172414642293006
+16 0.000187318306416273
+17 0.000174847300513647
+18 0.000205178235773928
+19 0.000196110137039796
+20 0.000157456699525937
+21 0.000164222656167112
+22 0.000144552454003133
+23 0.00015998087474145
+24 0.000147927436046302
+25 0.000178954214788973
+26 0.000162243246450089
+27 0.000179039663635194
+28 0.000189676575246267
+29 0.000187298908713274
+30 0.000142294316901825
+31 0.000168437123647891
+32 0.000147761471453123
+33 0.000195412547327578
+34 0.000156089459778741
+35 0.000169089456903748
+36 0.000168637299793772
+37 0.000165851684869267
+38 0.000166429948876612
+39 0.000169498292962089
+40 0.000156304377014749
+41 0.000170281899045222
+42 0.000178880160092376
+43 0.000185757307917811
+44 0.000163460965268314
+45 0.000153228873386979
+46 0.000129276770167053
+47 0.000141761294798926
+48 0.000176828936673701
+49 0.000216060114325956
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.009880609865109911, Learning_Process.pdf b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.009880609865109911, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..7aa3bd51f5f5ea1138c5818c255413ae1f12d312
Binary files /dev/null and b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.009880609865109911, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.009880609865109911, Learning_Process.tex b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.009880609865109911, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..06812b8b1006f5079d5c19c1fd0f3ff8b7876394
--- /dev/null
+++ b/models_URWF/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.009880609865109911, Learning_Process.tex	
@@ -0,0 +1,256 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.76265978911562e-06, ymax=0.00112522159245141,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000156239620991983
+1 0.000838947715237737
+2 9.92723216768354e-05
+3 5.11544349137694e-05
+4 3.69681765732821e-05
+5 2.8018985176459e-05
+6 2.16645094042178e-05
+7 1.74388842424378e-05
+8 1.48941835504957e-05
+9 1.30917205751757e-05
+10 1.16065511974739e-05
+11 1.05004019133048e-05
+12 9.5531077022315e-06
+13 8.71120846568374e-06
+14 7.93751132732723e-06
+15 7.24832489140681e-06
+16 6.8626295615104e-06
+17 6.35028209217126e-06
+18 6.13200791121926e-06
+19 5.69537724004476e-06
+20 5.43874421055079e-06
+21 5.28550526723848e-06
+22 4.92882054459187e-06
+23 4.83905114379013e-06
+24 4.62922571387026e-06
+25 4.56282350569381e-06
+26 4.30949421570404e-06
+27 4.08560799769475e-06
+28 4.11144310419331e-06
+29 3.87685622627032e-06
+30 3.82403368348605e-06
+31 3.70074849342927e-06
+32 3.65365031029796e-06
+33 3.54435610461223e-06
+34 3.47330046679417e-06
+35 3.37462256538856e-06
+36 3.2793006994325e-06
+37 3.2576047033217e-06
+38 3.19134369419771e-06
+39 3.23596191265096e-06
+40 2.99602993436565e-06
+41 3.00919441542646e-06
+42 2.9650420856342e-06
+43 2.8948404633411e-06
+44 2.80109088635072e-06
+45 2.78743164017214e-06
+46 2.71939188678516e-06
+47 2.68249232249218e-06
+48 2.8782360459445e-06
+49 2.70694863502285e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000136910937726498
+1 0.00073532632086426
+2 9.89377513178624e-05
+3 5.89331139053684e-05
+4 3.55485208274331e-05
+5 2.52603185799671e-05
+6 1.91703784366837e-05
+7 1.86650631803786e-05
+8 1.69483246281743e-05
+9 1.33001130961929e-05
+10 1.16591390906251e-05
+11 8.80293009686284e-06
+12 7.93955587141681e-06
+13 7.38874177841353e-06
+14 7.35700450604782e-06
+15 7.50002209315426e-06
+16 6.63774790155003e-06
+17 6.84089854985359e-06
+18 6.14543478150154e-06
+19 5.9612771110551e-06
+20 5.22653817824903e-06
+21 4.87148281536065e-06
+22 5.0297130655963e-06
+23 4.99450015922775e-06
+24 4.53375332654105e-06
+25 3.67261418432463e-06
+26 3.79197012989607e-06
+27 4.49865683549433e-06
+28 3.03203273688268e-06
+29 4.07123388868058e-06
+30 3.37807227879239e-06
+31 3.79934135708027e-06
+32 3.25309679283237e-06
+33 3.22377604788926e-06
+34 3.07183290715329e-06
+35 3.14325370709412e-06
+36 3.39148436978576e-06
+37 3.15433294417744e-06
+38 3.01701288663025e-06
+39 2.72663646683213e-06
+40 3.56259124600911e-06
+41 3.31775959239167e-06
+42 2.59947978520358e-06
+43 2.85600754068582e-06
+44 2.94782398668758e-06
+45 2.65319408754294e-06
+46 2.82989503830322e-06
+47 2.96079520012427e-06
+48 2.87564284917607e-06
+49 2.36413166021521e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000155997782712802
+1 0.000151761414599605
+2 0.000154911613208242
+3 0.000154982699314132
+4 0.000156920432345942
+5 0.000156427544425242
+6 0.000150939260493033
+7 0.00015540947788395
+8 0.000156501177116297
+9 0.000154425710206851
+10 0.000151861851918511
+11 0.000155450106831267
+12 0.000151542059029453
+13 0.00015404999430757
+14 0.00015489777433686
+15 0.000153364890138619
+16 0.000155473477207124
+17 0.000151955944602378
+18 0.000149051178595982
+19 0.000153816086822189
+20 0.000153177315951325
+21 0.000152437671204098
+22 0.000153174521983601
+23 0.000155173358507454
+24 0.000153710905578919
+25 0.000156315421918407
+26 0.000156354071805254
+27 0.00015528779476881
+28 0.000156745838467032
+29 0.000153405344462954
+30 0.000158482624101453
+31 0.000152332460856996
+32 0.000154105888213962
+33 0.000153943095938303
+34 0.000154673543875106
+35 0.000158516224473715
+36 0.000155344852828421
+37 0.00015561148757115
+38 0.000153446031617932
+39 0.000152132357470691
+40 0.000157044210936874
+41 0.000156781650730409
+42 0.000158050082973205
+43 0.000152747248648666
+44 0.000154124849359505
+45 0.000155547735630535
+46 0.000156502923346125
+47 0.000153095403220505
+48 0.000157331480295397
+49 0.000154941430082545
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000140044299769215
+1 0.000180335133336484
+2 0.000149229759699665
+3 0.000147990562254563
+4 0.000130838438053615
+5 0.000134489760966972
+6 0.000185180571861565
+7 0.000145372861879878
+8 0.000132348461193033
+9 0.000154156965436414
+10 0.000177405425347388
+11 0.00014645213377662
+12 0.000179178779944777
+13 0.000157915535965003
+14 0.000149003710248508
+15 0.000162054479005747
+16 0.000146621823660098
+17 0.000177251509740017
+18 0.000204329189728014
+19 0.000159923452883959
+20 0.000163130156579427
+21 0.000172751606442034
+22 0.000169716789969243
+23 0.000146508726174943
+24 0.000171326988493092
+25 0.000136948234285228
+26 0.00013639587268699
+27 0.000145042649819516
+28 0.000128344167023897
+29 0.000163988399435766
+30 0.000117513896839228
+31 0.000166943485965021
+32 0.000157971589942463
+33 0.000154989291331731
+34 0.000150011896039359
+35 0.000115817529149354
+36 0.000148581573739648
+37 0.000142726566991769
+38 0.000166526326211169
+39 0.000173854161403142
+40 0.000133231791551225
+41 0.000142580523970537
+42 0.000119534219265915
+43 0.000169120656209998
+44 0.000156714580953121
+45 0.000144736521178856
+46 0.000131128894281574
+47 0.000165701625519432
+48 0.000128030573250726
+49 0.00015095280832611
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.0031790024466426814, Learning_Process.pdf b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.0031790024466426814, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..39859d62e1880e7cbced8e5a54c83be01111127e
Binary files /dev/null and b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.0031790024466426814, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.0031790024466426814, Learning_Process.tex b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.0031790024466426814, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..4faef67e2c263be277ebbf7d88393a88f137743f
--- /dev/null
+++ b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.0031790024466426814, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=9.34979495180902e-08, ymax=0.0002734672506577,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000141969663673081
+1 4.3167696276214e-05
+2 1.37785664264811e-05
+3 6.75803266858566e-06
+4 4.89589774588239e-06
+5 3.82805365006789e-06
+6 2.81451639239094e-06
+7 2.62677008322498e-06
+8 2.13802013604436e-06
+9 1.79955907242402e-06
+10 1.65844880939403e-06
+11 1.37618792450667e-06
+12 1.2163629889983e-06
+13 1.13846601834666e-06
+14 9.91388787952019e-07
+15 9.08559854906343e-07
+16 8.03890827683063e-07
+17 7.5147158895561e-07
+18 6.81528945278842e-07
+19 6.28163718374708e-07
+20 5.646160161632e-07
+21 6.188391807882e-07
+22 5.13284078351717e-07
+23 4.49058546792003e-07
+24 4.25955335003891e-07
+25 4.22829884882958e-07
+26 3.59379839665053e-07
+27 3.65803373369999e-07
+28 3.16096873120841e-07
+29 3.48523741422468e-07
+30 3.03362782005934e-07
+31 2.86744324284882e-07
+32 2.82881444491068e-07
+33 2.62797414052329e-07
+34 2.50808113833045e-07
+35 2.33638630220412e-07
+36 2.28943434876783e-07
+37 2.25744798854066e-07
+38 2.22113868630913e-07
+39 1.98848667309903e-07
+40 1.92412258570585e-07
+41 1.79574215053435e-07
+42 1.74019078258425e-07
+43 1.74675946595926e-07
+44 1.58243878445319e-07
+45 1.58948324724406e-07
+46 1.55392356759876e-07
+47 1.43926698115138e-07
+48 1.50271958432313e-07
+49 1.4408553283829e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000176638932316564
+1 3.84942795790266e-05
+2 1.79410017153714e-05
+3 8.0734889706946e-06
+4 3.66227800441266e-06
+5 3.06477022604668e-06
+6 3.66823383046722e-06
+7 2.26241604650568e-06
+8 2.12864551940584e-06
+9 2.008804358411e-06
+10 1.41132181852299e-06
+11 1.31254910229472e-06
+12 1.0567022172836e-06
+13 1.22731978535739e-06
+14 8.62232639065041e-07
+15 6.56009319754958e-07
+16 9.6639530511311e-07
+17 7.85730321695155e-07
+18 7.60759462536953e-07
+19 4.88743694404548e-07
+20 6.90767478772614e-07
+21 7.51490290440415e-07
+22 4.47091508704034e-07
+23 4.93226195885654e-07
+24 3.94203198084142e-07
+25 3.61749783905907e-07
+26 3.16880118589324e-07
+27 2.9377557098087e-07
+28 3.53185498624953e-07
+29 3.34359356202185e-07
+30 3.39187977260735e-07
+31 3.2875604460969e-07
+32 3.00053983437465e-07
+33 3.01699998317417e-07
+34 2.40542220808493e-07
+35 2.94617080953685e-07
+36 2.24789414460247e-06
+37 2.2303639468646e-07
+38 2.06912275757531e-07
+39 2.49767907689602e-07
+40 1.5755470883505e-07
+41 1.61467582415753e-07
+42 2.06959640536297e-07
+43 2.0482934814936e-07
+44 1.95873695929549e-07
+45 1.40805710202585e-07
+46 1.77432511350162e-07
+47 1.99871962536236e-07
+48 1.49645671854159e-07
+49 1.34385444994223e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000146422316902317
+1 0.000148006176459603
+2 0.000147696337080561
+3 0.000142554636113346
+4 0.000145081779919565
+5 0.000147371858474799
+6 0.000145348676596768
+7 0.000145773752592504
+8 0.000147607817780226
+9 0.000144518606248312
+10 0.000146942576975562
+11 0.000147840546560474
+12 0.000144105637446046
+13 0.000143347890116274
+14 0.000145938858622685
+15 0.00014210918743629
+16 0.00014170233043842
+17 0.00014832011947874
+18 0.00014554506924469
+19 0.000145788610097952
+20 0.000145677724503912
+21 0.000145464626257308
+22 0.000143174504046328
+23 0.000145801503094845
+24 0.000144208592246287
+25 0.00014569642371498
+26 0.000144986071973108
+27 0.000148063772940077
+28 0.000144169462146237
+29 0.000143719225889072
+30 0.000148463892401196
+31 0.000146099395351484
+32 0.000143002456752583
+33 0.000145640166010708
+34 0.000146083271829411
+35 0.000146400125231594
+36 0.000143407552968711
+37 0.000149501574924216
+38 0.000143977085826918
+39 0.000147959552123211
+40 0.000140981996082701
+41 0.000146005768328905
+42 0.00014869574806653
+43 0.000144880075822584
+44 0.00014061680121813
+45 0.000149742903886363
+46 0.000142992110340856
+47 0.000143596553243697
+48 0.000146951453643851
+49 0.000145024605444632
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000138068033265881
+1 0.000121933946502395
+2 0.000126465383800678
+3 0.000171912266523577
+4 0.000159032017108984
+5 0.000129592182929628
+6 0.000145921236253344
+7 0.00014406896661967
+8 0.000127727675135247
+9 0.000156815673108213
+10 0.000134210480609909
+11 0.000126578859635629
+12 0.000157753005623817
+13 0.000165928591741249
+14 0.000142969700391404
+15 0.000180372226168402
+16 0.000178824499016628
+17 0.000120466684165876
+18 0.000146433638292365
+19 0.000141883851028979
+20 0.000144032630487345
+21 0.00014594646927435
+22 0.000166927551617846
+23 0.000146229940582998
+24 0.000158088427269831
+25 0.00014479539822787
+26 0.00015029837959446
+27 0.000122443729196675
+28 0.000154599663801491
+29 0.000160539406351745
+30 0.000117998621135484
+31 0.000141328710014932
+32 0.000167347301612608
+33 0.000142908218549564
+34 0.000140467818710022
+35 0.000138948234962299
+36 0.00016288401093334
+37 0.000111843568447512
+38 0.000158573078806512
+39 0.000125774095067754
+40 0.000184895703569055
+41 0.000142214892548509
+42 0.000122156372526661
+43 0.00015223711670842
+44 0.000190263366675936
+45 0.000125868580653332
+46 0.000166876969160512
+47 0.000163351753144525
+48 0.000133885114337318
+49 0.000149239465827122
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.003932796289574, Learning_Process.pdf b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.003932796289574, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..40cf68d41267fb29a46b9d543d3221be009f507b
Binary files /dev/null and b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.003932796289574, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.003932796289574, Learning_Process.tex b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.003932796289574, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..a9e93815399159874247dfb2e832a46a178974bb
--- /dev/null
+++ b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.003932796289574, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=4.64833648106797e-08, ymax=0.000262942008725467,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00013475349987857
+1 4.26564183726441e-05
+2 1.10069659058354e-05
+3 4.66960091216606e-06
+4 2.88885530608241e-06
+5 2.39946916735789e-06
+6 1.96246105588216e-06
+7 1.53578525896592e-06
+8 1.26742361317156e-06
+9 1.03566082998441e-06
+10 9.07328853827494e-07
+11 8.3239018522363e-07
+12 6.78688877542299e-07
+13 6.10303800385736e-07
+14 6.10304368819925e-07
+15 4.78599986308836e-07
+16 4.90901300054247e-07
+17 4.39582152012008e-07
+18 3.68439145859156e-07
+19 3.52603194642143e-07
+20 3.46735532730236e-07
+21 2.90097801780576e-07
+22 2.5816885340646e-07
+23 2.58698975130756e-07
+24 2.47054373403444e-07
+25 2.27154941967456e-07
+26 2.06223404575212e-07
+27 1.99715032067616e-07
+28 1.93557227134988e-07
+29 1.89211931456157e-07
+30 1.67438741982551e-07
+31 1.64870172625342e-07
+32 1.43688339449e-07
+33 1.45987002042602e-07
+34 1.34814570174058e-07
+35 1.37450186343813e-07
+36 1.3525357189792e-07
+37 1.27142001815628e-07
+38 1.18256750170076e-07
+39 1.11779399958323e-07
+40 1.09042801454962e-07
+41 1.06021317947125e-07
+42 1.06122612919535e-07
+43 1.00847422856987e-07
+44 9.49029939079082e-08
+45 9.95632660760748e-08
+46 8.86211850570362e-08
+47 8.69734861908e-08
+48 7.84159084332714e-08
+49 8.04555426725528e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.00011482883564895
+1 3.74846677004825e-05
+2 8.15105795481941e-06
+3 4.64396998722805e-06
+4 2.87518878394621e-06
+5 1.9084652649326e-06
+6 2.35311699725571e-06
+7 2.22253402171191e-06
+8 1.45256967698515e-06
+9 1.05181186427217e-06
+10 8.23806658445392e-07
+11 5.53250572465913e-07
+12 7.33356216642278e-07
+13 7.49020216517238e-07
+14 4.90700699629087e-07
+15 6.95473943324032e-07
+16 4.25930920755491e-07
+17 4.42135672074073e-07
+18 3.11016009391096e-07
+19 3.90508120062805e-07
+20 3.80645758468745e-07
+21 3.2293596063937e-07
+22 3.96598210272714e-07
+23 2.29627630687901e-07
+24 2.79069780617647e-07
+25 2.82517532923521e-07
+26 2.13426076811629e-07
+27 2.10299049285823e-07
+28 1.69553615592122e-07
+29 1.57874396222724e-07
+30 1.7032162702435e-07
+31 1.60262089821117e-07
+32 1.78555438878902e-07
+33 1.38739110866481e-07
+34 1.67621621471881e-07
+35 1.20226800959244e-07
+36 1.42841145134298e-07
+37 9.04777408550217e-08
+38 1.0971486830158e-07
+39 1.09467229947313e-07
+40 9.37965509706373e-08
+41 1.00790657597827e-07
+42 1.27004511796258e-07
+43 8.33889686191469e-08
+44 9.18214482226176e-08
+45 8.07395892366003e-08
+46 8.61052171785559e-08
+47 6.88443932972405e-08
+48 8.57742392668115e-08
+49 1.13677991464556e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000136212867801078
+1 0.000133737965370528
+2 0.00013674862566404
+3 0.000136609291075729
+4 0.000131482578581199
+5 0.000134166664793156
+6 0.000134152651298791
+7 0.000132250424940139
+8 0.000131483830045909
+9 0.00013255026715342
+10 0.000131437758682296
+11 0.000135075839352794
+12 0.000129037100123242
+13 0.000133282825117931
+14 0.000131746885017492
+15 0.000134054556838237
+16 0.000133436726173386
+17 0.000130354834254831
+18 0.000129842985188589
+19 0.000132831686642021
+20 0.000130941334646195
+21 0.000131400403915904
+22 0.000130470260046422
+23 0.00013384768681135
+24 0.000130928368889727
+25 0.000133630310301669
+26 0.000129191146697849
+27 0.000133634050143883
+28 0.000133939916850068
+29 0.000138443167088553
+30 0.000134835441713221
+31 0.000131590335513465
+32 0.000132331013446674
+33 0.000131977969431318
+34 0.000133970534079708
+35 0.000130248794448562
+36 0.000136613234644756
+37 0.000129950043628924
+38 0.000133386769448407
+39 0.000137121882289648
+40 0.000134190573589876
+41 0.000127320541650988
+42 0.000135709342430346
+43 0.000133619279949926
+44 0.000132235654746182
+45 0.000133920984808356
+46 0.000129756997921504
+47 0.000134180387249216
+48 0.000136953633045778
+49 0.000132153145386837
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 9.91645429166965e-05
+1 0.000124105514260009
+2 9.59573444561101e-05
+3 9.85001897788607e-05
+4 0.000143611221574247
+5 0.000122354133054614
+6 0.000120345830509905
+7 0.000134725545649417
+8 0.000145326543133706
+9 0.000134657966555096
+10 0.000144091012771241
+11 0.000111367357021663
+12 0.00016606759163551
+13 0.000127747218357399
+14 0.000140703821671195
+15 0.000118122166895773
+16 0.000125832972116768
+17 0.000151994230691344
+18 0.000158950148033909
+19 0.000131559150759131
+20 0.000148686362081207
+21 0.000142010147101246
+22 0.000150624342495576
+23 0.000122138051665388
+24 0.000149290877743624
+25 0.000121704615594354
+26 0.000165326127898879
+27 0.000120598415378481
+28 0.000120156728371512
+29 8.32591322250664e-05
+30 0.000110906352347229
+31 0.000145426893141121
+32 0.000135840804432519
+33 0.000139661176945083
+34 0.000118620017019566
+35 0.000152955020894296
+36 0.000100232173281256
+37 0.000158620561705902
+38 0.000127635663375258
+39 9.42993719945662e-05
+40 0.000121109587780666
+41 0.000177537032868713
+42 0.000105877312307712
+43 0.000123955658636987
+44 0.00013560798834078
+45 0.00012022718146909
+46 0.000158269220264629
+47 0.000119774653285276
+48 9.26082066143863e-05
+49 0.000136525792186148
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.004750717539736385, Learning_Process.pdf b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.004750717539736385, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..9e9f41cef3058c56a31d57c6554725f7bb98ee0a
Binary files /dev/null and b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.004750717539736385, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.004750717539736385, Learning_Process.tex b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.004750717539736385, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..6cd1b79d16d05ad324d2d5042f47a68c3bdea1b2
--- /dev/null
+++ b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.004750717539736385, Learning_Process.tex	
@@ -0,0 +1,266 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.03,0.97)},
+  anchor=north west,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.19242290067214e-08, ymax=0.0280936109331221,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000135978611069731
+1 3.93902155337855e-05
+2 1.28210758703062e-05
+3 4.2629758354451e-06
+4 2.59043645201018e-06
+5 1.56529006289929e-06
+6 1.26285010537686e-06
+7 1.06280049294583e-06
+8 8.41630082959455e-07
+9 7.73931901676406e-07
+10 6.26726205155137e-07
+11 5.61743206617393e-07
+12 4.83415874441562e-07
+13 4.60345404462714e-07
+14 3.98754252728395e-07
+15 3.75761089799198e-07
+16 3.09513978891118e-07
+17 3.12024809545619e-07
+18 3.03423945524628e-07
+19 2.86073941424547e-07
+20 2.39671976487443e-07
+21 2.21729678173688e-07
+22 2.09504406711858e-07
+23 2.02935439119756e-07
+24 1.82799794856692e-07
+25 1.82807411874819e-07
+26 1.68738196748563e-07
+27 1.50593109538022e-07
+28 1.56811694296266e-07
+29 1.53811043901442e-07
+30 1.42343751008411e-07
+31 1.3150047095678e-07
+32 1.2715135255803e-07
+33 1.19329655490219e-07
+34 0.0150800785049796
+35 1.08544043087022e-07
+36 1.04682108315046e-07
+37 1.02666732004764e-07
+38 9.21469336390146e-08
+39 9.75620650933706e-08
+40 9.1090647913461e-08
+41 8.24370687269038e-08
+42 8.54106829706325e-08
+43 7.79245965532027e-08
+44 8.00791326582839e-08
+45 7.94108103718827e-08
+46 7.77018556163966e-08
+47 7.68255148386743e-08
+48 7.17057275778643e-08
+49 6.40275388263944e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000134435642394237
+1 5.83462642680388e-05
+2 2.06046370294644e-05
+3 8.16613010101719e-06
+4 2.051740693787e-06
+5 1.61343416493764e-06
+6 1.2484166518334e-06
+7 9.77842887550651e-07
+8 9.19298997814622e-07
+9 6.45148531930317e-07
+10 5.99704605974694e-07
+11 6.15795158864785e-07
+12 6.38674009678653e-07
+13 4.26744321657679e-07
+14 3.43820346415669e-07
+15 2.74880221695639e-07
+16 3.49265519616893e-07
+17 3.13154487230349e-07
+18 3.41823778171602e-07
+19 1.73516184531763e-07
+20 2.59751885778314e-07
+21 2.53241466907639e-07
+22 2.50850604288644e-07
+23 2.05722059831714e-07
+24 1.97035092242004e-07
+25 1.7113744377184e-07
+26 1.30005048504245e-07
+27 2.01053424575548e-07
+28 1.5969384037362e-07
+29 1.17386321107915e-07
+30 1.33084796516414e-07
+31 1.12972792010169e-07
+32 1.05886421408741e-07
+33 1.39400739840312e-07
+34 1.27916891301538e-07
+35 1.09615783117079e-07
+36 8.97392098409e-08
+37 1.03909158610804e-07
+38 9.6925923287472e-08
+39 1.04029140857165e-07
+40 8.40668477053441e-08
+41 9.49758387491784e-08
+42 7.37266390160585e-08
+43 1.01140521735488e-07
+44 9.35507031840643e-08
+45 6.97699533702689e-08
+46 7.71095400864397e-08
+47 8.83222597281019e-08
+48 5.94736206949165e-08
+49 8.26250499130765e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000134788075229153
+1 0.00013592405593954
+2 0.000137041017296724
+3 0.000132308094180189
+4 0.000131996450363658
+5 0.000138011106173508
+6 0.00013589728041552
+7 0.000135315844090655
+8 0.000135590569698252
+9 0.000138968796818517
+10 0.000135841662995517
+11 0.000135142356157303
+12 0.000137248265673406
+13 0.000135869573568925
+14 0.000133748937514611
+15 0.000134666173835285
+16 0.000136245143949054
+17 0.000137154609546997
+18 0.000136786286020651
+19 0.000135916343424469
+20 0.000135473266709596
+21 0.000136607544845901
+22 0.000136238260893151
+23 0.00013655198563356
+24 0.000135554582811892
+25 0.000137046328745782
+26 0.000134481000714004
+27 0.000137736817123368
+28 0.00013516703620553
+29 0.000136064511025324
+30 0.000137488023028709
+31 0.000134703324874863
+32 0.000138409537612461
+33 0.000134495465317741
+34 0.000135234105982818
+35 0.000134046262246557
+36 0.000136567745357752
+37 0.000134473695652559
+38 0.000134014029754326
+39 0.000136430462589487
+40 0.000134158559376374
+41 0.000127468229038641
+42 0.000134424204588868
+43 0.000132347704493441
+44 0.0001347464567516
+45 0.000135148744448088
+46 0.000134952002554201
+47 0.00013465026859194
+48 0.000133855894091539
+49 0.000134769565192983
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000145025813253596
+1 0.000135767229949124
+2 0.000123676189105026
+3 0.000175675362697802
+4 0.000169016173458658
+5 0.00011474936036393
+6 0.00013267835311126
+7 0.000137336843181401
+8 0.000131074761156924
+9 0.000104378028481733
+10 0.000133691399241798
+11 0.000137477429234423
+12 0.000121345081424806
+13 0.000132832734379917
+14 0.000152313077705912
+15 0.000143780533107929
+16 0.000146879538078792
+17 0.000121801211207639
+18 0.00012594650615938
+19 0.000133491004817188
+20 0.000135955386213027
+21 0.000124701109598391
+22 0.000127943581901491
+23 0.00012826596503146
+24 0.000136445087264292
+25 0.000122568511869758
+26 0.000146843172842637
+27 0.000117067633254919
+28 0.000139883282827213
+29 0.000134232715936378
+30 0.000116254610475153
+31 0.000143586337799206
+32 0.00011029998131562
+33 0.000145212849020027
+34 0.000137691022246145
+35 0.000145935293403454
+36 0.000126533792354167
+37 0.00014561130956281
+38 0.000151243599248119
+39 0.000130443833768368
+40 0.000147640152135864
+41 0.000206697106477804
+42 0.000144099918543361
+43 0.000163351025548764
+44 0.000140905060106888
+45 0.000139093710458837
+46 0.000139967756695114
+47 0.000143656667205505
+48 0.00015185477968771
+49 0.000151451604324393
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.004972353411022865, Learning_Process.pdf b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.004972353411022865, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..5f2a890d9cf3c1e29b5ebc5e63e39a5f196d341c
Binary files /dev/null and b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.004972353411022865, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.004972353411022865, Learning_Process.tex b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.004972353411022865, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..22059a27668a82b6f3e80a90590c31f5c479dda4
--- /dev/null
+++ b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.004972353411022865, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.64312611868182e-08, ymax=0.000246995649396989,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000134269095724449
+1 3.54196163243614e-05
+2 7.29839211999206e-06
+3 3.00767624139553e-06
+4 1.77596461981011e-06
+5 1.38063512622466e-06
+6 9.78203502199904e-07
+7 8.085943363767e-07
+8 6.6277385712965e-07
+9 5.84375754897337e-07
+10 5.05191110278247e-07
+11 4.18126290924192e-07
+12 3.68828693808609e-07
+13 3.48256406823566e-07
+14 2.94519480803501e-07
+15 2.70917070110954e-07
+16 2.43424409518411e-07
+17 2.33146565165043e-07
+18 2.03100384510435e-07
+19 1.94406780451573e-07
+20 1.8197158624389e-07
+21 1.60067159526989e-07
+22 1.55548235625247e-07
+23 1.40480409527299e-07
+24 1.32794966134497e-07
+25 1.3007365851081e-07
+26 1.18897375500637e-07
+27 1.21190268487226e-07
+28 1.0157051377746e-07
+29 1.07521863412785e-07
+30 1.04782280629934e-07
+31 9.11988138341258e-08
+32 9.17265268185474e-08
+33 8.52925694516671e-08
+34 7.84678491072555e-08
+35 7.73211681348585e-08
+36 7.56686802105833e-08
+37 6.76480169659044e-08
+38 6.81195544416369e-08
+39 6.84265799577588e-08
+40 6.37072758991053e-08
+41 6.29220551218168e-08
+42 6.10741537343529e-08
+43 6.0248133593177e-08
+44 5.32772297390238e-08
+45 5.71076732569509e-08
+46 5.46953202729128e-08
+47 5.43959295384866e-08
+48 5.00664611990942e-08
+49 5.22763379251501e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000117756710096728
+1 3.56591299350839e-05
+2 7.41845815355191e-06
+3 2.54806855082279e-06
+4 2.01868829208252e-06
+5 1.70189196069259e-06
+6 7.15535577455739e-07
+7 8.89337570697535e-07
+8 7.7360283512462e-07
+9 5.54720941181586e-07
+10 4.4475049776338e-07
+11 3.2288005513692e-07
+12 3.27970667513e-07
+13 2.33714558817155e-07
+14 4.09810951396139e-07
+15 2.79526005897424e-07
+16 2.29436281529161e-07
+17 2.06577382755313e-07
+18 1.90993958426589e-07
+19 2.18034642784914e-07
+20 1.40778894319737e-07
+21 1.84743498721218e-07
+22 1.61664885922619e-07
+23 1.23480305092016e-07
+24 1.25599783018515e-07
+25 1.19230705308837e-07
+26 1.14831415487515e-07
+27 1.07508803637302e-07
+28 1.22569673521866e-07
+29 1.11599455010492e-07
+30 8.81907809002769e-08
+31 1.11825805504395e-07
+32 7.21895077049339e-08
+33 9.04660524270184e-08
+34 1.1830879742547e-07
+35 8.35970936918784e-08
+36 6.8731047520032e-08
+37 8.81309247802164e-08
+38 7.68912897797236e-08
+39 5.60344020072989e-08
+40 6.95390767191384e-08
+41 5.98041012267458e-08
+42 7.3518314991361e-08
+43 4.98859371589333e-08
+44 7.85118814405905e-08
+45 5.35630100273465e-08
+46 5.37506146258693e-08
+47 5.09158226691397e-08
+48 5.89206656798069e-08
+49 4.0049620508853e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000132414308609441
+1 0.000136181421112269
+2 0.000129385211039335
+3 0.000133936613565311
+4 0.000134310394059867
+5 0.00013191724428907
+6 0.00013222977577243
+7 0.000132629065774381
+8 0.000133098830701783
+9 0.000133984081912786
+10 0.000131711800349876
+11 0.000130573593196459
+12 0.000131828855955973
+13 0.000132575340103358
+14 0.000132978355395608
+15 0.000130538508528844
+16 0.000135429159854539
+17 0.000130883447127417
+18 0.000133819339680485
+19 0.000135815746034496
+20 0.000133870169520378
+21 0.000133647612528875
+22 0.000130039145005867
+23 0.000132594839669764
+24 0.00013181145186536
+25 0.000132901535835117
+26 0.000131022417917848
+27 0.000130870175780728
+28 0.000131851498736069
+29 0.000134049914777279
+30 0.00013380593736656
+31 0.000134162270114757
+32 0.000132822096929885
+33 0.000133697685669176
+34 0.000130057378555648
+35 0.000133148540044203
+36 0.000133531750179827
+37 0.000131904875161126
+38 0.000129855528939515
+39 0.000130104570416734
+40 0.000133215115056373
+41 0.000133466106490232
+42 0.000132945104269311
+43 0.000129966123495251
+44 0.000134604691993445
+45 0.000129791791550815
+46 0.000131729160784744
+47 0.000135576701723039
+48 0.000133641748107038
+49 0.000131233013235033
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000133921494125389
+1 9.90408225334249e-05
+2 0.00016300794959534
+3 0.000120441523904447
+4 0.000118865624244791
+5 0.000138507835799828
+6 0.000138674367917702
+7 0.000133081543026492
+8 0.000126284576253965
+9 0.000122741781524383
+10 0.000140801232191734
+11 0.000152397900819778
+12 0.000136147369630635
+13 0.00013402609329205
+14 0.000136121292598546
+15 0.000153472909005359
+16 0.000105467210232746
+17 0.000146925987792201
+18 0.000123499659821391
+19 0.000114208894956391
+20 0.000122616838780232
+21 0.000123144578537904
+22 0.00015519630687777
+23 0.000132429631776176
+24 0.000138941963086836
+25 0.000128873303765431
+26 0.000148650942719541
+27 0.000151034604641609
+28 0.000140021278639324
+29 0.000120658267405815
+30 0.000122318335343152
+31 0.000117387658974621
+32 0.000132138229673728
+33 0.0001269032509299
+34 0.000156042122398503
+35 0.00012664076348301
+36 0.000125650432892144
+37 0.00013895524898544
+38 0.00015682504454162
+39 0.000154401830513962
+40 0.000126213883049786
+41 0.000128235988086089
+42 0.000129488093079999
+43 0.000156033711391501
+44 0.000112273497506976
+45 0.000160219802637585
+46 0.000138499293825589
+47 0.000109038388472982
+48 0.000125452352222055
+49 0.000147596452734433
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.0051860165122323, Learning_Process.pdf b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.0051860165122323, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..eb5eeaa0e3c84f6d680ddb76abad45c4d7670f05
Binary files /dev/null and b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.0051860165122323, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.0051860165122323, Learning_Process.tex b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.0051860165122323, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..7fde581e0935faade0340bb76c43c6b857d33572
--- /dev/null
+++ b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.0051860165122323, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.88719646415482e-08, ymax=0.000316934131982396,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000147743980051018
+1 3.66372369171586e-05
+2 7.46516434446676e-06
+3 3.12403562929831e-06
+4 1.98520797312085e-06
+5 1.23981567412557e-06
+6 1.0109575896422e-06
+7 7.74606007780676e-07
+8 6.34436844393349e-07
+9 5.77210812480189e-07
+10 4.98257520575862e-07
+11 4.23291282913851e-07
+12 3.79157114593909e-07
+13 3.3555764389348e-07
+14 3.10266983660767e-07
+15 2.57618069099408e-07
+16 2.53230183488995e-07
+17 2.25531010755731e-07
+18 2.03457815928232e-07
+19 2.01464018800834e-07
+20 1.90867325500221e-07
+21 1.72550869592669e-07
+22 1.40992767683201e-07
+23 1.45953109154107e-07
+24 1.26015493151499e-07
+25 1.33979511929283e-07
+26 1.12394289430995e-07
+27 1.10551809484605e-07
+28 1.06176635483735e-07
+29 1.05402556016543e-07
+30 9.79888383767502e-08
+31 9.55637915467378e-08
+32 9.34882180558816e-08
+33 8.91234464006629e-08
+34 7.70872006228274e-08
+35 7.65262484492268e-08
+36 7.52291313688147e-08
+37 7.30143767668778e-08
+38 7.14102839083353e-08
+39 6.62310100096875e-08
+40 6.5228853429744e-08
+41 6.4849558611968e-08
+42 5.83160648659486e-08
+43 5.80143932893407e-08
+44 5.6325951902636e-08
+45 5.30187911351732e-08
+46 5.36895967684359e-08
+47 5.09071895749003e-08
+48 5.12160767129899e-08
+49 4.92891025771769e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000160240757395513
+1 4.78668953292072e-05
+2 9.50496360019315e-06
+3 3.66746098734438e-06
+4 1.5871401046752e-06
+5 1.1787997209467e-06
+6 8.84875078099867e-07
+7 6.96064034855226e-07
+8 6.47122419650259e-07
+9 5.36020195340825e-07
+10 5.06328603933071e-07
+11 5.30513545982103e-07
+12 3.49881958072729e-07
+13 3.39798219783916e-07
+14 3.49222517570524e-07
+15 3.95027285549077e-07
+16 2.2929360454782e-07
+17 1.88767558029213e-07
+18 2.72989922223132e-07
+19 1.70304915059205e-07
+20 1.14728642586215e-07
+21 1.45291735975661e-07
+22 1.41294094646582e-07
+23 1.48440520320037e-07
+24 1.73671836023459e-07
+25 1.11879892017441e-07
+26 1.59693286150286e-07
+27 1.23741514812536e-07
+28 1.13350289154823e-07
+29 8.60741167230117e-08
+30 1.2292450435325e-07
+31 1.104631124349e-07
+32 9.53593541908049e-08
+33 8.82663755419344e-08
+34 8.59738662484233e-08
+35 9.81912648967409e-08
+36 9.73900498024705e-08
+37 7.18070296557016e-08
+38 8.27690485039057e-08
+39 5.86870001484385e-08
+40 7.37871488354358e-08
+41 5.2677943784829e-08
+42 8.54101998015722e-08
+43 6.36908197293451e-08
+44 4.59487772275224e-08
+45 4.4069192739471e-08
+46 5.94468581027741e-08
+47 5.552145765364e-08
+48 4.79970445610434e-08
+49 4.43119709814255e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000149485145811923
+1 0.000149622152093798
+2 0.000148170860484242
+3 0.000149148720083758
+4 0.000150866937474348
+5 0.000147624974488281
+6 0.000207639634027146
+7 0.000151925341924652
+8 0.000150697829667479
+9 0.000150133811985143
+10 0.000146736376336776
+11 0.000151238506077789
+12 0.00014833832392469
+13 0.000148944149259478
+14 0.00015119559247978
+15 0.000147329177707434
+16 0.000150830674101599
+17 0.000145334503031336
+18 0.000151040178025141
+19 0.000150899242726155
+20 0.000149146711919457
+21 0.000144253092003055
+22 0.000147372003993951
+23 0.000148459002957679
+24 0.000149060040712357
+25 0.000151567553984933
+26 0.000146779042552225
+27 0.000147713421029039
+28 0.000150435080286115
+29 0.00015118726878427
+30 0.000148512524901889
+31 0.000150186329847202
+32 0.000150820647832006
+33 0.000146294085425325
+34 0.000147724698763341
+35 0.00015095213893801
+36 0.00014849888975732
+37 0.000150093706906773
+38 0.000146962411236018
+39 0.00015035955584608
+40 0.000152325825183652
+41 0.000151299478602596
+42 0.000148788967635483
+43 0.000150423453305848
+44 0.00014811783330515
+45 0.000150126332300715
+46 0.000148021717905067
+47 0.000150983207277022
+48 0.000152442647959106
+49 0.000149200917803682
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000144113932037726
+1 0.000141342941788025
+2 0.000156581052578986
+3 0.000148350532981567
+4 0.000130770727992058
+5 0.000162934753461741
+6 0.000130103551782668
+7 0.000123717400128953
+8 0.000135275869979523
+9 0.000139046213007532
+10 0.000168992148246616
+11 0.000127730105305091
+12 0.000154303474118933
+13 0.000150705323903821
+14 0.000125913415104151
+15 0.000164163124281913
+16 0.000133213805384003
+17 0.000181484370841645
+18 0.000131627384689637
+19 0.00013418891467154
+20 0.000148422230267897
+21 0.000198650915990584
+22 0.00016340047295671
+23 0.000154371417011134
+24 0.000147726532304659
+25 0.000126146827824414
+26 0.000167875768966042
+27 0.000157498958287761
+28 0.000136567789013498
+29 0.00013080686039757
+30 0.000153218847117387
+31 0.000137772833113559
+32 0.000132677247165702
+33 0.000173731139511801
+34 0.000157915317686275
+35 0.000131325490656309
+36 0.000152097476529889
+37 0.000137957074912265
+38 0.000167713107657619
+39 0.000137309936690144
+40 0.000118102601845749
+41 0.000127783379866742
+42 0.000151271451613866
+43 0.000134951580548659
+44 0.000161892559845001
+45 0.000138445073389448
+46 0.000157688846229576
+47 0.000130881031509489
+48 0.00011857011122629
+49 0.000145724334288388
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.00536947721077571, Learning_Process.pdf b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.00536947721077571, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..ca87800232de39319b55b3e65d641fbe92a5e2b5
Binary files /dev/null and b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.00536947721077571, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.00536947721077571, Learning_Process.tex b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.00536947721077571, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..7fb08bba89b8be6baf6f74a6ad173bb32060f50a
--- /dev/null
+++ b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.00536947721077571, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.28816798915854e-08, ymax=0.000264583989915157,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000124565092846751
+1 3.39012403856032e-05
+2 7.05623415342416e-06
+3 2.50987204708508e-06
+4 1.28428473544773e-06
+5 8.30621218028682e-07
+6 6.27044698831014e-07
+7 5.60250839498622e-07
+8 4.90460479340982e-07
+9 4.10080815527181e-07
+10 3.67617730034908e-07
+11 3.16143228928922e-07
+12 2.88075028720414e-07
+13 2.71553830089033e-07
+14 2.39372781152269e-07
+15 2.12723435311091e-07
+16 1.93288812511128e-07
+17 1.80110433234404e-07
+18 1.65751430358796e-07
+19 1.53086759269172e-07
+20 1.43535103802606e-07
+21 1.33229093535192e-07
+22 1.22104225397379e-07
+23 1.13892632214174e-07
+24 1.07922907943703e-07
+25 9.90597683880878e-08
+26 1.01067236357721e-07
+27 8.99611620752694e-08
+28 8.38099012412385e-08
+29 8.38266558389478e-08
+30 7.78491227038103e-08
+31 7.7134920672961e-08
+32 7.11925522978163e-08
+33 6.80766305549696e-08
+34 6.67814816779355e-08
+35 6.15025612660247e-08
+36 6.46213180743871e-08
+37 6.18546565078759e-08
+38 5.46370415577258e-08
+39 5.58071562295481e-08
+40 5.24364942577904e-08
+41 5.27046033482748e-08
+42 4.59779734285348e-08
+43 4.83880100432543e-08
+44 4.64026648216986e-08
+45 4.34830340623193e-08
+46 4.33127773646902e-08
+47 4.07741431729391e-08
+48 3.87424599068709e-08
+49 4.27705977301684e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000139241528813727
+1 2.92857002932578e-05
+2 6.43642715658643e-06
+3 2.28137423619046e-06
+4 9.35316109007545e-07
+5 7.61457783937658e-07
+6 6.91164245836262e-07
+7 5.29251622083393e-07
+8 4.48276438191897e-07
+9 4.71825927661484e-07
+10 4.07193510909565e-07
+11 3.55569824250779e-07
+12 2.86894675127769e-07
+13 2.15982893791988e-07
+14 1.59798332788341e-07
+15 2.02387383296809e-07
+16 1.66392467804144e-07
+17 1.83499622607997e-07
+18 1.52461595348541e-07
+19 1.80263285187721e-07
+20 1.55990491634839e-07
+21 1.36217636281799e-07
+22 1.40308927143451e-07
+23 1.10559589927561e-07
+24 1.06708284874912e-07
+25 1.2814781769066e-07
+26 1.11788743595298e-07
+27 9.90415074397788e-08
+28 1.05396068761365e-07
+29 7.27422460045091e-08
+30 6.50233573651349e-08
+31 6.36628101347014e-08
+32 6.0737463059013e-08
+33 7.92095988799701e-08
+34 5.89593476263417e-08
+35 6.76078215633424e-08
+36 5.42204752207454e-08
+37 4.52273205553411e-08
+38 7.48806527894885e-08
+39 4.95568848180028e-08
+40 6.51060432232953e-08
+41 4.57846809354123e-08
+42 4.56528077563689e-08
+43 5.70809106648085e-08
+44 4.93886105346064e-08
+45 4.24273309818091e-08
+46 3.79174203146704e-08
+47 4.10021065988531e-08
+48 5.21082093030145e-08
+49 3.50084725653232e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000125181963085197
+1 0.000125880498671904
+2 0.000127153805806302
+3 0.000124086131108925
+4 0.00012196933676023
+5 0.000123691657790914
+6 0.000120355623948853
+7 0.000122274068417028
+8 0.000127780542243272
+9 0.000126516373711638
+10 0.000125810096506029
+11 0.000126619488582946
+12 0.000123732650536112
+13 0.000129179999930784
+14 0.000127721577882767
+15 0.000124149621115066
+16 0.000126472834381275
+17 0.000126914470456541
+18 0.000123721270938404
+19 0.000127037579659373
+20 0.000123437232105061
+21 0.000126285565784201
+22 0.000126184488181025
+23 0.00012503434845712
+24 0.00012553196575027
+25 0.000123538018669933
+26 0.000126044440548867
+27 0.00012596148008015
+28 0.000126681261463091
+29 0.000122603902127594
+30 0.000127989638713188
+31 0.000123712947242893
+32 0.000123640376841649
+33 0.000130097803776152
+34 0.00012559317110572
+35 0.000125554535770789
+36 0.000125957041746005
+37 0.00012447068002075
+38 0.000122864526929334
+39 0.000126890256069601
+40 0.000127680832520127
+41 0.000123712816275656
+42 0.000122927303891629
+43 0.000127809107652865
+44 0.000125609862152487
+45 0.000124109457829036
+46 0.000126334489323199
+47 0.000125609614769928
+48 0.000128428873722441
+49 0.000128104773466475
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000128898303955793
+1 0.000120954951853491
+2 0.000111885448859539
+3 0.000140968317282386
+4 0.000160543830133975
+5 0.0001470629213145
+6 0.000172933170688339
+7 0.000156547015649267
+8 0.000109278822492342
+9 0.000119724885735195
+10 0.000135400638100691
+11 0.000116737202915829
+12 0.000142287026392296
+13 0.000112646237539593
+14 0.000106877349026036
+15 0.000139783820486628
+16 0.000119856144010555
+17 0.0001118178042816
+18 0.00014363945228979
+19 0.00011693146370817
+20 0.000146284917718731
+21 0.0001201922641485
+22 0.000120318101835437
+23 0.000132125191157684
+24 0.000122275421745144
+25 0.000145717975101434
+26 0.000125165155623108
+27 0.000123604651889764
+28 0.000118625226605218
+29 0.000152435779455118
+30 0.000102532678283751
+31 0.000143242985359393
+32 0.000145863494253717
+33 8.61998632899486e-05
+34 0.000126884653582238
+35 0.000128619372844696
+36 0.000122207478852943
+37 0.00013763974129688
+38 0.000146937905810773
+39 0.000121300305181649
+40 0.000108240543340798
+41 0.000142610486363992
+42 0.000151246000314131
+43 0.000105744868051261
+44 0.000125581500469707
+45 0.000138293005875312
+46 0.000119502074085176
+47 0.000128252126160078
+48 0.000100620287412312
+49 0.000101109406386968
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.005443494155557846, Learning_Process.pdf b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.005443494155557846, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..e0165f7b7ef4b4c56c1f08a62dfbd82b8690b1a6
Binary files /dev/null and b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.005443494155557846, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.005443494155557846, Learning_Process.tex b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.005443494155557846, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..13e3f230443afde6071ce4e7c4d9b3097c1d0755
--- /dev/null
+++ b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.005443494155557846, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.85071473818477e-08, ymax=0.000278953134753764,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00014116354577709
+1 3.25566943502054e-05
+2 8.06635034678038e-06
+3 3.56738792106626e-06
+4 1.89814147688594e-06
+5 1.27719829379203e-06
+6 9.40321285725076e-07
+7 6.85871953010064e-07
+8 5.8406476455275e-07
+9 5.09699532358354e-07
+10 4.19448326738348e-07
+11 3.69761920637757e-07
+12 3.07788269537923e-07
+13 2.94685321478028e-07
+14 2.56611741633606e-07
+15 2.30609742857268e-07
+16 2.20085539126558e-07
+17 1.87922225336479e-07
+18 1.68613794926387e-07
+19 1.8137430402021e-07
+20 1.52223947225139e-07
+21 1.47970624198024e-07
+22 1.33528317292075e-07
+23 1.22555263715185e-07
+24 1.2139389582444e-07
+25 1.09742885001651e-07
+26 1.0961943530674e-07
+27 1.04227268593604e-07
+28 9.33558013116453e-08
+29 8.65303277919338e-08
+30 8.70839969024928e-08
+31 8.08451545708522e-08
+32 8.16932939073922e-08
+33 7.2688834507062e-08
+34 7.11548366894021e-08
+35 7.0017492248553e-08
+36 6.7758783472982e-08
+37 6.67682087396315e-08
+38 6.65782309283713e-08
+39 6.21909990172753e-08
+40 5.87003974317213e-08
+41 5.87788520078902e-08
+42 5.33258024404404e-08
+43 5.53891617016689e-08
+44 5.3043248016138e-08
+45 4.91391425327947e-08
+46 4.9433886317729e-08
+47 4.66477310112623e-08
+48 4.7622840781969e-08
+49 4.44531202958842e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000144788558827713
+1 4.43606659246143e-05
+2 1.00294573712745e-05
+3 3.11503322336648e-06
+4 3.02319972433907e-06
+5 1.44514103794791e-06
+6 7.44888097869989e-07
+7 6.00643090820085e-07
+8 5.46834030501486e-07
+9 3.89651376053735e-07
+10 3.95668394048698e-07
+11 3.23336962537724e-07
+12 3.24694241271573e-07
+13 2.95918113124571e-07
+14 3.04512951743163e-07
+15 2.42187809362804e-07
+16 1.81009454536252e-07
+17 2.43061435867276e-07
+18 1.92825368117155e-07
+19 1.21938327879434e-07
+20 1.44740880614336e-07
+21 1.50031951307028e-07
+22 1.61750406846295e-07
+23 1.81817270572537e-07
+24 1.20268609293817e-07
+25 1.10416706888827e-07
+26 8.23574097807978e-08
+27 9.01311452139453e-08
+28 1.20130820846498e-07
+29 1.12923466133452e-07
+30 8.01968766950267e-08
+31 8.45623588929811e-08
+32 9.1367233778783e-08
+33 7.66930412510192e-08
+34 7.65140697467359e-08
+35 6.52211156193516e-08
+36 7.43200416764012e-08
+37 7.00564299904727e-08
+38 6.19393318856964e-08
+39 5.43553326792789e-08
+40 5.91510733727318e-08
+41 5.25388621497314e-08
+42 6.27096454763887e-08
+43 5.4118864056818e-08
+44 5.86985855477451e-08
+45 4.82224216113991e-08
+46 4.85323781163061e-08
+47 5.85057726709692e-08
+48 4.79834731947903e-08
+49 4.32856204213294e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000144280871609226
+1 0.000141718322993256
+2 0.000140728458063677
+3 0.000141729920869693
+4 0.00014487310545519
+5 0.000142877557664178
+6 0.000140284057124518
+7 0.000142979784868658
+8 0.000141054522828199
+9 0.000143523051519878
+10 0.000143268422107212
+11 0.000141639058711007
+12 0.00014040814130567
+13 0.000140702308272012
+14 0.000142399410833605
+15 0.000141059150337242
+16 0.000144201912917197
+17 0.000141849013743922
+18 0.000139080366352573
+19 0.000142109682201408
+20 0.00014155353710521
+21 0.000139548588776961
+22 0.000142387711093761
+23 0.000138528033858165
+24 0.000141384298331104
+25 0.00014110874326434
+26 0.000141256372444332
+27 0.000141903103212826
+28 0.000144341116538271
+29 0.000141129770781845
+30 0.000138970266561955
+31 0.000143178243888542
+32 0.0001418546307832
+33 0.000144989971886389
+34 0.000140573378303088
+35 0.000139930882141925
+36 0.000141197902848944
+37 0.000142771357786842
+38 0.000144343095598742
+39 0.000142841498018242
+40 0.000140266871312633
+41 0.0001410035911249
+42 0.000136574162752368
+43 0.000141951604746282
+44 0.00014144490705803
+45 0.000140494914376177
+46 0.000142459844937548
+47 0.000139836891321465
+48 0.00014069008466322
+49 0.000140232514240779
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.0001172241391032
+1 0.000139674026286229
+2 0.000149259663885459
+3 0.000141290409374051
+4 0.00011137529509142
+5 0.000125735867186449
+6 0.000153778732055798
+7 0.000126960469060577
+8 0.00014203401224222
+9 0.000126671977341175
+10 0.000125729231513105
+11 0.000141062177135609
+12 0.000148925391840748
+13 0.000145982921821997
+14 0.000132091561681591
+15 0.000145973404869437
+16 0.000115725844807457
+17 0.000137806913699023
+18 0.000162140422617085
+19 0.000133799010654911
+20 0.000143220022437163
+21 0.000159716466441751
+22 0.000132023225887679
+23 0.000165287783602253
+24 0.000141458469443023
+25 0.000144858640851453
+26 0.000151049578562379
+27 0.000137230948894285
+28 0.000120590302685741
+29 0.0001431542186765
+30 0.000162737866048701
+31 0.000122109413496219
+32 0.000140946125611663
+33 0.000110199689515866
+34 0.000149998741107993
+35 0.00015212781727314
+36 0.000143174358527176
+37 0.000129277119413018
+38 0.000112897192593664
+39 0.000128488783957437
+40 0.000150647159898654
+41 0.000146343591040932
+42 0.000183713622391224
+43 0.000138385919854045
+44 0.000141423894092441
+45 0.000147720260429196
+46 0.000130772110424004
+47 0.000156162845087238
+48 0.000147820202982984
+49 0.000150895371916704
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.005597689344305359, Learning_Process.pdf b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.005597689344305359, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..55f02d73d7d5ec9dbeac6f5740da684c3784333a
Binary files /dev/null and b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.005597689344305359, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.005597689344305359, Learning_Process.tex b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.005597689344305359, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..7dfe3f2a8172b53d4383619c04d490be8bd4ff8a
--- /dev/null
+++ b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.005597689344305359, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.08935074160876e-08, ymax=0.000266619682765915,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000134603338665329
+1 2.78948882623808e-05
+2 6.77709022056661e-06
+3 2.22862786358746e-06
+4 1.64613015840587e-06
+5 9.50731077864475e-07
+6 7.38731785077107e-07
+7 6.34928028375725e-07
+8 5.38874644462339e-07
+9 4.53296934210812e-07
+10 3.61623847311421e-07
+11 3.22428093113558e-07
+12 2.79812667258739e-07
+13 2.51635896120206e-07
+14 2.40439391063774e-07
+15 1.96906469795977e-07
+16 1.98957252450782e-07
+17 1.7591121093119e-07
+18 1.64274823077903e-07
+19 1.52213232240683e-07
+20 1.44699257020875e-07
+21 1.26321637594629e-07
+22 1.26674166267549e-07
+23 1.16635028746259e-07
+24 1.04183911275868e-07
+25 1.04619694241137e-07
+26 9.57901846732057e-08
+27 9.46181728522788e-08
+28 8.13687535128338e-08
+29 8.01719508558563e-08
+30 7.27470705896849e-08
+31 7.34877971808601e-08
+32 7.26111153426245e-08
+33 6.70328930141295e-08
+34 6.45615401140276e-08
+35 6.08988131034494e-08
+36 5.62068542819816e-08
+37 5.71754554812287e-08
+38 5.65811184571885e-08
+39 5.3740187411222e-08
+40 5.08890174444332e-08
+41 4.72412935437205e-08
+42 4.84232884900848e-08
+43 4.4482820982239e-08
+44 4.59849971434778e-08
+45 4.34511306934837e-08
+46 4.25049613284045e-08
+47 4.03221598332948e-08
+48 4.15782928087083e-08
+49 3.72414419302913e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000117908559332136
+1 2.95024310617009e-05
+2 6.55384656056412e-06
+3 3.92994616049691e-06
+4 1.09318398244795e-06
+5 1.26539509892609e-06
+6 9.50387800457975e-07
+7 4.60588722717148e-07
+8 5.60632429369434e-07
+9 3.64320470680468e-07
+10 4.54142622174913e-07
+11 2.72922733302039e-07
+12 4.06763064120241e-07
+13 3.31114051732584e-07
+14 2.17247361433692e-07
+15 1.82707552198735e-07
+16 1.52914566342588e-07
+17 1.57082794771668e-07
+18 1.81768598395138e-07
+19 1.10308540968163e-07
+20 1.48363028529275e-07
+21 1.07042751551489e-07
+22 1.11465944030442e-07
+23 9.72624079054185e-08
+24 1.1043291436863e-07
+25 9.19381690778209e-08
+26 7.50423509998654e-08
+27 6.55871801313879e-08
+28 7.8028243422068e-08
+29 7.35356167069767e-08
+30 7.88909559901185e-08
+31 7.08385172742965e-08
+32 6.66345130184709e-08
+33 7.4266608862672e-08
+34 6.08238721611087e-08
+35 6.00237299863693e-08
+36 6.74220856922148e-08
+37 5.72484566419007e-08
+38 5.17563378821251e-08
+39 5.50820367095639e-08
+40 4.96612919675954e-08
+41 4.71092675979889e-08
+42 4.00456947602379e-08
+43 4.21029717756483e-08
+44 4.25750990018514e-08
+45 3.94239911827299e-08
+46 4.06059932345215e-08
+47 3.8597264051532e-08
+48 3.21101474298757e-08
+49 3.59570258012809e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000132639310322702
+1 0.000134513640659861
+2 0.000133690526126884
+3 0.000130140746477991
+4 0.000134669913677499
+5 0.000133935507619753
+6 0.000135701469844207
+7 0.000132783883600496
+8 0.000132695306092501
+9 0.000134635381982662
+10 0.000135221751406789
+11 0.000132252898765728
+12 0.000135191643494181
+13 0.000133401714265347
+14 0.000134286441607401
+15 0.000134687259560451
+16 0.000134075875394046
+17 0.000132748711621389
+18 0.00013171712635085
+19 0.000134190791868605
+20 0.000131994805997238
+21 0.000137126102345064
+22 0.000132880435558036
+23 0.000132810208015144
+24 0.000133144625579007
+25 0.000133021327201277
+26 0.00013572079478763
+27 0.00013336144911591
+28 0.000133813533466309
+29 0.000129553882288747
+30 0.000135226073325612
+31 0.000132589731947519
+32 0.000129942956846207
+33 0.000129817926790565
+34 0.000134186237119138
+35 0.000133710796944797
+36 0.000130720683955587
+37 0.000134749396238476
+38 0.000133413632283919
+39 0.000132284694700502
+40 0.000128395564388484
+41 0.000135628593852744
+42 0.000131547727505676
+43 0.000134546207846142
+44 0.000130997868836857
+45 0.000134111629449762
+46 0.000134263464133255
+47 0.000131613109260798
+48 0.000132748857140541
+49 0.00013385628699325
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000133374123834074
+1 0.000117675976071041
+2 0.000124367375974543
+3 0.000157483882503584
+4 0.000116714581963606
+5 0.000123424164485186
+6 0.000106235056591686
+7 0.00013377949653659
+8 0.000132862158352509
+9 0.000117298586701509
+10 0.000113580892502796
+11 0.000137057068059221
+12 0.000112270136014558
+13 0.000125542908790521
+14 0.000117741175927222
+15 0.000115623719466385
+16 0.00012244880781509
+17 0.000135018723085523
+18 0.000141583950608037
+19 0.000121385928650852
+20 0.000141045064083301
+21 0.000112708788947202
+22 0.000132115659653209
+23 0.000132110464619473
+24 0.000131541513837874
+25 0.000132796805701219
+26 0.000108529813587666
+27 0.000129562293295749
+28 0.000124106052680872
+29 0.000161837742780335
+30 0.000111152839963324
+31 0.000135729409521446
+32 0.000157801405293867
+33 0.000163610486197285
+34 0.00012029214121867
+35 0.000123887788504362
+36 0.000152073771459982
+37 0.000115149981866125
+38 0.000130958462250419
+39 0.00013794050028082
+40 0.000173484731931239
+41 0.000108089494460728
+42 0.000144303470733576
+43 0.000120354910905007
+44 0.000148760896991007
+45 0.000120618460641708
+46 0.00011885601998074
+47 0.000142051532748155
+48 0.000133728550281376
+49 0.000123080986668356
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.005664134088712979, Learning_Process.pdf b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.005664134088712979, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..7f90b1f2c87f4c65fdf2f61aa3ad0294c51f2a4a
Binary files /dev/null and b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.005664134088712979, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.005664134088712979, Learning_Process.tex b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.005664134088712979, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..fcb37538e861c03b191acc130cfd79aa0b3cfe0f
--- /dev/null
+++ b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.005664134088712979, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.72347630292165e-08, ymax=0.000279525227776411,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000137351555167697
+1 3.43974388670176e-05
+2 8.46182865643641e-06
+3 2.99192242891877e-06
+4 1.60392994530412e-06
+5 8.65564175001055e-07
+6 6.94174048021523e-07
+7 6.08302343607647e-07
+8 4.82810435187275e-07
+9 4.15788974805764e-07
+10 3.73469418946115e-07
+11 3.2919467685133e-07
+12 2.9480045782293e-07
+13 2.62134278727899e-07
+14 2.35744565202367e-07
+15 2.18735792145708e-07
+16 2.08891520969701e-07
+17 1.87309566967997e-07
+18 1.87652091199197e-07
+19 1.67455908695047e-07
+20 1.59293648493986e-07
+21 1.45372183624204e-07
+22 1.3040295243627e-07
+23 1.16402340211152e-07
+24 1.15622384555536e-07
+25 1.12349376024667e-07
+26 1.052026092907e-07
+27 1.01332048529912e-07
+28 9.79984804416745e-08
+29 1.0044495013517e-07
+30 9.11236881506738e-08
+31 8.55424531209792e-08
+32 8.57367936646369e-08
+33 7.6228147349866e-08
+34 8.12934572991253e-08
+35 6.94015085400679e-08
+36 8.21671761741527e-08
+37 6.35175183560932e-08
+38 6.46515871949305e-08
+39 6.10506631915086e-08
+40 5.97716933725678e-08
+41 5.7829453226077e-08
+42 5.70043212633209e-08
+43 5.41679590071453e-08
+44 5.58781927395557e-08
+45 5.1704684977949e-08
+46 4.77019561628822e-08
+47 4.64805864908158e-08
+48 4.48282584386561e-08
+49 4.52646489179642e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000130978325614706
+1 3.97273070120718e-05
+2 6.15076305621187e-06
+3 4.58948670711834e-06
+4 1.03787840544101e-06
+5 8.44113799303159e-07
+6 4.85691657559073e-07
+7 5.41767576578422e-07
+8 4.10567281505791e-07
+9 4.75325037996299e-07
+10 3.32576718165001e-07
+11 3.66798758477671e-07
+12 3.51815714338954e-07
+13 2.95147657425332e-07
+14 2.6033339395326e-07
+15 2.35022483252578e-07
+16 2.10966092595299e-07
+17 2.00596829813549e-07
+18 1.6337783392828e-07
+19 1.54117728357051e-07
+20 1.41846939527568e-07
+21 2.79374830824963e-07
+22 1.28762664530768e-07
+23 1.48554221368613e-07
+24 1.22174597549929e-07
+25 1.31768530309273e-07
+26 1.13307102367344e-07
+27 1.22437313621049e-07
+28 1.33197076479519e-07
+29 6.71237643246059e-08
+30 8.86941364797167e-08
+31 8.88877451643566e-08
+32 8.37905034245523e-08
+33 5.77121355149757e-08
+34 8.56059401144194e-08
+35 6.71677682362315e-08
+36 5.67945335205877e-08
+37 1.12901332727233e-07
+38 6.32475618544959e-08
+39 5.52562369193765e-08
+40 4.14433927176105e-08
+41 4.95079248707953e-08
+42 5.63796440644637e-08
+43 4.26578417034307e-08
+44 5.35339630403087e-08
+45 6.88403289927919e-08
+46 7.04223310776797e-08
+47 4.73512145049426e-08
+48 4.57817321830589e-08
+49 4.34597424714411e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000139308336656541
+1 0.000138810617499985
+2 0.000137417780933902
+3 0.000137383656692691
+4 0.000135550726554357
+5 0.000139927535201423
+6 0.000137125665787607
+7 0.000136239701532759
+8 0.000135655573103577
+9 0.00013700986164622
+10 0.000138441930175759
+11 0.000140525182359852
+12 0.000137633644044399
+13 0.000136512273456901
+14 0.000137889757752419
+15 0.00013491818390321
+16 0.000132830027723685
+17 0.000136874936288223
+18 0.000135272843181156
+19 0.000134457892272621
+20 0.000136638394906186
+21 0.000133671550429426
+22 0.000140091724460945
+23 0.0001370146201225
+24 0.000139469499117695
+25 0.000136743285111152
+26 0.000137414419441484
+27 0.000136589515022933
+28 0.000136966031277552
+29 0.000139397307066247
+30 0.000135288661113009
+31 0.000137650786200538
+32 0.00013839358871337
+33 0.000134397050715052
+34 0.000133765788632445
+35 0.000136832764837891
+36 0.000139033509185538
+37 0.000136742353788577
+38 0.000136638336698525
+39 0.000136980102979578
+40 0.000139560434035957
+41 0.00013350837980397
+42 0.000136592774651945
+43 0.000137607552460395
+44 0.000183691605343483
+45 0.000136540766106918
+46 0.000137455863296054
+47 0.00013205106370151
+48 0.000140032861963846
+49 0.000139473690069281
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000113710877485573
+1 0.000120960408821702
+2 0.000134208108647726
+3 0.000134627247462049
+4 0.000150198538904078
+5 0.000109941895061638
+6 0.000136181653942913
+7 0.000143263605423272
+8 0.00014739774633199
+9 0.000136849106638692
+10 0.000124445999972522
+11 0.000106219973531552
+12 0.000130102314869873
+13 0.000141043579787947
+14 0.00012671496369876
+15 0.000156221358338371
+16 0.000179316150024533
+17 0.000135809648782015
+18 0.00015057522978168
+19 0.000156464302563109
+20 0.000137408671434969
+21 0.000165341116371565
+22 0.00011021407408407
+23 0.000136729373480193
+24 0.000118794145237189
+25 0.000138122093630955
+26 0.000134696587338112
+27 0.000139327356009744
+28 0.000137944298330694
+29 0.000118731812108308
+30 0.000153146465891041
+31 0.00012955981947016
+32 0.000126390004879795
+33 0.00016261990822386
+34 0.000165213888976723
+35 0.000138984600198455
+36 0.000118228796054609
+37 0.000140153264510445
+38 0.000142690711072646
+39 0.00013862804917153
+40 0.000114407252112869
+41 0.000166540587088093
+42 0.000136436239699833
+43 0.000127831226564012
+44 0.000113287918793503
+45 0.00014036544598639
+46 0.0001321558811469
+47 0.00018316533532925
+48 0.000108299485873431
+49 0.000118874122563284
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.006472128228753384, Learning_Process.pdf b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.006472128228753384, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..e1b102920ea29e26c7c5eb981cc73d3fa174d4d7
Binary files /dev/null and b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.006472128228753384, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.006472128228753384, Learning_Process.tex b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.006472128228753384, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..223687f89aa1ea6676174d3a32da0a6490ae3285
--- /dev/null
+++ b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.006472128228753384, Learning_Process.tex	
@@ -0,0 +1,259 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.77706206886968e-08, ymax=0.0262859012833567,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000129692256450653
+1 2.90756433969364e-05
+2 5.29370936419582e-06
+3 1.7923107407114e-06
+4 9.58546706897323e-07
+5 7.57726411393378e-07
+6 5.60253056391957e-07
+7 4.72911210636084e-07
+8 4.46834150125142e-07
+9 3.94135071246637e-07
+10 3.12328353402336e-07
+11 2.66343050725482e-07
+12 2.65086498529854e-07
+13 2.06773989930298e-07
+14 2.03719253022427e-07
+15 1.64744605513079e-07
+16 1.71426421502474e-07
+17 1.45535139495223e-07
+18 1.37934662802763e-07
+19 1.34037435373102e-07
+20 1.22641196753648e-07
+21 1.16356225987602e-07
+22 1.07896532597351e-07
+23 9.69026032748843e-08
+24 9.45339024838177e-08
+25 9.43751032878026e-08
+26 8.47673859993847e-08
+27 8.42449878746265e-08
+28 7.26844788800918e-08
+29 7.04333658063661e-08
+30 6.8527661767348e-08
+31 6.7478183041203e-08
+32 6.36043040458389e-08
+33 6.11219661550422e-08
+34 6.34360972640025e-08
+35 5.78305971998816e-08
+36 5.31935029357555e-08
+37 5.18479907896108e-08
+38 5.12017237497275e-08
+39 4.70193377566375e-08
+40 4.68193128710936e-08
+41 4.66619205496954e-08
+42 4.60184921280415e-08
+43 4.54403483729493e-08
+44 4.24812043320344e-08
+45 4.05241529222167e-08
+46 3.80363474050682e-08
+47 3.96830728277564e-08
+48 3.64652876783111e-08
+49 3.65181627159927e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000142905744723976
+1 1.5447365512955e-05
+2 6.16627448835061e-06
+3 1.93403138837311e-06
+4 1.02154342584981e-06
+5 6.4574919633742e-07
+6 4.80361848076427e-07
+7 6.8901073291272e-07
+8 3.80039836045398e-07
+9 2.60015724506957e-07
+10 2.18295937770563e-07
+11 2.61793559275247e-07
+12 1.86105623356525e-07
+13 1.93002762216565e-07
+14 1.98448887545055e-07
+15 1.80307310415628e-07
+16 1.78669935735343e-07
+17 1.70302627111596e-07
+18 1.1503025376669e-07
+19 1.39782500241381e-07
+20 9.40211393185564e-08
+21 9.5246676323768e-08
+22 1.14024537367641e-07
+23 1.10829887489672e-07
+24 8.23504464619873e-08
+25 9.44919662515531e-08
+26 1.00948589931704e-07
+27 9.3822613678185e-08
+28 8.27239361456122e-08
+29 9.05163517472829e-08
+30 6.35837906770576e-08
+31 9.02045371731219e-08
+32 5.08287847367228e-08
+33 7.37747285484147e-08
+34 4.49343353636777e-08
+35 5.00180377116521e-08
+36 1.09855818664073e-07
+37 5.94845914747566e-08
+38 4.7268752467744e-08
+39 4.65962628481975e-08
+40 3.4955981220719e-08
+41 4.80680064640637e-08
+42 4.00481283691079e-08
+43 4.36329834485605e-08
+44 4.15702459122258e-08
+45 4.79930974961462e-08
+46 4.84566555769561e-08
+47 3.38967502955256e-08
+48 3.61304977047894e-08
+49 3.52998092978396e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000130044820252806
+1 0.000133009045384824
+2 0.000129256150103174
+3 0.000131429915199988
+4 0.013780577108264
+5 0.000130547312437557
+6 0.000132941990159452
+7 0.000128797590150498
+8 0.000129392137750983
+9 0.000129492182168178
+10 0.000129338775877841
+11 0.000130963177070953
+12 0.000131064807646908
+13 0.000128720770590007
+14 0.00013202169793658
+15 0.000132952889543958
+16 0.000135496185976081
+17 0.000132156637846492
+18 0.000130857981275767
+19 0.000128228944959119
+20 0.000128258878248744
+21 0.000128063940792345
+22 0.000127905397675931
+23 0.000132751709315926
+24 0.000131466949824244
+25 0.000131901382701471
+26 0.000128939951537177
+27 0.000126882310723886
+28 0.000133450885186903
+29 0.000130707878270186
+30 0.000130066953715868
+31 0.000130913351313211
+32 0.000132946690428071
+33 0.000129871594253927
+34 0.00012853107182309
+35 0.000129459571326151
+36 0.00013439214671962
+37 0.000133796376758255
+38 0.000132036540890113
+39 0.000134064801386558
+40 0.000131608947413042
+41 0.000131981476442888
+42 0.000132972723804414
+43 0.000129802530864254
+44 0.000132997694890946
+45 0.000130885498947464
+46 0.000127120641991496
+47 0.000132423359900713
+48 0.000130261003505439
+49 0.000130853790324181
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000136049493448809
+1 0.000109848035208415
+2 0.00014789386477787
+3 0.000125413047499023
+4 0.000106670369859785
+5 0.000129555861349218
+6 0.000111113258753903
+7 0.000148038889165036
+8 0.000141169017297216
+9 0.000141835698741488
+10 0.000143690471304581
+11 0.000128522893646732
+12 0.000128136758576147
+13 0.000148502091178671
+14 0.000119394600915257
+15 0.000115266710054129
+16 9.82313285931014e-05
+17 0.000118753712740727
+18 0.00012631258869078
+19 0.000151829473907128
+20 0.000153295099153183
+21 0.000155310248374008
+22 0.000156910755322315
+23 0.000129166481201537
+24 0.000128490195493214
+25 0.000120486853120383
+26 0.000146970764035359
+27 0.000162333977641538
+28 0.00010626221774146
+29 0.000130059619550593
+30 0.000136284113978036
+31 0.00013035575102549
+32 0.000110711647721473
+33 0.000140052638016641
+34 0.000153212764416821
+35 0.000139628959004767
+36 9.83819627435878e-05
+37 0.000103896243672352
+38 0.000119406962767243
+39 9.96096787275746e-05
+40 0.000124349593534134
+41 0.00012143311323598
+42 0.000110410292109009
+43 0.00014302707859315
+44 0.000109415690531023
+45 0.000129948937683366
+46 0.00016385261551477
+47 0.000115299691969994
+48 0.00013507365656551
+49 0.000130359389004298
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.006569130703773432, Learning_Process.pdf b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.006569130703773432, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..8d247c0744e6974162ce6f3096c0e39fc5049049
Binary files /dev/null and b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.006569130703773432, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.006569130703773432, Learning_Process.tex b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.006569130703773432, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..4f96e665412ce66a1e173919a293e13fd5548e26
--- /dev/null
+++ b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.006569130703773432, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.59705649341847e-08, ymax=0.000253333139072053,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000127466206322424
+1 2.39415094256401e-05
+2 5.12118049300625e-06
+3 2.08580945582071e-06
+4 1.02299486570701e-06
+5 6.05019522481598e-07
+6 4.83346354940295e-07
+7 3.8790369671915e-07
+8 3.21632654731729e-07
+9 2.76542351684839e-07
+10 2.32652382692322e-07
+11 2.24926083092214e-07
+12 1.92354733030697e-07
+13 1.85685792075674e-07
+14 1.54580362732304e-07
+15 1.50935093756743e-07
+16 1.32968054344929e-07
+17 1.19949646659734e-07
+18 1.1090671847569e-07
+19 1.07210510691402e-07
+20 9.31904295953245e-08
+21 8.21285084384726e-08
+22 8.56204067645194e-08
+23 8.34576781016949e-08
+24 7.50660547055304e-08
+25 6.37312496110098e-08
+26 7.13841927790781e-08
+27 6.02470038302272e-08
+28 6.07409518238455e-08
+29 5.4596522858219e-08
+30 5.65860851509115e-08
+31 5.14666744777514e-08
+32 5.46556258029796e-08
+33 4.85952114104293e-08
+34 4.73101913200935e-08
+35 4.32560796070902e-08
+36 4.58548328197139e-08
+37 4.10262330774458e-08
+38 4.06791649254501e-08
+39 3.7859830825937e-08
+40 4.04013960064731e-08
+41 3.6250433765872e-08
+42 3.6375563894353e-08
+43 3.27855573800662e-08
+44 3.41906947198822e-08
+45 2.99531244252194e-08
+46 3.03550500291294e-08
+47 3.00736715530547e-08
+48 3.09344123650135e-08
+49 2.76018568001746e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000127872015582398
+1 2.57231531577418e-05
+2 6.18872309132712e-06
+3 2.0825336832786e-06
+4 9.72087946138345e-07
+5 9.57934162215679e-07
+6 4.70274784447611e-07
+7 3.15232512093644e-07
+8 3.16117848342401e-07
+9 4.08595951739699e-07
+10 3.42077981940747e-07
+11 1.97145780589381e-07
+12 2.21686747181593e-07
+13 1.81713900815339e-07
+14 1.68461625094096e-07
+15 1.25413563978327e-07
+16 1.04202399597852e-07
+17 1.24547341329162e-07
+18 1.32738890101791e-07
+19 1.05061467081669e-07
+20 9.37279125423629e-08
+21 1.06536667487944e-07
+22 6.9842599259573e-08
+23 6.49502140959157e-08
+24 9.38329307587082e-08
+25 1.00492435706201e-07
+26 5.889063459108e-08
+27 5.54716272915812e-08
+28 6.31260874683903e-08
+29 8.13039875424693e-08
+30 6.11194010957661e-08
+31 5.12251823181487e-08
+32 5.26953165547184e-08
+33 6.06480554665723e-08
+34 3.66495349624074e-08
+35 3.44048274314446e-08
+36 3.78029305636574e-08
+37 4.33597016069598e-08
+38 3.61013370309138e-08
+39 3.10086640809004e-08
+40 3.97266113338901e-08
+41 3.24904370074819e-08
+42 3.37515011494816e-08
+43 3.72115671609663e-08
+44 2.84922752058492e-08
+45 2.77866831766005e-08
+46 3.61460656961299e-08
+47 2.97645730285012e-08
+48 2.47882727677506e-08
+49 2.99886089294432e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000128329440485686
+1 0.000126707906019874
+2 0.000126463390188292
+3 0.000129035921418108
+4 0.000128973289974965
+5 0.000125613601994701
+6 0.00012397050159052
+7 0.000129269537865184
+8 0.000123361154692248
+9 0.000129940613987856
+10 0.000125152873806655
+11 0.000125009624753147
+12 0.000128379135276191
+13 0.000127193095977418
+14 0.000127290157251991
+15 0.00012464752944652
+16 0.000127406296087429
+17 0.000128064799355343
+18 0.000127492603496648
+19 0.00012453185627237
+20 0.000128604064229876
+21 0.000129019434098154
+22 0.000128437372040935
+23 0.00012782245175913
+24 0.000128875530208461
+25 0.000126314625958912
+26 0.000127947932924144
+27 0.000125481397844851
+28 0.000124795216834173
+29 0.000124061232781969
+30 0.000128679690533318
+31 0.000127625040477142
+32 0.000123166042612866
+33 0.000126865721540526
+34 0.000126814018585719
+35 0.000125652033602819
+36 0.000128523679450154
+37 0.000128517785924487
+38 0.000124519923701882
+39 0.000129316060338169
+40 0.000123911318951286
+41 0.000128126586787403
+42 0.000127738574519753
+43 0.000129844906041399
+44 0.000127955194329843
+45 0.000129031395772472
+46 0.000127432474982925
+47 0.000125957245472819
+48 0.000130095912027173
+49 0.000129778709379025
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000115971990453545
+1 0.000128608648083173
+2 0.000134592337417416
+3 0.000111406356154475
+4 0.000112409114080947
+5 0.000140724892844446
+6 0.000154709065100178
+7 0.000106748266262002
+8 0.000158478142111562
+9 9.98818213702179e-05
+10 0.000143759403727017
+11 0.00014564156299457
+12 0.00011638584692264
+13 0.000126918777823448
+14 0.000125587030197494
+15 0.00014554888184648
+16 0.000124178943224251
+17 0.000120006327051669
+18 0.000124074504128657
+19 0.000150171224959195
+20 0.00011645053018583
+21 0.000109213986434042
+22 0.000114285910967737
+23 0.000121720157039817
+24 0.000111195222416427
+25 0.000135570677230135
+26 0.000121649201901164
+27 0.000142900637001731
+28 0.000148805207572877
+29 0.000153704007971101
+30 0.000114656337245833
+31 0.000123749588965438
+32 0.000163217235240154
+33 0.000133313791593537
+34 0.000130537897348404
+35 0.000138984716613777
+36 0.000114346112241037
+37 0.00011258311860729
+38 0.000152423570398241
+39 0.000106931547634304
+40 0.00015185221855063
+41 0.00011782504589064
+42 0.000122141660540365
+43 0.000103757440228947
+44 0.000119786105642561
+45 0.00011120988347102
+46 0.000121398035844322
+47 0.000135073554702103
+48 0.000100180019217078
+49 0.000104246828414034
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.006778899205216952, Learning_Process.pdf b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.006778899205216952, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..bf648bf3c664a6733aaaa8f4f557ef748c41fa60
Binary files /dev/null and b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.006778899205216952, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.006778899205216952, Learning_Process.tex b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.006778899205216952, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..e45f37335422045fea046cb265ba78a31fc88e4f
--- /dev/null
+++ b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.006778899205216952, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.71921916717553e-08, ymax=0.000236758059046782,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000117770752694923
+1 2.80036911135539e-05
+2 5.82001212023897e-06
+3 1.69136478689325e-06
+4 1.2673028777499e-06
+5 7.61490412060084e-07
+6 6.28279224201833e-07
+7 5.50090476281184e-07
+8 3.81070208277379e-07
+9 3.13705470489367e-07
+10 6.39563859294867e-06
+11 2.34139477583994e-07
+12 2.06816835657264e-07
+13 1.8590428396692e-07
+14 1.52371484318792e-07
+15 1.51589290453558e-07
+16 1.33170360072654e-07
+17 1.24082205843479e-07
+18 1.13668328083349e-07
+19 1.02387176070806e-07
+20 9.2912223692565e-08
+21 9.0303707622752e-08
+22 8.58706030726353e-08
+23 8.33657338716876e-08
+24 7.95448258372744e-08
+25 7.47078985341432e-08
+26 7.07949041611755e-08
+27 6.26414475846104e-08
+28 6.16247390894387e-08
+29 5.61737074633584e-08
+30 5.21610985515508e-08
+31 5.15301259440548e-08
+32 4.88607945214881e-08
+33 5.14756237635083e-08
+34 4.68215368698566e-08
+35 4.35652758312699e-08
+36 4.3760099543988e-08
+37 4.55685302824804e-08
+38 4.06481497350342e-08
+39 3.79904889769023e-08
+40 3.5706431589233e-08
+41 3.7970195876369e-08
+42 3.56714728866336e-08
+43 3.35961800601581e-08
+44 3.34319736339239e-08
+45 3.32815695003319e-08
+46 3.22927107276882e-08
+47 3.03173415261426e-08
+48 2.99675555481826e-08
+49 2.8367976412369e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000130092463223264
+1 2.17771175812231e-05
+2 4.51086179964477e-06
+3 5.83360906603048e-06
+4 9.62141825766594e-07
+5 6.98701512646949e-07
+6 6.99356633049319e-07
+7 4.59452309087283e-07
+8 4.45149311190107e-07
+9 3.15682029849995e-07
+10 2.52992776950123e-07
+11 2.43495378526859e-07
+12 2.14922039276644e-07
+13 1.52727636759664e-07
+14 1.65045193512015e-07
+15 1.48158022739153e-07
+16 1.36055732014029e-07
+17 1.40502109502449e-07
+18 1.28842913227345e-07
+19 1.0436829001037e-07
+20 9.83261543296976e-08
+21 9.5854012727159e-08
+22 8.56775770330387e-08
+23 6.98778137575573e-08
+24 6.0198637186204e-08
+25 7.56026423687217e-08
+26 6.60527064155758e-08
+27 5.17607645633689e-08
+28 6.38618686821246e-08
+29 5.70818876610701e-08
+30 5.17258058607695e-08
+31 4.13918535002722e-08
+32 5.51057510733699e-08
+33 4.99407342147151e-08
+34 3.43708528305342e-08
+35 4.47789680890764e-08
+36 4.62056206629313e-08
+37 4.03065705256722e-08
+38 4.18745216279603e-08
+39 5.62858772923391e-08
+40 6.10837034287215e-08
+41 3.56519116451182e-08
+42 2.91199580004786e-08
+43 3.95065775649073e-08
+44 3.65128975943207e-08
+45 2.95887225831848e-08
+46 2.65134598720351e-08
+47 3.05741032491369e-08
+48 2.72264522038768e-08
+49 3.34500320775533e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000119236872706097
+1 0.00012067591160303
+2 0.000118690259114373
+3 0.00011930700566154
+4 0.000118851021397859
+5 0.000117825824418105
+6 0.000121229939395562
+7 0.000118130141345318
+8 0.000117270668852143
+9 0.00011584248568397
+10 0.000118084950372577
+11 0.000117732692160644
+12 0.000117513744044118
+13 0.000116936906124465
+14 0.000118470423331019
+15 0.000118567157187499
+16 0.00011887846630998
+17 0.000116500181320589
+18 0.000115329690743238
+19 0.000117894669529051
+20 0.000117980962386355
+21 0.000117891126137692
+22 0.000114661706902552
+23 0.000120485557999928
+24 0.000121083052363247
+25 0.000117042931378819
+26 0.000119192984129768
+27 0.000119550444651395
+28 0.000119389304018114
+29 0.000118141077109613
+30 0.000120344033348374
+31 0.000118138312245719
+32 0.000117455012514256
+33 0.000119341166282538
+34 0.000119815063953865
+35 0.000120456708827987
+36 0.000117795338155702
+37 0.000118476207717322
+38 0.000117148862045724
+39 0.000118527044833172
+40 0.000118834323075134
+41 0.000119805794383865
+42 0.000118114607175812
+43 0.000117182447866071
+44 0.000115886439743917
+45 0.000120571297884453
+46 0.000120607808639761
+47 0.000120030490506906
+48 0.000116683688247576
+49 0.000121015269542113
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000113884183519986
+1 0.000103205886262003
+2 0.000122004646982532
+3 0.000110448316263501
+4 0.00011604449537117
+5 0.000127545819850639
+6 9.4470007752534e-05
+7 0.000123762743896805
+8 0.000131991866510361
+9 0.000141296695801429
+10 0.000133600842673331
+11 0.000128879037220031
+12 0.000131066655740142
+13 0.000133299414301291
+14 0.000121801873319782
+15 0.00011711276602
+16 0.000120051670819521
+17 0.000136531787575223
+18 0.000146547012263909
+19 0.000128216808661819
+20 0.00012524907651823
+21 0.000124618760310113
+22 0.000153521643369459
+23 0.000102978949144017
+24 0.000100033954367973
+25 0.000131748311105184
+26 0.000112532055936754
+27 0.000113492678792682
+28 0.000112498084490653
+29 0.000120608885481488
+30 0.00010366673086537
+31 0.000122838420793414
+32 0.000127248902572319
+33 0.000112624096800573
+34 0.00010929173004115
+35 0.000104102007753681
+36 0.000126403203466907
+37 0.000117191229946911
+38 0.000131288194097579
+39 0.000129272186313756
+40 0.000121360695629846
+41 0.000107760810351465
+42 0.000123166741104797
+43 0.000128438783576712
+44 0.000142827702802606
+45 0.000100001343525946
+46 0.000102978156064637
+47 0.000108752741653007
+48 0.000138502844492905
+49 9.67003361438401e-05
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.007121120548401286, Learning_Process.pdf b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.007121120548401286, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..796cd8f001331f6f3d7d8ed6eaa87dcc372010a2
Binary files /dev/null and b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.007121120548401286, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.007121120548401286, Learning_Process.tex b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.007121120548401286, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..5238ffa452107d9377f81af73f3c8697e1db3f1b
--- /dev/null
+++ b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.007121120548401286, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.82365569917199e-08, ymax=0.000305367119453952,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000159024159074761
+1 2.592404052848e-05
+2 4.05496575694997e-06
+3 1.52675204390107e-06
+4 8.76711681030429e-07
+5 6.37171808648418e-07
+6 4.64709927427975e-07
+7 3.91098978980153e-07
+8 3.58061839733637e-07
+9 3.25000172551881e-07
+10 2.69239791350628e-07
+11 2.46295172701139e-07
+12 2.14004202803153e-07
+13 1.87961845199425e-07
+14 1.65152371778277e-07
+15 1.58856707344057e-07
+16 1.39199855198058e-07
+17 1.28518024666846e-07
+18 1.19496718298251e-07
+19 1.09559536554116e-07
+20 1.02721692485375e-07
+21 9.89289929975712e-08
+22 9.04333461448914e-08
+23 8.99704346579711e-08
+24 7.79676980755539e-08
+25 7.58297105107886e-08
+26 7.20892430194908e-08
+27 7.09139982291163e-08
+28 6.49653344453327e-08
+29 6.75523068593975e-08
+30 5.92999249704462e-08
+31 5.72228628925586e-08
+32 5.64878384068379e-08
+33 5.43443121614473e-08
+34 5.34922648398606e-08
+35 4.76360781931362e-08
+36 4.58292070959487e-08
+37 4.44065548776962e-08
+38 4.46631318595792e-08
+39 4.20209644858005e-08
+40 3.83305831519465e-08
+41 3.66620547254115e-08
+42 3.8178669115041e-08
+43 3.70089558998643e-08
+44 3.49532278676179e-08
+45 3.53650086992729e-08
+46 3.29513341057464e-08
+47 3.34566081505727e-08
+48 3.19419939387444e-08
+49 3.1509511444483e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.00014340624329634
+1 2.55209452006966e-05
+2 3.64453876500193e-06
+3 2.25100825446134e-06
+4 7.37833374842012e-07
+5 5.22909544997674e-07
+6 4.56828956885147e-07
+7 3.99650531335283e-07
+8 3.36146030122109e-07
+9 2.6895182259068e-07
+10 2.59528007973131e-07
+11 1.95690560644834e-07
+12 1.73572018979939e-07
+13 1.68954812806987e-07
+14 1.77349917862557e-07
+15 1.77974499138145e-07
+16 1.53890553633573e-07
+17 1.53760865373442e-07
+18 1.20467689157522e-07
+19 1.00972037841984e-07
+20 9.02103636235552e-08
+21 9.87481030279014e-08
+22 7.49783879427923e-08
+23 9.9425214727944e-08
+24 8.10927858196919e-08
+25 8.1879846902666e-08
+26 5.49774270552916e-08
+27 5.29322612408123e-08
+28 7.22747728332251e-08
+29 4.37655280904892e-08
+30 5.44157288118186e-08
+31 5.50743664007314e-08
+32 4.7731369079429e-08
+33 5.55115384770488e-08
+34 3.84573404232924e-08
+35 5.25804573214828e-08
+36 5.7377377515877e-08
+37 5.36326574263057e-08
+38 3.85791523171974e-08
+39 4.16794385671437e-08
+40 4.7612608966574e-08
+41 3.78322759786442e-08
+42 3.1591504523476e-08
+43 3.56778109278366e-08
+44 4.34585665232134e-08
+45 3.79519988769061e-08
+46 3.03060829764945e-08
+47 3.12636103672048e-08
+48 3.07467793447813e-08
+49 2.83750978269381e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000157326809130609
+1 0.000157830014359206
+2 0.000154957495396957
+3 0.000159639181219973
+4 0.000153139219037257
+5 0.000155944988364354
+6 0.000160542316734791
+7 0.000158916940563358
+8 0.000154533234308474
+9 0.000159637231263332
+10 0.000159288436407223
+11 0.000159502495080233
+12 0.000158623981405981
+13 0.000158717419253662
+14 0.000158019131049514
+15 0.000157347050844692
+16 0.00015631812857464
+17 0.000158331968123093
+18 0.000155842732056044
+19 0.000157004993525334
+20 0.000154751076479442
+21 0.000156728681758977
+22 0.000158933995408006
+23 0.000159029776114039
+24 0.000155656132847071
+25 0.000156187976244837
+26 0.000162574273417704
+27 0.000157662507263012
+28 0.000160585303092375
+29 0.000155701083713211
+30 0.000155880698002875
+31 0.000159029397764243
+32 0.000156906040501781
+33 0.000158516006194986
+34 0.000157285801833495
+35 0.000155004527186975
+36 0.000157698246766813
+37 0.000156779860844836
+38 0.000159372211783193
+39 0.000156583220814355
+40 0.000156491310917772
+41 0.000158684415509924
+42 0.000156461290316656
+43 0.000154927620314993
+44 0.000156894675455987
+45 0.0001595513895154
+46 0.000158526352606714
+47 0.000154995504999533
+48 0.000159551273100078
+49 0.000157971313456073
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000158384369569831
+1 0.000154499488417059
+2 0.000191858547623269
+3 0.000138724382850341
+4 0.000196258173673414
+5 0.000174549539224245
+6 0.000134377725771628
+7 0.000148413004353642
+8 0.000183853655471466
+9 0.000139778348966502
+10 0.000142879827762954
+11 0.000143373792525381
+12 0.000150906722410582
+13 0.000147099955938756
+14 0.000160764655447565
+15 0.00015945865015965
+16 0.000168908372870646
+17 0.000152093343785964
+18 0.000175213892362081
+19 0.000167703023180366
+20 0.000188753343536519
+21 0.000166585698025301
+22 0.000143311408464797
+23 0.000142887336551212
+24 0.00017617030243855
+25 0.000170388360857032
+26 0.000117952738946769
+27 0.000155979098053649
+28 0.000129712512716651
+29 0.000174528046045452
+30 0.000171201376360841
+31 0.000142314689583145
+32 0.000163932869327255
+33 0.000150551393744536
+34 0.000159131057444029
+35 0.000179843496880494
+36 0.000154255540110171
+37 0.000165641700732522
+38 0.000140893913339823
+39 0.000168765560374595
+40 0.000167896840139292
+41 0.000147132464917377
+42 0.000166673751664348
+43 0.00018229940906167
+44 0.000163491495186463
+45 0.000139671741635539
+46 0.000150444990140386
+47 0.000179399488843046
+48 0.000139832292916253
+49 0.000149261846672744
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.007799727392044261, Learning_Process.pdf b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.007799727392044261, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..24dd9fb158ef615ce95bbd599c26143b0f2cc5ff
Binary files /dev/null and b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.007799727392044261, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.007799727392044261, Learning_Process.tex b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.007799727392044261, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..633ad60021e5e6cd366c29a0c388e7a1ac450323
--- /dev/null
+++ b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.007799727392044261, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.26385081322648e-08, ymax=0.000249297074932885,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00012415973469615
+1 1.90043647307903e-05
+2 3.45834041581838e-06
+3 1.21518019113864e-06
+4 7.20794560038485e-07
+5 4.85388682136545e-07
+6 3.76718730876746e-07
+7 3.11554316567708e-07
+8 2.39336173990523e-07
+9 2.03902132511757e-07
+10 2.00814056938725e-07
+11 1.72661998476542e-07
+12 1.54217346448604e-07
+13 1.29832073980651e-07
+14 1.25629554759144e-07
+15 1.17387273235181e-07
+16 1.02371309651517e-07
+17 9.30648766939157e-08
+18 8.17821899090632e-08
+19 8.80313564266544e-08
+20 7.30550837602095e-08
+21 7.08824785533579e-08
+22 6.56336140991698e-08
+23 6.2193535654842e-08
+24 5.82975090424043e-08
+25 5.92981201918974e-08
+26 5.50051808545504e-08
+27 5.29567607543413e-08
+28 4.98517600533432e-08
+29 4.65622527201504e-08
+30 4.53214354934062e-08
+31 4.24387920361369e-08
+32 4.00929636157343e-08
+33 4.22304182734479e-08
+34 3.86635541360647e-08
+35 3.57232856629253e-08
+36 3.62955603350201e-08
+37 3.31025553634845e-08
+38 3.41765691302953e-08
+39 3.34168035465154e-08
+40 2.81192757967119e-08
+41 3.2347983847103e-08
+42 2.90442940809044e-08
+43 2.87184942493468e-08
+44 2.74221569895872e-08
+45 2.5899378641725e-08
+46 2.45012881094908e-08
+47 2.51410945395492e-08
+48 2.40435280574047e-08
+49 2.40293704933947e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000120613643957768
+1 3.00684605463175e-05
+2 4.83146277474589e-06
+3 1.39950395805499e-06
+4 7.1652300448477e-07
+5 3.48065015032262e-07
+6 3.00928007845869e-07
+7 2.40763512238118e-07
+8 2.3540063409655e-07
+9 2.803664926887e-07
+10 2.50875160645592e-07
+11 1.92654766806299e-07
+12 1.57180181759031e-07
+13 1.32277051534402e-07
+14 7.90615999335387e-08
+15 9.63095772021916e-08
+16 1.1846709924157e-07
+17 9.98503324467492e-08
+18 9.23557337273451e-08
+19 7.11190253355198e-08
+20 6.32428722724399e-08
+21 8.17438703393236e-08
+22 7.46157908793066e-08
+23 8.69193570451898e-08
+24 7.10689818106403e-08
+25 4.63599256761427e-08
+26 4.70276511066459e-08
+27 3.45619177721801e-08
+28 4.04807209974933e-08
+29 3.48672983818687e-08
+30 4.03315105756974e-08
+31 5.37842304026981e-08
+32 4.12850731379422e-08
+33 3.304745632704e-08
+34 4.2073143191601e-08
+35 3.30629568168206e-08
+36 3.24213438318566e-08
+37 3.48757964729884e-08
+38 2.39746782426664e-08
+39 2.52121026278473e-08
+40 4.89693796623669e-08
+41 3.22636530825093e-08
+42 2.54653116371628e-08
+43 2.30546497448358e-08
+44 2.84577250653228e-08
+45 2.31906209791077e-08
+46 3.25632463216152e-08
+47 2.68979700734917e-08
+48 2.34425119316484e-08
+49 1.98118055294572e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00012492947280407
+1 0.000123485369840637
+2 0.000122359706438147
+3 0.000124694051919505
+4 0.000123939622426406
+5 0.000123497477034107
+6 0.000125652208225802
+7 0.000123143967357464
+8 0.000122563316836022
+9 0.00012529622472357
+10 0.000123201563837938
+11 0.000120031196274795
+12 0.000124283993500285
+13 0.000123158577480353
+14 0.000122652971185744
+15 0.000120427401270717
+16 0.000124730649986304
+17 0.000125664460938424
+18 0.000123953795991838
+19 0.000120913900900632
+20 0.000123579346109182
+21 0.000125908627524041
+22 0.000124701284221373
+23 0.000124025405966677
+24 0.000120100114145316
+25 0.00012317746586632
+26 0.00012487692583818
+27 0.000123242643894628
+28 0.000125768856378272
+29 0.000125898863188922
+30 0.000123341422295198
+31 0.000126906801597215
+32 0.000122289464343339
+33 0.000122556753922254
+34 0.000125803737319075
+35 0.000124486410641111
+36 0.000120524535304867
+37 0.00012463286111597
+38 0.000124414684250951
+39 0.000122821948025376
+40 0.000124310201499611
+41 0.000124097874504514
+42 0.000124943398986943
+43 0.000121483208204154
+44 0.000126071507111192
+45 0.000124478960060515
+46 0.000123042103950866
+47 0.000123908845125698
+48 0.000123413774417713
+49 0.000122481127618812
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000115110007754993
+1 0.000125953272799961
+2 0.000134110305225477
+3 0.00011591717338888
+4 0.000121311866678298
+5 0.000128482264699414
+6 0.000105867678939831
+7 0.000129386084154248
+8 0.000134848625748418
+9 0.000110874359961599
+10 0.000130804459331557
+11 0.000159033617819659
+12 0.000119386160804424
+13 0.000129002830362879
+14 0.000134830115712248
+15 0.000151857253513299
+16 0.000115153779916
+17 0.000105629929748829
+18 0.00012118044833187
+19 0.00014525449660141
+20 0.000127230974612758
+21 0.00010567552089924
+22 0.0001154206256615
+23 0.000121615034004208
+24 0.000155160974827595
+25 0.000129811858641915
+26 0.000114508788101375
+27 0.000128077619592659
+28 0.000106351857539266
+29 0.000108853484562133
+30 0.000129911219119094
+31 9.56107032834552e-05
+32 0.000137649782118388
+33 0.000134236572193913
+34 0.000105555453046691
+35 0.000116025963507127
+36 0.000151735410327092
+37 0.00011944006109843
+38 0.000117628602311015
+39 0.000132912289700471
+40 0.000119045529572759
+41 0.000120625387353357
+42 0.000114291848149151
+43 0.000145114536280744
+44 0.00010332751844544
+45 0.000118449795991182
+46 0.00013141060480848
+47 0.000123000281746499
+48 0.000126019702292979
+49 0.000134598842123523
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.007944645124701659, Learning_Process.pdf b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.007944645124701659, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..656e59c1126f2de06582e1cd26aec659c4b0f67e
Binary files /dev/null and b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.007944645124701659, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.007944645124701659, Learning_Process.tex b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.007944645124701659, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..cb806904c09540158eb2baa3b830c42c8ba931a4
--- /dev/null
+++ b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.007944645124701659, Learning_Process.tex	
@@ -0,0 +1,267 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.93897563395213e-07, ymax=1.46858793714108e+15,
+ymode=log,
+ytick style={color=black},
+ytick={1e-10,1e-07,0.0001,0.1,100,100000,100000000,100000000000,100000000000000,1e+17,1e+20},
+yticklabels={
+  \(\displaystyle {10^{-10}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{2}}\),
+  \(\displaystyle {10^{5}}\),
+  \(\displaystyle {10^{8}}\),
+  \(\displaystyle {10^{11}}\),
+  \(\displaystyle {10^{14}}\),
+  \(\displaystyle {10^{17}}\),
+  \(\displaystyle {10^{20}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000154609515448101
+1 2.32756192417582e-05
+2 3.04707973555196e-05
+3 1.21595548989717e-05
+4 5.51760831513093e-06
+5 2.70200189333991e-06
+6 3.81440963792556e-06
+7 3.33282628162124e-06
+8 1.31464148580562e-05
+9 4.92873004986905e-06
+10 1
+11 1
+12 1
+13 1
+14 1
+15 1
+16 1
+17 1
+18 1
+19 1
+20 1
+21 1
+22 1
+23 1
+24 1
+25 1
+26 1
+27 1
+28 1
+29 1
+30 1
+31 1
+32 1
+33 1
+34 1
+35 1
+36 1
+37 1
+38 1
+39 1
+40 1
+41 1
+42 1
+43 1
+44 1
+45 1
+46 1
+47 1
+48 1
+49 1
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.00016901949129533
+1 2.28572316700593e-05
+2 4.22331613663118e-05
+3 1.15371540232445e-05
+4 4.80319795315154e-06
+5 3.43320402862446e-06
+6 1.91464050658396e-06
+7 2.12456234294223e-06
+8 1.14088779810118e-05
+9 2.49705658461608e-06
+10 60676273864704
+11 148725372551168
+12 1796571660288
+13 532410368000
+14 61206102016
+15 136862523392
+16 130142896128
+17 31219705856
+18 28117012480
+19 123494359040
+20 21385603072
+21 99509035008
+22 18203580416
+23 102796083200
+24 17669023744
+25 28262924288
+26 28490977280
+27 7796642816
+28 33671981056
+29 5662471680
+30 44541575168
+31 15614024704
+32 36564705280
+33 11061577728
+34 46551437312
+35 53570940928
+36 17695617024
+37 6700259840
+38 31870160896
+39 24020004864
+40 12467677184
+41 6962117120
+42 39799697408
+43 6169405440
+44 6002533376
+45 9471291392
+46 6306133504
+47 8994955264
+48 29198241792
+49 6505812992
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000156421418068931
+1 0.000156863156007603
+2 0.000156020672875457
+3 0.000152960637933575
+4 0.000158124792505987
+5 0.000151566418935545
+6 0.000153726025018841
+7 0.000155045985593461
+8 0.000155827307025902
+9 0.000156624271767214
+10 0.000155453846673481
+11 0.000153621862409636
+12 0.000155098547111265
+13 0.000157122689415701
+14 0.00015430327039212
+15 0.000156868612975813
+16 0.000159284187247977
+17 0.000160281648277305
+18 0.000153834524098784
+19 0.000155505069415085
+20 0.00015806857845746
+21 0.0001552600733703
+22 0.000150777996168472
+23 0.000155992063810118
+24 0.000154317982378416
+25 0.000154133056639694
+26 0.000157811387907714
+27 0.000158316164743155
+28 0.000158290946274064
+29 0.000156900816364214
+30 0.000155742425704375
+31 0.000155483518028632
+32 0.000155533693032339
+33 0.000154545676195994
+34 0.000159461007569917
+35 0.00015173303836491
+36 0.000155160523718223
+37 0.000155113026266918
+38 0.000154540713992901
+39 0.000160635594511405
+40 0.00015361477562692
+41 0.0001579631207278
+42 0.000157231668708846
+43 0.00015910754154902
+44 0.000156075155246072
+45 0.000160444731591269
+46 0.000153869084897451
+47 0.000155583198647946
+48 0.000155030546011403
+49 0.00015180476475507
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000154839304741472
+1 0.000149644009070471
+2 0.00015715257904958
+3 0.00018486512999516
+4 0.000137296156026423
+5 0.000197445668163709
+6 0.000176658184500411
+7 0.000166305879247375
+8 0.000158173774252646
+9 0.000151470769196749
+10 0.000162806754815392
+11 0.000179376060259528
+12 0.00016551352746319
+13 0.000147653845488094
+14 0.000171711973962374
+15 0.000150155188748613
+16 0.00012864991731476
+17 0.000118669173389208
+18 0.000176440982613713
+19 0.00015998026356101
+20 0.000138080707984045
+21 0.00016352663806174
+22 0.000204556024982594
+23 0.0001583786070114
+24 0.000172394313267432
+25 0.000173977794474922
+26 0.00014077550440561
+27 0.000137149851070717
+28 0.000136735718115233
+29 0.000148971143062226
+30 0.000160491967108101
+31 0.000162296011694707
+32 0.000159309856826439
+33 0.000171812309417874
+34 0.000126463564811274
+35 0.000195845335838385
+36 0.000165826524607837
+37 0.000165023462614045
+38 0.000171320352819748
+39 0.000116117080324329
+40 0.000177161724423058
+41 0.00014014977205079
+42 0.000146179532748647
+43 0.000128381347167306
+44 0.000154037683387287
+45 0.00011882973194588
+46 0.000175808905623853
+47 0.000162215670570731
+48 0.00016562822565902
+49 0.000195907545275986
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.008001652810930977, Learning_Process.pdf b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.008001652810930977, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..bef046cb4778374554300c737fcaf4e4f46cbe6e
Binary files /dev/null and b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.008001652810930977, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.008001652810930977, Learning_Process.tex b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.008001652810930977, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..91f7deec4afb2731cf18973be33d29eac45c6456
--- /dev/null
+++ b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.008001652810930977, Learning_Process.tex	
@@ -0,0 +1,267 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.61274522772961e-08, ymax=3.38375657164927e+15,
+ymode=log,
+ytick style={color=black},
+ytick={1e-11,1e-08,1e-05,0.01,10,10000,10000000,10000000000,10000000000000,1e+16,1e+19},
+yticklabels={
+  \(\displaystyle {10^{-11}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{1}}\),
+  \(\displaystyle {10^{4}}\),
+  \(\displaystyle {10^{7}}\),
+  \(\displaystyle {10^{10}}\),
+  \(\displaystyle {10^{13}}\),
+  \(\displaystyle {10^{16}}\),
+  \(\displaystyle {10^{19}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000139621755806729
+1 2.13283783523366e-05
+2 4.2183673940599e-06
+3 1.27851615161489e-06
+4 6.29293765541661e-07
+5 4.38776226019399e-07
+6 3.6987799489907e-07
+7 3.36591597260849e-07
+8 2.47133641551045e-07
+9 2.53169787356455e-07
+10 2.37269745184676e-07
+11 7.00596956448862e-07
+12 9.24613559618592e-05
+13 1
+14 1
+15 1
+16 1
+17 1
+18 1
+19 1
+20 1
+21 1
+22 1
+23 1
+24 1
+25 1
+26 1
+27 1
+28 1
+29 1
+30 1
+31 1
+32 1
+33 1
+34 1
+35 1
+36 1
+37 1
+38 1
+39 1
+40 1
+41 1
+42 1
+43 1
+44 1
+45 1
+46 1
+47 1
+48 1
+49 1
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000136833157739602
+1 1.98807447304716e-05
+2 4.01524221160798e-06
+3 1.31609283471334e-06
+4 5.33196839569428e-07
+5 5.49787387171818e-07
+6 3.02486938608126e-07
+7 3.75816000541818e-07
+8 2.90787710355289e-07
+9 3.4330830089857e-07
+10 1.85203461455785e-07
+11 2.2393105325591e-07
+12 2.78237757811439e-06
+13 428346966016
+14 294656332005376
+15 5029481676800
+16 267479859200
+17 192991543296
+18 169264398336
+19 95748112384
+20 113803264000
+21 113483112448
+22 55152496640
+23 175112404992
+24 61902893056
+25 74384719872
+26 133856157696
+27 51612848128
+28 40361603072
+29 33774282752
+30 26185076736
+31 36476874752
+32 61796777984
+33 39216246784
+34 16083279872
+35 26767611904
+36 35725037568
+37 17316427776
+38 38199119872
+39 31689588736
+40 50269540352
+41 39076708352
+42 37664645120
+43 24979806208
+44 32513708032
+45 23923128320
+46 10971220992
+47 16980634624
+48 15503612928
+49 18280523776
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000138576564495452
+1 0.000139607393066399
+2 0.000140218777232803
+3 0.000142313190735877
+4 0.000140071642817929
+5 0.000138338378746994
+6 0.000142627308377996
+7 0.000136450209538452
+8 0.000140998919960111
+9 0.000137905401061289
+10 0.000138635994517244
+11 0.000140504896990024
+12 0.000140162563184276
+13 0.000140082789584994
+14 0.000134745831019245
+15 0.00013816382852383
+16 0.000136332397232763
+17 0.000138735907967202
+18 0.0001419606996933
+19 0.00014181925507728
+20 0.00013999872317072
+21 0.000138064802740701
+22 0.00014161788567435
+23 0.000138703820994124
+24 0.000139366500661708
+25 0.000135910886456259
+26 0.000138206683914177
+27 0.000140266551170498
+28 0.000140120668220334
+29 0.000140053074574098
+30 0.000139004361699335
+31 0.000136606773594394
+32 0.000139643714646809
+33 0.000142147953738458
+34 0.000137209586682729
+35 0.00013703980948776
+36 0.000139010327984579
+37 0.000140312506118789
+38 0.000138207426061854
+39 0.000135048016090877
+40 0.000137723123771138
+41 0.00014003056276124
+42 0.000139285170007497
+43 0.000138344665174372
+44 0.000137024471769109
+45 0.00014411388838198
+46 0.00014157930854708
+47 0.000141748125315644
+48 0.00013940769713372
+49 0.000139238123665564
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000146981241414323
+1 0.000137935625389218
+2 0.000133323686895892
+3 0.00011811269359896
+4 0.000131567940115929
+5 0.000150047519127838
+6 0.000108900421764702
+7 0.000165783130796626
+8 0.000124585509183817
+9 0.00015311200695578
+10 0.000147078884765506
+11 0.000129593347082846
+12 0.000132150074932724
+13 0.000132494416902773
+14 0.000181214069016278
+15 0.000150824154843576
+16 0.000167360514751635
+17 0.000145567930303514
+18 0.000116042581794318
+19 0.000117144991236273
+20 0.000134987858473323
+21 0.000151404718053527
+22 0.000118348318210337
+23 0.000145227983011864
+24 0.000140688920510001
+25 0.000169628256116994
+26 0.000150154548464343
+27 0.000131601278553717
+28 0.000135155016323552
+29 0.000133407578687184
+30 0.000142174656502903
+31 0.000164660028531216
+32 0.000136760747409426
+33 0.000114373957330827
+34 0.000160293668159284
+35 0.000159105737111531
+36 0.000143981684232131
+37 0.000133512701722793
+38 0.000150227511767298
+39 0.00017840696091298
+40 0.000152465145220049
+41 0.000133841444039717
+42 0.000139519150252454
+43 0.000146488411701284
+44 0.000162704061949626
+45 9.77831296040677e-05
+46 0.000120453398267273
+47 0.000120132754091173
+48 0.000142203920404427
+49 0.000143434954225086
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.00850607618897681, Learning_Process.pdf b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.00850607618897681, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..6fd2392aefa4c853ecb8f7280532cdbce56977aa
Binary files /dev/null and b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.00850607618897681, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.00850607618897681, Learning_Process.tex b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.00850607618897681, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..d8377c6cf61f82c0d1179af3917dda0efe12403d
--- /dev/null
+++ b/models_URWF/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.00850607618897681, Learning_Process.tex	
@@ -0,0 +1,260 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.55982043054947e-07, ymax=188528551236834,
+ymode=log,
+ytick style={color=black},
+ytick={1e-10,1e-07,0.0001,0.1,100,100000,100000000,100000000000,100000000000000,1e+17,1e+20},
+yticklabels={
+  \(\displaystyle {10^{-10}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{2}}\),
+  \(\displaystyle {10^{5}}\),
+  \(\displaystyle {10^{8}}\),
+  \(\displaystyle {10^{11}}\),
+  \(\displaystyle {10^{14}}\),
+  \(\displaystyle {10^{17}}\),
+  \(\displaystyle {10^{20}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000140218384331092
+1 2.21642731048632e-05
+2 4.44624583906261e-06
+3 1.54017525346717e-05
+4 0.000120296324894298
+5 0.301847010850906
+6 1
+7 1.00045669078827
+8 0.993711888790131
+9 0.994027972221375
+10 0.99989253282547
+11 0.987905383110046
+12 1.00224125385284
+13 0.994234561920166
+14 0.985393464565277
+15 0.995238184928894
+16 0.985844016075134
+17 0.988199532032013
+18 0.989868879318237
+19 0.992427706718445
+20 0.983919322490692
+21 0.986882567405701
+22 0.996255338191986
+23 0.991352438926697
+24 0.991143465042114
+25 0.993505895137787
+26 0.985633969306946
+27 0.986395955085754
+28 0.979322671890259
+29 0.985452353954315
+30 0.990381419658661
+31 0.985418319702148
+32 0.99836528301239
+33 0.987910509109497
+34 0.978589236736298
+35 0.990186750888824
+36 0.986009478569031
+37 0.988163471221924
+38 0.981640994548798
+39 0.979577302932739
+40 0.984927892684937
+41 0.983080923557281
+42 0.997533619403839
+43 0.983367800712585
+44 0.9879310131073
+45 0.976465880870819
+46 0.968232095241547
+47 0.993363320827484
+48 0.99390983581543
+49 0.965159058570862
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000118777992611285
+1 2.05941450985847e-05
+2 4.01964007323841e-06
+3 2.27361601901066e-06
+4 8.18964781501563e-06
+5 0.182998701930046
+6 21226066018304
+7 718134837248
+8 17710141440
+9 2747235072
+10 444358208
+11 1179074688
+12 1013498048
+13 317638496
+14 1424910976
+15 311799904
+16 69756216
+17 188018416
+18 251389136
+19 710021632
+20 269099776
+21 270867584
+22 428186656
+23 800078144
+24 76198576
+25 95029208
+26 204982272
+27 165855552
+28 457453664
+29 70422656
+30 145875248
+31 320803200
+32 101995024
+33 373677408
+34 80236480
+35 71507096
+36 285292000
+37 256108928
+38 55190476
+39 85476720
+40 96215320
+41 157392048
+42 66713792
+43 86175032
+44 266118576
+45 259464352
+46 208114240
+47 183922256
+48 197114480
+49 51964092
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00014238606672734
+1 0.000137269467813894
+2 0.000139306794153526
+3 0.000138559931656346
+4 0.000137550567160361
+5 0.00013948290143162
+6 0.000138055955176242
+7 0.000137113922392018
+8 0.000136972143081948
+9 0.000134312678710558
+10 0.000139654395752586
+11 0.000133838708279654
+12 0.00014243001351133
+13 0.000138620263896883
+14 0.000138929055538028
+15 0.000137338487547822
+16 0.000139161245897412
+17 0.000136588088935241
+18 0.000138320086989552
+19 0.000137921524583362
+20 0.000143908546306193
+21 0.000140457501402125
+22 0.000138965318910778
+23 0.000140656455187127
+24 0.000140808129799552
+25 0.000138012183015235
+26 0.000138432267704047
+27 0.000141285680001602
+28 0.000138066854560748
+29 0.000135044159833342
+30 0.000137079434352927
+31 0.000134606816573068
+32 0.000135367692564614
+33 0.000141475975397043
+34 0.000139380412292667
+35 0.000141928176162764
+36 0.000140785487019457
+37 0.000138465431518853
+38 0.000135643451358192
+39 0.000139667215989903
+40 0.000136008573463187
+41 0.000138402567245066
+42 0.000138373361551203
+43 0.000139131996547803
+44 0.000137149458169006
+45 0.000138448638608679
+46 0.000140904696309008
+47 0.000142818069434725
+48 0.000138543677167036
+49 0.000134979316499084
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000103392310847994
+1 0.00014599684800487
+2 0.000129043110064231
+3 0.000134278190671466
+4 0.000143874480272643
+5 0.000127410326967947
+6 0.000141912794788368
+7 0.000151913307490759
+8 0.000149384402902797
+9 0.000170868603163399
+10 0.000123945283121429
+11 0.000178784757736139
+12 9.80831900960766e-05
+13 0.000134114641696215
+14 0.00013073043373879
+15 0.000147307830047794
+16 0.000131324195535854
+17 0.000152093198266812
+18 0.000137117182021029
+19 0.00014081783592701
+20 8.65590773173608e-05
+21 0.000121595665405039
+22 0.000132538814796135
+23 0.00011664997873595
+24 0.000113734000478871
+25 0.000142587145091966
+26 0.00013889184629079
+27 0.00011206330236746
+28 0.00014260939497035
+29 0.000166919722687453
+30 0.00014866744459141
+31 0.000169792081578635
+32 0.000166409416124225
+33 0.000106757324829232
+34 0.000128330764709972
+35 0.000105351406091359
+36 0.000120832810353022
+37 0.000134729532874189
+38 0.000161758667672984
+39 0.000126826766063459
+40 0.000161517527885735
+41 0.000138902178150602
+42 0.000140513860969804
+43 0.000137753435410559
+44 0.000150296313222498
+45 0.00013601801765617
+46 0.000112969544716179
+47 9.82392593869008e-05
+48 0.000136135597131215
+49 0.000166470577823929
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.00087526335104095, Learning_Process.pdf b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.00087526335104095, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..401449d7ab88f10ee8ac2be5390131f1cb1303d8
Binary files /dev/null and b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.00087526335104095, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.00087526335104095, Learning_Process.tex b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.00087526335104095, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..b1c8353fb3e3959d66cabd76da073b432c66b2e1
--- /dev/null
+++ b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.00087526335104095, Learning_Process.tex	
@@ -0,0 +1,263 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.54700454872046e-07, ymax=0.000223920735624322,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000133179593831301
+1 3.51752496499103e-05
+2 1.67545549629722e-05
+3 1.12680590973468e-05
+4 8.40475604491076e-06
+5 6.77282241667854e-06
+6 5.78390063310508e-06
+7 4.55278814115445e-06
+8 4.00861154048471e-06
+9 3.30291550199036e-06
+10 3.10041264128813e-06
+11 2.82745781987614e-06
+12 2.57328088082431e-06
+13 2.2233489289647e-06
+14 1.97026565729175e-06
+15 1.89308298104152e-06
+16 1.84654118129401e-06
+17 1.70688554135268e-06
+18 1.59649482611712e-06
+19 1.48613310102519e-06
+20 1.38952452743979e-06
+21 1.27430951124552e-06
+22 1.18574621410517e-06
+23 1.19637320494803e-06
+24 1.12939585505956e-06
+25 1.01104853911238e-06
+26 9.61810314947797e-07
+27 9.38339042022562e-07
+28 9.3321364147414e-07
+29 8.26251323360339e-07
+30 7.6292218409435e-07
+31 7.66399921303673e-07
+32 7.19103297797119e-07
+33 6.78982985391485e-07
+34 7.03171224358812e-07
+35 6.36027436939912e-07
+36 6.14595819570241e-07
+37 6.1796595218766e-07
+38 6.00379166826315e-07
+39 5.23236622029799e-07
+40 5.05532227634831e-07
+41 5.1855664651157e-07
+42 4.52324712796326e-07
+43 4.66268261334335e-07
+44 4.8066959834614e-07
+45 4.41348845470202e-07
+46 4.25021113414914e-07
+47 3.98243088284289e-07
+48 3.81038745445039e-07
+49 3.7668260688406e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000121506353025325
+1 3.42507264576852e-05
+2 1.9355638869456e-05
+3 1.11839062810759e-05
+4 9.98019004327944e-06
+5 7.41843132345821e-06
+6 4.91694072479731e-06
+7 5.00729811392375e-06
+8 4.56087400380056e-06
+9 3.64855873158376e-06
+10 2.94205233331013e-06
+11 2.90395246338448e-06
+12 1.98278098650917e-06
+13 2.15992008634203e-06
+14 2.72034480985894e-06
+15 2.01232478502789e-06
+16 1.74675392372592e-06
+17 1.51661970448913e-06
+18 1.56670546402893e-06
+19 1.69031170571543e-06
+20 1.25019369079382e-06
+21 1.19740275295044e-06
+22 1.33478192765324e-06
+23 1.15696786906483e-06
+24 1.14068154744018e-06
+25 1.05596575394884e-06
+26 9.53903622757934e-07
+27 7.05122545241466e-07
+28 9.10026244582696e-07
+29 8.62309207150247e-07
+30 8.48406330078433e-07
+31 6.86196187871246e-07
+32 7.28932889160205e-07
+33 8.20948741875327e-07
+34 6.73053705213533e-07
+35 8.14210238786472e-07
+36 6.04474450938142e-07
+37 6.46221167244221e-07
+38 4.89513638513017e-07
+39 5.89421517815936e-07
+40 5.24671747825778e-07
+41 4.26129929564922e-07
+42 4.78877041132364e-07
+43 4.57279355714491e-07
+44 4.83175426779781e-07
+45 3.62205412329786e-07
+46 4.7825699311943e-07
+47 4.63097165948056e-07
+48 3.46617781588066e-07
+49 3.52422574678712e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000132322093122639
+1 0.00013210870383773
+2 0.000129255815409124
+3 0.00013278576079756
+4 0.000133525085402653
+5 0.000133034365717322
+6 0.000129964391817339
+7 0.000130710177472793
+8 0.000130035870824941
+9 0.000131648106616922
+10 0.00013253248471301
+11 0.000132400033180602
+12 0.000133761888719164
+13 0.000130386484670453
+14 0.000130932807223871
+15 0.000131916851387359
+16 0.000132835732074454
+17 0.000131565684569068
+18 0.000132673216285184
+19 0.000128438259707764
+20 0.000132562970975414
+21 0.000130093976622447
+22 0.000133244378957897
+23 0.000129121544887312
+24 0.000132967950776219
+25 0.000134354297188111
+26 0.000131173932459205
+27 0.000132224144181237
+28 0.000130631422507577
+29 0.000130929576698691
+30 0.000134335219627246
+31 0.000131782318931073
+32 0.000133136607473716
+33 0.000135794631205499
+34 0.000131901688291691
+35 0.000131917651742697
+36 0.000132262764964253
+37 0.000134072455693968
+38 0.000132931701955386
+39 0.000134969668579288
+40 0.000131780514493585
+41 0.000131272070575505
+42 0.000133262015879154
+43 0.000130185770103708
+44 0.000133651337819174
+45 0.00013248912000563
+46 0.000131990324007347
+47 0.000131288034026511
+48 0.000130320884636603
+49 0.000131492299260572
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000125757607747801
+1 0.000129386651678942
+2 0.00015547672228422
+3 0.000123559686471708
+4 0.000117760202556383
+5 0.000120351207442582
+6 0.000147927275975235
+7 0.000143947458127514
+8 0.000147107624798082
+9 0.000134317655465566
+10 0.000125311431474984
+11 0.000127414750750177
+12 0.000114779177238233
+13 0.000147642364026979
+14 0.00014171541261021
+15 0.000128428844618611
+16 0.000121587923786137
+17 0.000135170863359235
+18 0.000123965946841054
+19 0.000164540644618683
+20 0.000124870057334192
+21 0.000144709061714821
+22 0.000118770309200045
+23 0.000154392328113317
+24 0.00012491391680669
+25 0.000110462613520212
+26 0.000141583339427598
+27 0.000128474159282632
+28 0.000140074975206517
+29 0.000141459124279208
+30 0.000109626060293522
+31 0.000133212219225243
+32 0.000120430675451644
+33 9.69619286479428e-05
+34 0.000131742388475686
+35 0.000132182482047938
+36 0.000128893632791005
+37 0.000112660382001195
+38 0.000123555801110342
+39 0.000107140389445703
+40 0.00013164734991733
+41 0.000134725851239637
+42 0.000121978810057044
+43 0.000147045793710276
+44 0.000115048191219103
+45 0.000127706021885388
+46 0.000131199485622346
+47 0.000136925475089811
+48 0.000146210339153185
+49 0.000135818409034982
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.005360699495499548, Learning_Process.pdf b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.005360699495499548, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..670b9108d715610e871a45f4b25593fb2521a7e4
Binary files /dev/null and b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.005360699495499548, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.005360699495499548, Learning_Process.tex b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.005360699495499548, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..5edfebb55d0a09893420bf583373f15f81a11463
--- /dev/null
+++ b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.005360699495499548, Learning_Process.tex	
@@ -0,0 +1,266 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=5.08947094124277e-06, ymax=39400610861918.8,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-06,0.001,1,1000,1000000,1000000000,1000000000000,1e+15,1e+18},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{0}}\),
+  \(\displaystyle {10^{3}}\),
+  \(\displaystyle {10^{6}}\),
+  \(\displaystyle {10^{9}}\),
+  \(\displaystyle {10^{12}}\),
+  \(\displaystyle {10^{15}}\),
+  \(\displaystyle {10^{18}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000140254516736604
+1 5.27611227880698e-05
+2 6.8501103669405e-05
+3 0.99999988079071
+4 1
+5 1
+6 1
+7 1
+8 1
+9 1
+10 1
+11 1
+12 1
+13 1
+14 1
+15 1
+16 1
+17 1
+18 1
+19 1
+20 1
+21 1
+22 1
+23 1
+24 1
+25 1
+26 1
+27 1
+28 1
+29 1
+30 1
+31 1
+32 1
+33 1
+34 1
+35 1
+36 1
+37 1
+38 1
+39 0.999999940395355
+40 1
+41 1
+42 1
+43 1
+44 1
+45 1
+46 1
+47 0.999999940395355
+48 0.99999988079071
+49 0.999999940395355
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000128901956486516
+1 3.6749872379005e-05
+2 0.0517818629741669
+3 5456570351616
+4 239557001216
+5 35606048768
+6 3108799232
+7 751367168
+8 937784320
+9 429757280
+10 969296064
+11 1475431296
+12 500033024
+13 399729632
+14 356594656
+15 185429200
+16 427793120
+17 136610000
+18 362858720
+19 264271216
+20 713215872
+21 298462368
+22 295386976
+23 291809984
+24 296350080
+25 258368752
+26 394989920
+27 180042096
+28 482617824
+29 112177040
+30 173858368
+31 151776704
+32 218760816
+33 305952544
+34 177702640
+35 247454768
+36 202598192
+37 102961472
+38 92610176
+39 121634944
+40 113738808
+41 36108044
+42 361922976
+43 105287904
+44 582222400
+45 151047664
+46 202253168
+47 98492632
+48 63082536
+49 95411656
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000140177551656961
+1 0.000138411283842288
+2 0.000140462594572455
+3 0.000139555922942236
+4 0.00014178805577103
+5 0.000137603507027961
+6 0.000138832678203471
+7 0.000139986703288741
+8 0.000138086616061628
+9 0.000138251838507131
+10 0.000138404910103418
+11 0.000139634415972978
+12 0.000139200812554918
+13 0.000139804484206252
+14 0.000136035494506359
+15 0.000136983217089437
+16 0.00014149458729662
+17 0.000138755000079982
+18 0.000138865900225937
+19 0.00013980311632622
+20 0.000142260454595089
+21 0.000140888994792476
+22 0.000136565882712603
+23 0.000137888637254946
+24 0.000137567112687975
+25 0.000142545512062497
+26 0.000139755269628949
+27 0.000138377508847043
+28 0.000136176240630448
+29 0.000137949857162312
+30 0.000138466421049088
+31 0.000139213632792234
+32 0.000140276533784345
+33 0.000138440838782117
+34 0.000141252647154033
+35 0.000140413379995152
+36 0.000138109142426401
+37 0.000139487077831291
+38 0.000138807983603328
+39 0.000140532560180873
+40 0.000143543424201198
+41 0.0001379143941449
+42 0.000135328766191378
+43 0.000139175841468386
+44 0.000138962495839223
+45 0.000139764975756407
+46 0.000140730975545011
+47 0.00013919168850407
+48 0.000138698509545065
+49 0.000138161020004191
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000128466897876933
+1 0.000145504658576101
+2 0.000126402024761774
+3 0.000132811415824108
+4 0.000126155602629296
+5 0.000153513348777778
+6 0.000142187651363201
+7 0.000131226333905943
+8 0.000147112456033938
+9 0.000143522425787523
+10 0.000145307611091994
+11 0.000134684189106338
+12 0.000138460716698319
+13 0.000132426532218233
+14 0.000169827937497757
+15 0.000158950744662434
+16 0.000117592680908274
+17 0.000142675344250165
+18 0.000141589538543485
+19 0.000135674126795493
+20 0.00011378700583009
+21 0.000129929816466756
+22 0.000161769596161321
+23 0.00015287431597244
+24 0.000152930311742239
+25 0.000106997496914119
+26 0.000134130590595305
+27 0.000144666497362778
+28 0.000173023887327872
+29 0.000149192288517952
+30 0.000145646248711273
+31 0.00013868827954866
+32 0.000128764702822082
+33 0.000145898578921333
+34 0.000120875476568472
+35 0.000127135688671842
+36 0.000147984814248048
+37 0.000136497619678266
+38 0.000144028454087675
+39 0.00012670797877945
+40 0.000100812525488436
+41 0.000149974890518934
+42 0.000174198547028936
+43 0.000137088340125047
+44 0.00014211812231224
+45 0.000136852191644721
+46 0.000124946425785311
+47 0.000139785392093472
+48 0.000143836135976017
+49 0.000146497972309589
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.005944051545214104, Learning_Process.pdf b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.005944051545214104, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..43b39e48c46302d71bb22ebef3fcc13f13d42a6e
Binary files /dev/null and b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.005944051545214104, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.005944051545214104, Learning_Process.tex b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.005944051545214104, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..e732a631f14d7755d58d8bff27ec58ed1273d6b9
--- /dev/null
+++ b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.005944051545214104, Learning_Process.tex	
@@ -0,0 +1,263 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.00593280881825e-07, ymax=0.000247069304382498,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000129053936689161
+1 4.80290982523002e-05
+2 2.20953807001933e-05
+3 1.20376134873368e-05
+4 6.11244604442618e-06
+5 4.24258041675785e-06
+6 3.24821644426265e-06
+7 2.43648287323595e-06
+8 1.81355062522925e-06
+9 1.49567790685978e-06
+10 1.31363879063429e-06
+11 1.19355252081732e-06
+12 1.18280536298698e-06
+13 9.91134697869711e-07
+14 8.87556552697788e-07
+15 7.62442766699678e-07
+16 6.59360580357315e-07
+17 6.43849261905416e-07
+18 5.99761278863298e-07
+19 5.51300843198987e-07
+20 5.11185362483957e-07
+21 4.59870818758645e-07
+22 4.45772741386463e-07
+23 4.14500931356088e-07
+24 3.90619362633515e-07
+25 3.73617979221308e-07
+26 3.59591751930566e-07
+27 3.32348321308018e-07
+28 3.19261403092241e-07
+29 3.12567379978645e-07
+30 2.86786189462873e-07
+31 2.74410979272943e-07
+32 2.71094251047543e-07
+33 2.46404709969283e-07
+34 2.47035671918638e-07
+35 2.39745247654355e-07
+36 2.18444043298405e-07
+37 2.16978236267096e-07
+38 1.92259705045217e-07
+39 1.9230172654261e-07
+40 1.91973938967749e-07
+41 1.86791638157047e-07
+42 1.88138528756099e-07
+43 1.7110103556206e-07
+44 1.78250857629791e-07
+45 1.58479934952993e-07
+46 2.13895418710308e-07
+47 1.57734291406086e-07
+48 1.43440317401655e-07
+49 1.49772361623945e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000112156631075777
+1 5.17534317623358e-05
+2 2.10408870771062e-05
+3 1.19830729090609e-05
+4 4.60959245174308e-06
+5 4.01125544158276e-06
+6 3.25917585541902e-06
+7 2.03239255824883e-06
+8 2.27583109335683e-06
+9 1.77455365246715e-06
+10 1.2746735364999e-06
+11 1.22030121474381e-06
+12 8.00232385245181e-07
+13 8.19791182493645e-07
+14 6.62448201182997e-07
+15 7.53465087655059e-07
+16 8.68761730998813e-07
+17 6.48103195999283e-07
+18 6.32362571195699e-07
+19 4.69531272528911e-07
+20 4.31497625186239e-07
+21 6.12098858709942e-07
+22 4.94435653308756e-07
+23 4.70362920168554e-07
+24 3.70391290971384e-07
+25 4.34023974094089e-07
+26 4.2042020709232e-07
+27 3.61557283667935e-07
+28 3.55636501581102e-07
+29 2.6580175926938e-07
+30 2.80095719062956e-07
+31 2.5872023456941e-07
+32 2.59527126900139e-07
+33 2.47431415800747e-07
+34 2.15342296883136e-07
+35 1.94407334674906e-07
+36 2.33615651268337e-07
+37 1.86713819516626e-07
+38 2.33746035860349e-07
+39 2.19700254433519e-07
+40 1.95960780047244e-07
+41 2.01048450776398e-07
+42 1.67950119589477e-07
+43 1.59672055133342e-07
+44 1.65371901061917e-07
+45 1.7242585670374e-07
+46 1.75634895072108e-07
+47 2.53253318760471e-07
+48 1.57527921373912e-07
+49 1.99901293740368e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000128466228488833
+1 0.000126881743199192
+2 0.000128114843391813
+3 0.000126581071526743
+4 0.000128308252897114
+5 0.000127597799291834
+6 0.000126375482068397
+7 0.00012874449021183
+8 0.000127038962091319
+9 0.000125673090224154
+10 0.000129173437017016
+11 0.000125536025734618
+12 0.000124377547763288
+13 0.000129209118313156
+14 0.000128218613099307
+15 0.000125524689792655
+16 0.000125906517496333
+17 0.000128196043078788
+18 0.000127971448819153
+19 0.000127965147839859
+20 0.000122159079182893
+21 0.000124658894492313
+22 0.000130936648929492
+23 0.000127914754557423
+24 0.000129609295981936
+25 0.000125603299238719
+26 0.000124515892821364
+27 0.000131240405607969
+28 0.000129542546346784
+29 0.000124651589430869
+30 0.000126804079627618
+31 0.00012924030306749
+32 0.000127537670778111
+33 0.0001267334446311
+34 0.000127995372167788
+35 0.000129521155031398
+36 0.000124628248158842
+37 0.000127534629427828
+38 0.000125700316857547
+39 0.000127690625959076
+40 0.000128331375890411
+41 0.000129362277220935
+42 0.000127268125652336
+43 0.000125265927636065
+44 0.000125246398965828
+45 0.000128837302327156
+46 0.000125971157103777
+47 0.000127420586068183
+48 0.00012754465569742
+49 0.000126255879877135
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000118136711535044
+1 0.00013205515278969
+2 0.000121588192996569
+3 0.000137823066324927
+4 0.000120249089377467
+5 0.000126107057440095
+6 0.000137767987325788
+7 0.00011443835683167
+8 0.000133886453113519
+9 0.000144819874549285
+10 0.000110633103759028
+11 0.000144236022606492
+12 0.00015468176570721
+13 0.000113060072180815
+14 0.000124466168927029
+15 0.00014633231330663
+16 0.000140689298859797
+17 0.000121082215628121
+18 0.000125076301628724
+19 0.000121355253213551
+20 0.000173267268110067
+21 0.000155485744471662
+22 9.56056901486591e-05
+23 0.000127523482660763
+24 0.000105193910712842
+25 0.000146688806125894
+26 0.000155210625962354
+27 9.08775982679799e-05
+28 0.000107552295958158
+29 0.00015353701019194
+30 0.000133560228277929
+31 0.00011116224777652
+32 0.000126133323647082
+33 0.00013073613808956
+34 0.000120964090456255
+35 0.000111127730633598
+36 0.000162418466061354
+37 0.00012844915909227
+38 0.000142838543979451
+39 0.000123447112855501
+40 0.000119173571874853
+41 0.000110675660835113
+42 0.000129537947941571
+43 0.000148352686665021
+44 0.000147677885252051
+45 0.000115564849693328
+46 0.000141633383464068
+47 0.00012786767911166
+48 0.000125077727716416
+49 0.000140685573569499
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.006160725478534382, Learning_Process.pdf b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.006160725478534382, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..605fe21bd39c0e5fb3f1bc4127806646056a310d
Binary files /dev/null and b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.006160725478534382, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.006160725478534382, Learning_Process.tex b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.006160725478534382, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..fc58609527f0242bd28969e7f3fbce7fdd0f691c
--- /dev/null
+++ b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.006160725478534382, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.66050317064324e-08, ymax=0.00027961391266154,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000150131236296147
+1 5.25413925061002e-05
+2 1.53499822772574e-05
+3 4.8215442802757e-06
+4 2.59492594523181e-06
+5 1.52351572069165e-06
+6 1.07470020793698e-06
+7 6.34623347650631e-07
+8 5.25616144386731e-07
+9 4.94402854656073e-07
+10 3.79784665938132e-07
+11 3.27519870779724e-07
+12 2.76684744449085e-07
+13 2.50266424473011e-07
+14 2.47683658471942e-07
+15 2.12995360016066e-07
+16 1.96786459127907e-07
+17 1.69142424510937e-07
+18 1.64231792609826e-07
+19 1.50357223560604e-07
+20 1.3626574002501e-07
+21 1.21167474276263e-07
+22 1.14788704763669e-07
+23 1.16856732290671e-07
+24 1.06334447025347e-07
+25 1.00281532411373e-07
+26 9.40171105412446e-08
+27 8.89067450771108e-08
+28 8.54293418228735e-08
+29 8.35192466297485e-08
+30 8.50296331122991e-08
+31 7.77589974632065e-08
+32 7.51771906948306e-08
+33 7.23552062709132e-08
+34 6.94873634188298e-08
+35 6.54970904179208e-08
+36 6.29841849786317e-08
+37 6.30169267878955e-08
+38 6.10035328918457e-08
+39 5.4955002326551e-08
+40 5.55658949963345e-08
+41 5.14367428650075e-08
+42 5.29327301990179e-08
+43 5.39989244430217e-08
+44 4.94446510401758e-08
+45 4.66741170157547e-08
+46 4.8798312946019e-08
+47 4.43986181153377e-08
+48 4.71798671242141e-08
+49 4.05287821081401e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000155126486788504
+1 3.86256251658779e-05
+2 8.08648474048823e-06
+3 1.25823935377412e-05
+4 3.7067657103762e-06
+5 1.45735600654007e-06
+6 9.57053657657525e-07
+7 5.05789500948595e-07
+8 5.53445659079443e-07
+9 5.58358635771583e-07
+10 3.55717020283919e-07
+11 2.71864109890885e-07
+12 2.27836906674383e-07
+13 2.6208135750494e-07
+14 2.3197935661301e-07
+15 2.5451032570345e-07
+16 1.55514740640683e-07
+17 1.7700146770494e-07
+18 1.53516182876956e-07
+19 1.083884626496e-07
+20 1.0747944401146e-07
+21 1.25758603530812e-07
+22 1.27652967307768e-07
+23 9.58718615606813e-08
+24 9.65887707593538e-08
+25 9.90926665167535e-08
+26 8.63743068180156e-08
+27 8.87379414393763e-08
+28 8.73339160989417e-08
+29 7.79433122488626e-08
+30 7.2877895718193e-08
+31 9.56883354774618e-08
+32 8.40342408992001e-08
+33 7.14105610200022e-08
+34 6.16293505117937e-08
+35 6.20531324102558e-08
+36 7.19933623827274e-08
+37 5.34087014614215e-08
+38 5.41101989881554e-08
+39 5.30077066684953e-08
+40 5.25584091803921e-08
+41 5.85182213796998e-08
+42 5.78899879144501e-08
+43 4.12282652462181e-08
+44 4.47423609273301e-08
+45 4.23284980399785e-08
+46 5.17167784153116e-08
+47 4.87487561429134e-08
+48 4.23237977997815e-08
+49 5.33615605036175e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000151411964907311
+1 0.000151398708112538
+2 0.000150691557792015
+3 0.000152973239892162
+4 0.00015216194151435
+5 0.000153804197907448
+6 0.000151563624967821
+7 0.000151216372614726
+8 0.000151032378198579
+9 0.000146535559906624
+10 0.000154402529005893
+11 0.000151465064845979
+12 0.000149827086715959
+13 0.00015034677926451
+14 0.000151205022120848
+15 0.000154242312419228
+16 0.000151427899254486
+17 0.000152522348798811
+18 0.000154289489728399
+19 0.000149544270243496
+20 0.000150010077049956
+21 0.00015058989811223
+22 0.000149250263348222
+23 0.000149098894326016
+24 0.000149953018990345
+25 0.000148875289596617
+26 0.000150506588397548
+27 0.00014891117461957
+28 0.000151010652189143
+29 0.000150474283145741
+30 0.000149984087329358
+31 0.000151037675095722
+32 0.000150272564496845
+33 0.000152833395986818
+34 0.000152086111484095
+35 0.00014976407692302
+36 0.00015243302914314
+37 0.000150478022987954
+38 0.000149128623888828
+39 0.000147308077430353
+40 0.000149759755004197
+41 0.000151279469719157
+42 0.000153440298163332
+43 0.000150101390318014
+44 0.000148803592310287
+45 0.000149410159792751
+46 0.000150646752445027
+47 0.000151399566675536
+48 0.00014891529281158
+49 0.00015065964544192
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.00014271387772169
+1 0.000142920733196661
+2 0.000148010265547782
+3 0.000128326864796691
+4 0.00013955075701233
+5 0.000124161640997045
+6 0.00014230927627068
+7 0.000144479534355924
+8 0.000145590689498931
+9 0.000183551950613037
+10 0.000127937630168162
+11 0.000140771735459566
+12 0.000156984009663574
+13 0.000155830508447252
+14 0.000145377605804242
+15 0.000114283131551929
+16 0.000142939577926882
+17 0.000130040454678237
+18 0.000117533396405634
+19 0.000160287527251057
+20 0.000154142646351829
+21 0.000148498744238168
+22 0.000157578368089162
+23 0.000165656747412868
+24 0.000157217611558735
+25 0.000163528704433702
+26 0.000152694876305759
+27 0.000162655764142983
+28 0.000143099619890563
+29 0.000147866885527037
+30 0.000155862653627992
+31 0.000145418176543899
+32 0.00015025727043394
+33 0.000133632609504275
+34 0.000136944290716201
+35 0.000158587048645131
+36 0.000133661655127071
+37 0.000150413281517103
+38 0.000160516516189091
+39 0.000177811045432463
+40 0.000157057933392935
+41 0.000145475947647355
+42 0.000123860823805444
+43 0.000149307597894222
+44 0.00016559666255489
+45 0.000162809068569914
+46 0.000148503881064244
+47 0.000140062300488353
+48 0.000166857222211547
+49 0.000149105326272547
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.00680151314888068, Learning_Process.pdf b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.00680151314888068, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..65259c286f8a8f3b51b7f6d63656c9ce22dc2001
Binary files /dev/null and b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.00680151314888068, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.00680151314888068, Learning_Process.tex b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.00680151314888068, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..b89b597bf3e96d2629dc1185018b04c4db486237
--- /dev/null
+++ b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.00680151314888068, Learning_Process.tex	
@@ -0,0 +1,260 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=4.71005078569536e-06, ymax=5.8275700642982e+17,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-06,0.001,1,1000,1000000,1000000000,1000000000000,1e+15,1e+18,1e+21},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{0}}\),
+  \(\displaystyle {10^{3}}\),
+  \(\displaystyle {10^{6}}\),
+  \(\displaystyle {10^{9}}\),
+  \(\displaystyle {10^{12}}\),
+  \(\displaystyle {10^{15}}\),
+  \(\displaystyle {10^{18}}\),
+  \(\displaystyle {10^{21}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000139952622703277
+1 5.92151482123882e-05
+2 0.00115020258817822
+3 1
+4 1
+5 0.999998390674591
+6 0.999985098838806
+7 0.999997675418854
+8 0.999997794628143
+9 0.999997496604919
+10 0.999994456768036
+11 0.99996554851532
+12 0.999989032745361
+13 0.999997496604919
+14 0.999996662139893
+15 0.999986112117767
+16 0.999994277954102
+17 0.999996721744537
+18 0.999996483325958
+19 0.999995708465576
+20 0.999997794628143
+21 0.999997735023499
+22 0.999996304512024
+23 0.999987840652466
+24 0.999991893768311
+25 0.999990284442902
+26 0.99463301897049
+27 1.00006663799286
+28 0.999980092048645
+29 0.999992370605469
+30 0.999992728233337
+31 0.999997138977051
+32 0.999992907047272
+33 0.999985635280609
+34 0.999997198581696
+35 0.999981284141541
+36 0.999991178512573
+37 0.999996662139893
+38 0.999988734722137
+39 0.999983727931976
+40 0.999994516372681
+41 0.999992549419403
+42 0.999983549118042
+43 0.999982059001923
+44 0.999987483024597
+45 0.999996960163116
+46 0.99998950958252
+47 0.999992072582245
+48 0.999994099140167
+49 0.999978005886078
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000115904644189868
+1 5.28059608768672e-05
+2 0.000726761296391487
+3 5.19792661742223e+16
+4 477920237715456
+5 3637630468096
+6 3024052551680
+7 877474152448
+8 1046268542976
+9 500388823040
+10 146277236736
+11 336187949056
+12 283816656896
+13 751841443840
+14 469036335104
+15 154294288384
+16 557875658752
+17 413243179008
+18 264633171968
+19 132447051776
+20 543901941760
+21 123830730752
+22 115976151040
+23 101386403840
+24 571620458496
+25 202324361216
+26 274795102208
+27 371244007424
+28 155023867904
+29 135333756928
+30 197215780864
+31 141667450880
+32 362768564224
+33 196594974720
+34 60001898496
+35 274531794944
+36 105929203712
+37 158260707328
+38 296459698176
+39 224462094336
+40 282858455040
+41 258265841664
+42 103464173568
+43 133672198144
+44 268920602624
+45 77394894848
+46 171947163648
+47 177972477952
+48 119420682240
+49 118986366976
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000137807801365852
+1 0.000138844930916093
+2 0.000133370325784199
+3 0.00013894189032726
+4 0.000132819084683433
+5 0.000138381510623731
+6 0.000137426352011971
+7 0.000140324875246733
+8 0.000137925570015796
+9 0.000134750138386153
+10 0.000136255635879934
+11 0.000136362330522388
+12 0.000139414158184081
+13 0.000138982737553306
+14 0.00014025645214133
+15 0.000135465525090694
+16 0.0001411976700183
+17 0.000137971743242815
+18 0.000140576958074234
+19 0.000138100585900247
+20 0.000135736961965449
+21 0.00013754068640992
+22 0.000136743110488169
+23 0.000142192555358633
+24 0.000138067771331407
+25 0.000138997522299178
+26 0.00013639242388308
+27 0.00013941153883934
+28 0.000135769994813018
+29 0.000140508389449678
+30 0.000142463701195084
+31 0.000139976327773184
+32 0.000134259156766348
+33 0.000138482719194144
+34 0.000139018156914972
+35 0.000140463496791199
+36 0.000134198387968354
+37 0.000136545990244485
+38 0.000142477874760516
+39 0.000137849609018303
+40 0.000135729860630818
+41 0.000137376351631247
+42 0.000141747572342865
+43 0.000137663184432313
+44 0.000139977841172367
+45 0.000138013419928029
+46 0.000130934771732427
+47 0.000140585427288897
+48 0.000138491712277755
+49 0.000139441865030676
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000136132337502204
+1 0.000125370846944861
+2 0.00017524189024698
+3 0.000126502549392171
+4 0.000180350863956846
+5 0.000131599721498787
+6 0.000137370239826851
+7 0.000114472582936287
+8 0.000133461464429274
+9 0.000162421158165671
+10 0.000147284401464276
+11 0.000149902232806198
+12 0.000116387549496721
+13 0.000125545571791008
+14 0.000112886249553412
+15 0.000154740293510258
+16 0.000110006927570794
+17 0.000132564557134174
+18 0.000110456741822418
+19 0.000131618391606025
+20 0.000153633474837989
+21 0.000135831869556569
+22 0.000144978461321443
+23 9.74595241132192e-05
+24 0.000132603905512951
+25 0.000124025551485829
+26 0.000148565493873321
+27 0.000122654120787047
+28 0.000153768298332579
+29 0.000110099768789951
+30 9.56392177613452e-05
+31 0.000115948569145985
+32 0.000167968886671588
+33 0.000130168977193534
+34 0.000130853150039911
+35 0.000111434237624053
+36 0.000168431157362647
+37 0.000146176462294534
+38 9.18380683287978e-05
+39 0.000133091220050119
+40 0.000152329899719916
+41 0.000138936433359049
+42 9.94872098090127e-05
+43 0.000134541012812406
+44 0.0001169533279608
+45 0.000131949578644708
+46 0.000201312781427987
+47 0.000109440603409894
+48 0.000129267034935765
+49 0.000122139303130098
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.007365778736652666, Learning_Process.pdf b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.007365778736652666, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..c05da0c0eae2671899a17676f31ce8e77c1bc2cb
Binary files /dev/null and b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.007365778736652666, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.007365778736652666, Learning_Process.tex b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.007365778736652666, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..70a63fda5d3b673418c36a94e3a78a84dc406435
--- /dev/null
+++ b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.007365778736652666, Learning_Process.tex	
@@ -0,0 +1,268 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.16855061338747e-06, ymax=1.50557427261906e+18,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-06,0.001,1,1000,1000000,1000000000,1000000000000,1e+15,1e+18,1e+21,1e+24},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{0}}\),
+  \(\displaystyle {10^{3}}\),
+  \(\displaystyle {10^{6}}\),
+  \(\displaystyle {10^{9}}\),
+  \(\displaystyle {10^{12}}\),
+  \(\displaystyle {10^{15}}\),
+  \(\displaystyle {10^{18}}\),
+  \(\displaystyle {10^{21}}\),
+  \(\displaystyle {10^{24}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00012667641567532
+1 5.67278329981491e-05
+2 2.06215663638432e-05
+3 0.00809975527226925
+4 1
+5 1
+6 1
+7 1
+8 1
+9 1
+10 1
+11 1
+12 1
+13 1
+14 1
+15 1
+16 1
+17 1
+18 1
+19 1
+20 1
+21 1
+22 1
+23 1
+24 1
+25 1
+26 1
+27 1
+28 1
+29 1
+30 1
+31 1
+32 1
+33 1
+34 1
+35 1
+36 1
+37 1
+38 1
+39 1
+40 1
+41 1
+42 1
+43 1
+44 1
+45 1
+46 1
+47 1
+48 1
+49 1
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000143282886710949
+1 4.48062673967797e-05
+2 1.45733401950565e-05
+3 2.89948420686414e-05
+4 254186583228416
+5 1.20723164094267e+17
+6 30836344750080
+7 21256921415680
+8 12609632862208
+9 7702840344576
+10 7242064068608
+11 8804741677056
+12 5916283371520
+13 3440493985792
+14 5123855089664
+15 2740848951296
+16 3747934371840
+17 1421183811584
+18 2272270221312
+19 3008236617728
+20 1892231151616
+21 2307227648000
+22 1470957486080
+23 2993535844352
+24 1681261723648
+25 1691650097152
+26 1668433182720
+27 1824848216064
+28 2601098149888
+29 2514901794816
+30 1806930280448
+31 1515842043904
+32 2150566461440
+33 1031381254144
+34 1618740641792
+35 1393715707904
+36 698067386368
+37 1057604435968
+38 1455253880832
+39 1083255226368
+40 754155061248
+41 814989377536
+42 973510541312
+43 733977640960
+44 729529581568
+45 536226627584
+46 743543078912
+47 521466806272
+48 840327954432
+49 1200867377152
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000128122541354969
+1 0.000129204519907944
+2 0.000129984982777387
+3 0.00012915649858769
+4 0.000127442312077619
+5 0.000127608378534205
+6 0.000129388034110889
+7 0.000127919396618381
+8 0.000130664615426213
+9 0.000126827522763051
+10 0.000127945299027488
+11 0.000129855354316533
+12 0.000129792577354237
+13 0.000131122258608229
+14 0.000127532257465646
+15 0.000127993334899656
+16 0.000127312610857189
+17 0.000127221312141046
+18 0.000127497158246115
+19 0.000128358136862516
+20 0.000128291212604381
+21 0.000127798004541546
+22 0.00012753224291373
+23 0.000127964347484522
+24 0.000128650979604572
+25 0.000125426056911238
+26 0.000126402184832841
+27 0.000126866143546067
+28 0.000128840023535304
+29 0.000127850973512977
+30 0.00012835962115787
+31 0.000127623148728162
+32 0.000128318279166706
+33 0.000130876054754481
+34 0.000125694466987625
+35 0.000127509905723855
+36 0.000128953659441322
+37 0.000127951076137833
+38 0.00012771446199622
+39 0.000127454637549818
+40 0.000124600745039061
+41 0.000128318148199469
+42 0.000127302220789716
+43 0.000129047417431138
+44 0.000127195526147261
+45 0.000127096325741149
+46 0.000127881081425585
+47 0.000130283806356601
+48 0.00012981343024876
+49 0.000125096237752587
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000131033943034708
+1 0.000130222251755185
+2 0.000118292125989683
+3 0.000123078745673411
+4 0.000138832911034115
+5 0.000134556641569361
+6 0.000118941003165673
+7 0.000135337657411583
+8 0.000110180139017757
+9 0.000143378027132712
+10 0.000137820796226151
+11 0.000116922055894975
+12 0.000118411160656251
+13 0.000105558196082711
+14 0.000136011323775165
+15 0.000134019443066791
+16 0.000139019641210325
+17 0.000138732400955632
+18 0.000137122959131375
+19 0.000128874118672684
+20 0.000132306711748242
+21 0.00013826132635586
+22 0.000138261559186503
+23 0.00013323116581887
+24 0.000129113861476071
+25 0.000154176581418142
+26 0.00014750957780052
+27 0.000138706833240576
+28 0.000124462632811628
+29 0.000133081441163085
+30 0.000130168817122467
+31 0.000135409020003863
+32 0.000132400047732517
+33 0.000107210849819239
+34 0.000153558867168613
+35 0.000136120434035547
+36 0.000123087418614887
+37 0.000127689156215638
+38 0.00013568255235441
+39 0.000138709379825741
+40 0.000162501484737732
+41 0.000130440326756798
+42 0.000140558884595521
+43 0.000126013052067719
+44 0.0001424284564564
+45 0.000140270160045475
+46 0.000133021298097447
+47 0.000113696209155023
+48 0.000115480506792665
+49 0.00015774107305333
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.0075997055414649736, Learning_Process.pdf b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.0075997055414649736, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..cf2c4bb779fc80ed015dc3d84451e87a617875ba
Binary files /dev/null and b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.0075997055414649736, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.0075997055414649736, Learning_Process.tex b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.0075997055414649736, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..71a97a9587f79fdda900cafe7f72384998d52197
--- /dev/null
+++ b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.0075997055414649736, Learning_Process.tex	
@@ -0,0 +1,267 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.97649102099863e-06, ymax=6.88934717401791e+17,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-06,0.001,1,1000,1000000,1000000000,1000000000000,1e+15,1e+18,1e+21},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{0}}\),
+  \(\displaystyle {10^{3}}\),
+  \(\displaystyle {10^{6}}\),
+  \(\displaystyle {10^{9}}\),
+  \(\displaystyle {10^{12}}\),
+  \(\displaystyle {10^{15}}\),
+  \(\displaystyle {10^{18}}\),
+  \(\displaystyle {10^{21}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000137408569571562
+1 5.24524766660761e-05
+2 0.999995112419128
+3 1
+4 1
+5 1
+6 1
+7 1
+8 1
+9 1
+10 1
+11 1
+12 1
+13 1
+14 1
+15 1
+16 1
+17 1
+18 1
+19 1
+20 1
+21 1
+22 1
+23 1
+24 1
+25 1
+26 1
+27 1
+28 1
+29 1
+30 1
+31 1
+32 1
+33 1
+34 1
+35 1
+36 1
+37 1
+38 1
+39 1
+40 1
+41 1
+42 1
+43 1
+44 1
+45 1
+46 1
+47 1
+48 1
+49 1
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000144562567584217
+1 4.52692765975371e-05
+2 2951170752512
+3 506778760511488
+4 6.05166003017482e+16
+5 744475336900608
+6 28371528450048
+7 14042580123648
+8 17932362973184
+9 14105781993472
+10 8432569548800
+11 12309389901824
+12 8134067748864
+13 5151367626752
+14 4725747482624
+15 3381372125184
+16 6040684331008
+17 5040561979392
+18 4330852188160
+19 2541395902464
+20 3254663774208
+21 2774290137088
+22 2891386191872
+23 1946261127168
+24 3732413087744
+25 2247908655104
+26 4561564073984
+27 3748527079424
+28 2649778814976
+29 5064564932608
+30 3195686879232
+31 2367779766272
+32 2681416450048
+33 2869426913280
+34 2161515692032
+35 1685874278400
+36 2270764204032
+37 2264721260544
+38 2125301284864
+39 2968359010304
+40 2308718198784
+41 2133216067584
+42 1897819013120
+43 1067849351168
+44 1616810344448
+45 1939261882368
+46 2177155465216
+47 2014409129984
+48 1344718635008
+49 1839043182592
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000135405847686343
+1 0.000136450136778876
+2 0.000136546630528755
+3 0.000138576651806943
+4 0.000137077848194167
+5 0.000133559777168557
+6 0.000137260823976249
+7 0.000135819835122675
+8 0.000140809919685125
+9 0.000133122593979351
+10 0.000136340138851665
+11 0.000136928632855415
+12 0.000137935276143253
+13 0.000137334121973254
+14 0.000137523558805697
+15 0.000139158175443299
+16 0.000138484290800989
+17 0.000142159478855319
+18 0.000136203379952349
+19 0.000135879119625315
+20 0.000139054187457077
+21 0.000137261056806892
+22 0.000136542876134627
+23 0.000137308030389249
+24 0.000139273193781264
+25 0.000140355434268713
+26 0.000140051080961712
+27 0.000136500239023007
+28 0.000137578172143549
+29 0.000140913864015602
+30 0.000138221876113676
+31 0.000137061884743161
+32 0.000137129492941312
+33 0.000136778777232394
+34 0.000136551054310985
+35 0.000134389512822963
+36 0.00013945710088592
+37 0.000136234069941565
+38 0.000138714400236495
+39 0.000139647265314125
+40 0.000133385517983697
+41 0.0001369250821881
+42 0.000138670526212081
+43 0.000135916154249571
+44 0.000136771021061577
+45 0.000138769042678177
+46 0.000136121831019409
+47 0.000137896742671728
+48 0.000137976719997823
+49 0.000137818598886952
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000162900891155005
+1 0.000154994893819094
+2 0.000153734392370097
+3 0.000134206144139171
+4 0.000147541213664226
+5 0.000179133887286298
+6 0.000145673242514022
+7 0.000159921080921777
+8 0.000113104099000338
+9 0.000181034978595562
+10 0.000154017892782576
+11 0.000147871658555232
+12 0.000137954120873474
+13 0.000144075413118117
+14 0.000143654804560356
+15 0.000127588224131614
+16 0.000134254223667085
+17 0.000103027494333219
+18 0.000156323803821579
+19 0.000158048074808903
+20 0.000127491992316209
+21 0.000146736434544437
+22 0.000152782071381807
+23 0.000145413723657839
+24 0.00012722636165563
+25 0.000117452400445472
+26 0.000120612909086049
+27 0.000152253123815171
+28 0.000145118057844229
+29 0.000113427406176925
+30 0.000136382775963284
+31 0.000148651844938286
+32 0.000145960060763173
+33 0.000147919112350792
+34 0.000152174179675058
+35 0.000172663887497038
+36 0.000126166676636785
+37 0.000156197842443362
+38 0.000133000532514416
+39 0.000123264209832996
+40 0.000181126451934688
+41 0.000148460661876015
+42 0.000134830115712248
+43 0.000156795373186469
+44 0.000151643282151781
+45 0.000131492910441011
+46 0.000157570102601312
+47 0.000139248237246647
+48 0.000139891169965267
+49 0.000140343370730989
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.008205209609546578, Learning_Process.pdf b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.008205209609546578, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..336616f6bda694a23ff7a3023990a0ca99e56293
Binary files /dev/null and b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.008205209609546578, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.008205209609546578, Learning_Process.tex b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.008205209609546578, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..63f957e2a056d30bfe9d1e6f32d2a83a1a90268e
--- /dev/null
+++ b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.008205209609546578, Learning_Process.tex	
@@ -0,0 +1,266 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.01425444908956e-05, ymax=2.28376176789347e+15,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-05,0.01,10,10000,10000000,10000000000,10000000000000,1e+16,1e+19},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{1}}\),
+  \(\displaystyle {10^{4}}\),
+  \(\displaystyle {10^{7}}\),
+  \(\displaystyle {10^{10}}\),
+  \(\displaystyle {10^{13}}\),
+  \(\displaystyle {10^{16}}\),
+  \(\displaystyle {10^{19}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00011571839422686
+1 0.000128715939354151
+2 0.987632095813751
+3 1
+4 1
+5 1
+6 1
+7 1
+8 1
+9 1
+10 1
+11 1
+12 1
+13 1
+14 1
+15 1
+16 1
+17 1
+18 1
+19 1
+20 1
+21 1
+22 1
+23 1
+24 1
+25 1
+26 1
+27 1
+28 1
+29 1
+30 1
+31 1
+32 1
+33 1
+34 1
+35 1
+36 1
+37 1
+38 1
+39 1
+40 1
+41 1
+42 1
+43 1
+44 1
+45 1
+46 1
+47 1
+48 1
+49 1
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000102882499049883
+1 0.000179707349161617
+2 1140621443072
+3 271354473480192
+4 2392497848320
+5 179895156736
+6 139546836992
+7 95485353984
+8 83659849728
+9 85629837312
+10 61937823744
+11 30543079424
+12 74655424512
+13 48244465664
+14 52545077248
+15 50197811200
+16 70567321600
+17 34979999744
+18 34876993536
+19 23956860928
+20 54645075968
+21 30460766208
+22 28188659712
+23 28707334144
+24 25247873024
+25 30460792832
+26 41611964416
+27 24472573952
+28 38734307328
+29 30709409792
+30 20814247936
+31 27649882112
+32 27380209664
+33 22418210816
+34 15773891584
+35 22700830720
+36 23960113152
+37 28168802304
+38 27500886016
+39 12634668032
+40 10507986944
+41 19177324544
+42 31713892352
+43 17035039744
+44 10058968064
+45 16400754688
+46 11206077440
+47 19453165568
+48 9775229952
+49 18158573568
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000113591566332616
+1 0.000114298338303342
+2 0.000113246736873407
+3 0.000112604560854379
+4 0.000111960660433397
+5 0.000114646245492622
+6 0.00011449840530986
+7 0.000114562157250475
+8 0.000112791880383156
+9 0.000112168614577968
+10 0.000113563197373878
+11 0.000115163085865788
+12 0.000114165173727088
+13 0.000114746500912588
+14 0.000112578811240382
+15 0.000113784961286001
+16 0.000115026123239659
+17 0.000113901362055913
+18 0.000115176946565043
+19 0.000113803143904079
+20 0.000114915608719457
+21 0.000113050889922306
+22 0.000117680021503475
+23 0.000113048983621411
+24 0.000114894413854927
+25 0.000112657231511548
+26 0.000112147965410259
+27 0.000113539237645455
+28 0.00011645245103864
+29 0.000115348339022603
+30 0.000116867282486055
+31 0.000115048998850398
+32 0.000115796909085475
+33 0.000115837472549174
+34 0.000113894711830653
+35 0.000114111709990539
+36 0.000113649286504369
+37 0.000115458300570026
+38 0.000113428934128024
+39 0.000112700814497657
+40 0.000115300303150434
+41 0.000113667694677133
+42 0.000112954548967537
+43 0.00011364727106411
+44 0.000114813075924758
+45 0.000115249989903532
+46 0.000115846734843217
+47 0.000112782618089113
+48 0.000115759983600583
+49 0.000114877097075805
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000120130207506008
+1 0.000115550101327244
+2 0.000119963289762381
+3 0.000130771775729954
+4 0.000135409165523015
+5 0.000112234782136511
+6 0.00011086551239714
+7 0.000108215390355326
+8 0.000128977349959314
+9 0.000133316774736159
+10 0.000120293632789981
+11 0.000105740320577752
+12 0.000114119895442855
+13 0.000108207626908552
+14 0.000128649160615169
+15 0.000119542579341214
+16 0.000106872677861247
+17 0.000117123665404506
+18 0.000104147860838566
+19 0.000117342293378897
+20 0.000108010674011894
+21 0.000128149855299853
+22 8.53612436912954e-05
+23 0.000125725287944078
+24 0.000110283166577574
+25 0.000128956846310757
+26 0.000133047607960179
+27 0.000119604424980935
+28 9.32915936573409e-05
+29 0.000104544895293657
+30 9.05904089449905e-05
+31 0.000108391417597886
+32 0.000100461933470797
+33 0.000100351455330383
+34 0.000120226344733965
+35 0.000114597663923632
+36 0.000122041106806137
+37 0.000104010607174132
+38 0.000121631870570127
+39 0.000129539213958196
+40 0.000104131373518612
+41 0.000119195916340686
+42 0.0001254596572835
+43 0.000119890857604332
+44 0.000109909466118552
+45 0.000106378553027753
+46 0.0001011848798953
+47 0.00012694725592155
+48 0.000101680336229037
+49 0.000109805376268923
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.0082659156928486, Learning_Process.pdf b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.0082659156928486, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..850829191e50b95d9a9c80f10e10a4aacaac4f1b
Binary files /dev/null and b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.0082659156928486, Learning_Process.pdf differ
diff --git a/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.0082659156928486, Learning_Process.tex b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.0082659156928486, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..4b31d53429b250991408f6bb4e30f77b0a97a50e
--- /dev/null
+++ b/models_URWF/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.0082659156928486, Learning_Process.tex	
@@ -0,0 +1,260 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=9.27935571399555e-06, ymax=1.30890342934031e+17,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-06,0.001,1,1000,1000000,1000000000,1000000000000,1e+15,1e+18,1e+21},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{0}}\),
+  \(\displaystyle {10^{3}}\),
+  \(\displaystyle {10^{6}}\),
+  \(\displaystyle {10^{9}}\),
+  \(\displaystyle {10^{12}}\),
+  \(\displaystyle {10^{15}}\),
+  \(\displaystyle {10^{18}}\),
+  \(\displaystyle {10^{21}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000120816541311797
+1 0.000231861660722643
+2 0.130789339542389
+3 1
+4 1
+5 0.999999761581421
+6 1
+7 1
+8 0.992816865444183
+9 0.999997079372406
+10 0.999969840049744
+11 0.99810004234314
+12 0.999039232730865
+13 1
+14 1
+15 0.99295961856842
+16 1
+17 1
+18 1
+19 1
+20 1
+21 0.999999940395355
+22 1
+23 1
+24 1
+25 1
+26 0.999984860420227
+27 0.999944865703583
+28 1
+29 1
+30 0.999999761581421
+31 1
+32 1
+33 1
+34 1
+35 0.993154764175415
+36 1
+37 1
+38 1.00003516674042
+39 0.999999940395355
+40 1
+41 1
+42 1
+43 1
+44 1
+45 1
+46 1
+47 1
+48 1
+49 1
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000144478035508655
+1 0.000301954190945253
+2 0.0416742637753487
+3 1.28859713348567e+16
+4 12107774951424
+5 1106734088192
+6 528784097280
+7 335127314432
+8 312276385792
+9 219063058432
+10 206555316224
+11 227218456576
+12 116460879872
+13 142075707392
+14 195751936000
+15 111856730112
+16 73010593792
+17 54560698368
+18 118691962880
+19 75480203264
+20 99317907456
+21 82617466880
+22 71914684416
+23 49499009024
+24 60372590592
+25 68598149120
+26 64176418816
+27 81383211008
+28 39787360256
+29 52662202368
+30 66841997312
+31 32860547072
+32 55133089792
+33 33377343488
+34 35352338432
+35 31210870784
+36 43604680704
+37 28689102848
+38 68375019520
+39 60777680896
+40 22887776256
+41 43666419712
+42 42390810624
+43 29257306112
+44 34315718656
+45 19465410560
+46 21731344384
+47 37213786112
+48 28711606272
+49 47744749568
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000121654600661714
+1 0.000118951895274222
+2 0.000122129960800521
+3 0.000121162782306783
+4 0.000118134121294133
+5 0.000119986296340358
+6 0.000119732532766648
+7 0.000121530771139078
+8 0.000122837140224874
+9 0.000120517135655973
+10 0.00012053544196533
+11 0.000119889933557715
+12 0.000118315612780862
+13 0.000120657023217063
+14 0.000123213394545019
+15 0.00012359325774014
+16 0.000123142555821687
+17 0.00012256573245395
+18 0.000120778342534322
+19 0.00012122662155889
+20 0.000122896322864108
+21 0.000120521464850754
+22 0.000122231271234341
+23 0.000120676304504741
+24 0.000121466095151845
+25 0.000121148892503697
+26 0.000117936506285332
+27 0.000122403813293204
+28 0.000122028330224566
+29 0.000124162150314078
+30 0.000122265410027467
+31 0.000123999619972892
+32 0.000120642915135249
+33 0.000117196716018952
+34 0.000122793120681308
+35 0.000122570432722569
+36 0.000122675410239026
+37 0.000119716780318413
+38 0.000121848752314691
+39 0.000121163880976383
+40 0.000122973957331851
+41 0.000121650518849492
+42 0.000121126999147236
+43 0.000122603203635663
+44 0.000122225275845267
+45 0.000122186174849048
+46 0.000122398021630943
+47 0.000119635893497616
+48 0.000121673409012146
+49 0.000123174104373902
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000117570649308618
+1 0.000141731215990148
+2 0.000112105910375249
+3 0.000123181991511956
+4 0.000148719394928776
+5 0.000132122033392079
+6 0.000128831234178506
+7 0.000118586074677296
+8 0.000106200808659196
+9 0.00012607267126441
+10 0.000128722545923665
+11 0.000135360183776356
+12 0.000147156955790706
+13 0.000127737104776315
+14 0.000106567473267205
+15 9.86558152362704e-05
+16 0.000127580700791441
+17 0.000109016385977156
+18 0.000125732607557438
+19 0.000120623437396716
+20 0.000106337305624038
+21 0.000126969127450138
+22 0.000114540525828488
+23 0.000127965671708807
+24 0.000122048928460572
+25 0.00012102561595384
+26 0.000150155377923511
+27 0.00011127843754366
+28 0.000114102986117359
+29 9.42558399401605e-05
+30 0.000108787869976368
+31 9.59851313382387e-05
+32 0.000127524006529711
+33 0.000158847018610686
+34 0.000108533517050091
+35 0.000109717911982443
+36 0.000112465022539254
+37 0.000137066788738593
+38 0.000116422052087728
+39 0.000122732715681195
+40 0.000119994234410115
+41 0.000116854709631298
+42 0.000120922100904863
+43 0.000109015578345861
+44 0.00011802239168901
+45 0.000114667709567584
+46 0.000114150454464834
+47 0.0001372166298097
+48 0.000122950805234723
+49 0.000103792597656138
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/URWF_20230915_105933_0 b/models_URWF/URWF_20230915_105933_0
deleted file mode 100644
index 92bc9ab4fd03cf59e161b558b09b2df05337bdc7..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_105933_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_105933_1 b/models_URWF/URWF_20230915_105933_1
deleted file mode 100644
index eb037b8e7e3113a561940c714dd3bc21fdd8303e..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_105933_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_105935_0 b/models_URWF/URWF_20230915_105935_0
deleted file mode 100644
index af9a407298d2457b7f78944376e5407bb05b300e..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_105935_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_105935_1 b/models_URWF/URWF_20230915_105935_1
deleted file mode 100644
index a764684766ad9b7964f47944cb4ad110a4d9bac1..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_105935_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_105937_0 b/models_URWF/URWF_20230915_105937_0
deleted file mode 100644
index d15f3553d359e5d230162ac7a94849d44e742e66..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_105937_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_105937_1 b/models_URWF/URWF_20230915_105937_1
deleted file mode 100644
index 7e9ef806c09b8d058431a966d874c562619958a8..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_105937_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_105939_0 b/models_URWF/URWF_20230915_105939_0
deleted file mode 100644
index 8d5fa9069d1ee8ef29840fd9b866c58330ad2172..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_105939_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_105939_1 b/models_URWF/URWF_20230915_105939_1
deleted file mode 100644
index fc2561e67d1dcfd6e96096b669fb39a0a313b0e7..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_105939_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_105941_0 b/models_URWF/URWF_20230915_105941_0
deleted file mode 100644
index 82f54675b0cf91192a6357cf52606e19cf52a59b..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_105941_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_105941_1 b/models_URWF/URWF_20230915_105941_1
deleted file mode 100644
index 70f1911686642a16f1bc11cceb8787126b34b303..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_105941_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_105943_0 b/models_URWF/URWF_20230915_105943_0
deleted file mode 100644
index 3b5b911ed8cea39d161da94264a084980570f674..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_105943_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_105943_1 b/models_URWF/URWF_20230915_105943_1
deleted file mode 100644
index b8c6bfbccb5d1d8509b778406afc6cea3318fcf7..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_105943_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_124853_0 b/models_URWF/URWF_20230915_124853_0
deleted file mode 100644
index feedbfd19916c6d92758d8578710c2987af714fa..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_124853_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_124855_0 b/models_URWF/URWF_20230915_124855_0
deleted file mode 100644
index 414922c6214c79d3085d57c8bd34498bb5f18da1..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_124855_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_124855_1 b/models_URWF/URWF_20230915_124855_1
deleted file mode 100644
index 4794aa13c012d7fa9c4b97181092e1bf3dd09ca3..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_124855_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_124857_0 b/models_URWF/URWF_20230915_124857_0
deleted file mode 100644
index aff13709c8b5784dd62832e78c9092d15d7a7849..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_124857_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_124857_1 b/models_URWF/URWF_20230915_124857_1
deleted file mode 100644
index 61a2d02715165362f884edffbbd83dcf39bc1064..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_124857_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_124859_0 b/models_URWF/URWF_20230915_124859_0
deleted file mode 100644
index 74a5fea737d8c6c24609b670bbcd8ae1ca9db21d..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_124859_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_124859_1 b/models_URWF/URWF_20230915_124859_1
deleted file mode 100644
index 9a28b5a8ed38cd7deb6fd2ffb3e3229e58e080aa..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_124859_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_124901_0 b/models_URWF/URWF_20230915_124901_0
deleted file mode 100644
index 39e3cfdafb91a5c0034943a0b4f7bfcb903b9a87..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_124901_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_124901_1 b/models_URWF/URWF_20230915_124901_1
deleted file mode 100644
index cdb99e74cdc12778a9d91e586c02f42a376d6fce..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_124901_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_124903_0 b/models_URWF/URWF_20230915_124903_0
deleted file mode 100644
index c0e6d8424767490e736b4c1d04e9228052f041f8..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_124903_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_124903_1 b/models_URWF/URWF_20230915_124903_1
deleted file mode 100644
index 55c84eb9cd7d7533bfa1edc566de9b5e338dc73e..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_124903_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_130416_0 b/models_URWF/URWF_20230915_130416_0
deleted file mode 100644
index f1f2d017ecce7058c9a338b64c3c646ece7756ee..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_130416_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_130418_0 b/models_URWF/URWF_20230915_130418_0
deleted file mode 100644
index 22f5c17c3d94eafb6d02eaca68370392e9597130..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_130418_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_130421_0 b/models_URWF/URWF_20230915_130421_0
deleted file mode 100644
index dc10b2860a7bff02d8210d36f157a0e6d478996d..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_130421_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_130421_1 b/models_URWF/URWF_20230915_130421_1
deleted file mode 100644
index c45c41cf4006149d41b6977103381fe956176694..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_130421_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_130423_0 b/models_URWF/URWF_20230915_130423_0
deleted file mode 100644
index e5d723c04a644ced7a9d60e45e8baa29dfc2aeae..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_130423_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_130423_1 b/models_URWF/URWF_20230915_130423_1
deleted file mode 100644
index 96a9c34869856bd6424a920e9aa319fdffc5ad6e..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_130423_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_130425_0 b/models_URWF/URWF_20230915_130425_0
deleted file mode 100644
index 7a1124998d976cf0a52d81d1a35084ccac034304..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_130425_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_130425_1 b/models_URWF/URWF_20230915_130425_1
deleted file mode 100644
index 59106f8207367467247faa1b5fa03bd92c358339..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_130425_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_130427_0 b/models_URWF/URWF_20230915_130427_0
deleted file mode 100644
index e2cb2cb1569e2022eb7332d771b3bd6693839712..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_130427_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_130427_1 b/models_URWF/URWF_20230915_130427_1
deleted file mode 100644
index 608991e5ef627f72d7a86f826706b34826ca3415..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_130427_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_130512_0 b/models_URWF/URWF_20230915_130512_0
deleted file mode 100644
index c2b05aafe844548d477f1d5f64d35a7aebbfe972..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_130512_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_130514_0 b/models_URWF/URWF_20230915_130514_0
deleted file mode 100644
index 6b9845a95fca7c3f3561a3dc2d64ddc421ff0e64..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_130514_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_130514_1 b/models_URWF/URWF_20230915_130514_1
deleted file mode 100644
index a266462a4cc450eddec88c8d66302cb36b5d9208..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_130514_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_130516_0 b/models_URWF/URWF_20230915_130516_0
deleted file mode 100644
index 7c132711e5dea673e0e360f8c2916072b630068d..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_130516_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_130516_1 b/models_URWF/URWF_20230915_130516_1
deleted file mode 100644
index 13a889bcaf0d6d134126e9daed4a237af285777d..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_130516_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_130518_0 b/models_URWF/URWF_20230915_130518_0
deleted file mode 100644
index a16da14f1b9cbd96730a6c60b33ecefee8d8c769..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_130518_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_130518_1 b/models_URWF/URWF_20230915_130518_1
deleted file mode 100644
index d99798a1d7970dc698956221ce282ee178b2c90b..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_130518_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_130520_0 b/models_URWF/URWF_20230915_130520_0
deleted file mode 100644
index 9880c502a3469ff14c69936bc981f6ef9b03a990..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_130520_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_130520_1 b/models_URWF/URWF_20230915_130520_1
deleted file mode 100644
index 047d7f93479d394f1399f061eedbbbe23891f58f..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_130520_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_130522_0 b/models_URWF/URWF_20230915_130522_0
deleted file mode 100644
index 61a2b5ecb62b15d8f7202bd75a4ee37fdf4c055f..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_130522_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_130522_1 b/models_URWF/URWF_20230915_130522_1
deleted file mode 100644
index ccf3b590533896c942d3436853d969ee91ffec7c..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_130522_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131052_0 b/models_URWF/URWF_20230915_131052_0
deleted file mode 100644
index c83ee83e202ce5d3e51b8e5bf400e82a7d012c6d..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131052_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131052_1 b/models_URWF/URWF_20230915_131052_1
deleted file mode 100644
index 64e9fa9139522e726c4ab1bc3e68cfbee3126dc6..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131052_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131053_0 b/models_URWF/URWF_20230915_131053_0
deleted file mode 100644
index e45e01c742f2e97c1973840e7bf8043a99c7dfbe..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131053_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131053_1 b/models_URWF/URWF_20230915_131053_1
deleted file mode 100644
index 3ac7c082cd3325a8c7013d2d431bff0e610c265b..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131053_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131055_0 b/models_URWF/URWF_20230915_131055_0
deleted file mode 100644
index 21daa853d5c6430dd8ced385d5ccc3fff3167668..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131055_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131055_1 b/models_URWF/URWF_20230915_131055_1
deleted file mode 100644
index ee726788a1bb0c37f06d9396624ff6e73fa58acb..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131055_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131057_0 b/models_URWF/URWF_20230915_131057_0
deleted file mode 100644
index f648f4188427ae946d1452c9003c6751cdbf533b..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131057_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131057_1 b/models_URWF/URWF_20230915_131057_1
deleted file mode 100644
index 1a4dffe5bd3b03531180c2092389df32ac2e2448..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131057_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131100_0 b/models_URWF/URWF_20230915_131100_0
deleted file mode 100644
index e709ae79e3d9f29ca75b65f8e9b949864cd9547f..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131100_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131100_1 b/models_URWF/URWF_20230915_131100_1
deleted file mode 100644
index eac9a5815ca27a7b5c821c106736983df39234a1..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131100_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131102_0 b/models_URWF/URWF_20230915_131102_0
deleted file mode 100644
index 62f8dc952a9c4ea733cd40bca0f38301832d1d90..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131102_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131102_1 b/models_URWF/URWF_20230915_131102_1
deleted file mode 100644
index 838ef7b7bb8a2a650bed3d8e78513d0cd4b729c5..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131102_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131258_0 b/models_URWF/URWF_20230915_131258_0
deleted file mode 100644
index 0f5137353268413dc75df2d3a4614603dd3f6ee4..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131258_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131300_0 b/models_URWF/URWF_20230915_131300_0
deleted file mode 100644
index fede2e33d7214f55b64efd9185da2eedf3a86bf8..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131300_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131300_1 b/models_URWF/URWF_20230915_131300_1
deleted file mode 100644
index 39b3d9c433f9d8436c81ae1da4e03c90f1c8a1a9..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131300_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131302_0 b/models_URWF/URWF_20230915_131302_0
deleted file mode 100644
index 4009c9f30dfe16d3264146bc3d97ac06615f9552..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131302_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131302_1 b/models_URWF/URWF_20230915_131302_1
deleted file mode 100644
index 3a1428efa26dbefe765a64d51ac14d85fb563629..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131302_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131304_0 b/models_URWF/URWF_20230915_131304_0
deleted file mode 100644
index 574238b94ecd370c4ebfba35919d2abf3318b96b..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131304_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131304_1 b/models_URWF/URWF_20230915_131304_1
deleted file mode 100644
index e00bd564b4a3195891e77e58961eb112b6746fab..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131304_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131307_0 b/models_URWF/URWF_20230915_131307_0
deleted file mode 100644
index a88692aaf139c051e24bfae28fdc02c6562f8ea3..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131307_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131307_1 b/models_URWF/URWF_20230915_131307_1
deleted file mode 100644
index c416c3dbde15d279b870b9d1fc7406d38434d453..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131307_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131309_0 b/models_URWF/URWF_20230915_131309_0
deleted file mode 100644
index 9afd89273b00ae3aac142e8452ae8c0c0a69206c..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131309_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131309_1 b/models_URWF/URWF_20230915_131309_1
deleted file mode 100644
index 2b06f7727a7a09959304f2d3a2bf3345dc5faaed..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131309_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131352_0 b/models_URWF/URWF_20230915_131352_0
deleted file mode 100644
index 52dc37da71bead879ba6cfc0d1a31e49dbce144b..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131352_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131352_1 b/models_URWF/URWF_20230915_131352_1
deleted file mode 100644
index 13ad011557f0ac7e79860b8910a1e268576e5d8a..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131352_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131354_0 b/models_URWF/URWF_20230915_131354_0
deleted file mode 100644
index 558106e9874cc726e0e78fa1bdb08d27d5624f3b..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131354_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131354_1 b/models_URWF/URWF_20230915_131354_1
deleted file mode 100644
index 03d39b38e6555625840463493830e5d6491e098c..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131354_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131356_0 b/models_URWF/URWF_20230915_131356_0
deleted file mode 100644
index 7486db290e7e4912ca3db3bc4d3a05579adf7e15..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131356_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131356_1 b/models_URWF/URWF_20230915_131356_1
deleted file mode 100644
index 2500085f37a41faec00f5ac373399751fadcdb3c..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131356_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131358_0 b/models_URWF/URWF_20230915_131358_0
deleted file mode 100644
index 69074d3718eae744bf02d91078f3bcd0db713c55..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131358_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131358_1 b/models_URWF/URWF_20230915_131358_1
deleted file mode 100644
index f6e8862de522046d1607a14e516ebbed653fac95..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131358_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131401_0 b/models_URWF/URWF_20230915_131401_0
deleted file mode 100644
index cd23ad4c8cdc1969d63a3063f7fa34d748a6b7ab..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131401_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131401_1 b/models_URWF/URWF_20230915_131401_1
deleted file mode 100644
index ea49583cd0d8ff00bd892ed905bb912914098cfd..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131401_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131403_0 b/models_URWF/URWF_20230915_131403_0
deleted file mode 100644
index 405c22d982103bd7989fd87c0f658e7ec9a4065b..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131403_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131403_1 b/models_URWF/URWF_20230915_131403_1
deleted file mode 100644
index 194933e319306f073842d32b16d755bf9cbbd5d1..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131403_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131406_0 b/models_URWF/URWF_20230915_131406_0
deleted file mode 100644
index 6e0511b57f24e98c43d7e8bd86504a3a2247ae27..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131406_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131407_0 b/models_URWF/URWF_20230915_131407_0
deleted file mode 100644
index fe14c4f59e29c948b21e8524c64e7b732ab0f023..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131407_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131458_0 b/models_URWF/URWF_20230915_131458_0
deleted file mode 100644
index d53b4f7d7e53434593c2afc8c4f9625196c65a55..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131458_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131458_1 b/models_URWF/URWF_20230915_131458_1
deleted file mode 100644
index 796a117a18d2161ebf5aa6bb94eae42897b4a45a..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131458_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131500_0 b/models_URWF/URWF_20230915_131500_0
deleted file mode 100644
index 472ed2dd4ca7a23ca698cbda81387f7e7407010f..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131500_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131500_1 b/models_URWF/URWF_20230915_131500_1
deleted file mode 100644
index a432da672e74697a6c8fcfa12766ddfa4eb7c67b..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131500_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131502_0 b/models_URWF/URWF_20230915_131502_0
deleted file mode 100644
index 556ea696a9919143fcf23529e6792aa39b265e4a..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131502_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131502_1 b/models_URWF/URWF_20230915_131502_1
deleted file mode 100644
index 635b7f0c54afbf180dde2b7231024351cb51a166..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131502_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131504_0 b/models_URWF/URWF_20230915_131504_0
deleted file mode 100644
index 2dd1775c65fe6fb8c4a50097e2157a555ae6fa76..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131504_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131504_1 b/models_URWF/URWF_20230915_131504_1
deleted file mode 100644
index 69737dc46f5a2335607ce67bcfb16cad5d252b78..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131504_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131507_0 b/models_URWF/URWF_20230915_131507_0
deleted file mode 100644
index a14005bd2d2b0cfa2ca2ce9449b0451fdbdf1a18..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131507_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131507_1 b/models_URWF/URWF_20230915_131507_1
deleted file mode 100644
index 2574baba0a0e80c063554eb53b2fe2c18355d136..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131507_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131509_0 b/models_URWF/URWF_20230915_131509_0
deleted file mode 100644
index ef17b8b4abc9638caa97fe2506259b0a427a2122..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131509_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131509_1 b/models_URWF/URWF_20230915_131509_1
deleted file mode 100644
index d1372bb73d1e75f5535503901f3922ef14a0fa6a..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131509_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131512_0 b/models_URWF/URWF_20230915_131512_0
deleted file mode 100644
index affa478fa278a422469f881695bcc21c31ccd320..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131512_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131513_0 b/models_URWF/URWF_20230915_131513_0
deleted file mode 100644
index 1e64bdadf9e67d88eb9d648f4382561460e71fd7..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131513_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131547_0 b/models_URWF/URWF_20230915_131547_0
deleted file mode 100644
index fa24dea43ff08197f487d68c67a54a53b9838ed7..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131547_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131547_1 b/models_URWF/URWF_20230915_131547_1
deleted file mode 100644
index ad06f3f8ef90ce972beddc7808e55c97ecfcb646..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131547_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131548_0 b/models_URWF/URWF_20230915_131548_0
deleted file mode 100644
index 381b2bfbdb48ed721580778510b6d313aa9bbc1f..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131548_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131548_1 b/models_URWF/URWF_20230915_131548_1
deleted file mode 100644
index b06ad1cc4cc1b250530da3bdb2ca4710026e39cb..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131548_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131550_0 b/models_URWF/URWF_20230915_131550_0
deleted file mode 100644
index 2326224ebf94dc820154afe257b75c39e0983e96..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131550_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131550_1 b/models_URWF/URWF_20230915_131550_1
deleted file mode 100644
index f1be17b814ef37b6b24021a94d22b6323e43ca3e..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131550_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131552_0 b/models_URWF/URWF_20230915_131552_0
deleted file mode 100644
index 276a04dd6f9624a01d1451f98f7e598d0f9fe99d..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131552_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131552_1 b/models_URWF/URWF_20230915_131552_1
deleted file mode 100644
index 2eeeca6947d7aae8fc8509e694fe2c72af69283b..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131552_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131554_0 b/models_URWF/URWF_20230915_131554_0
deleted file mode 100644
index 7db17ac45fc9b25f32d501c8da753f452a1b49cb..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131554_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131554_1 b/models_URWF/URWF_20230915_131554_1
deleted file mode 100644
index e0128616215a99766bded37679f90eba7d6771b5..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131554_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131556_0 b/models_URWF/URWF_20230915_131556_0
deleted file mode 100644
index 3b76d4ced9b9bef895958a1c2ba897f2d5d02ceb..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131556_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131559_0 b/models_URWF/URWF_20230915_131559_0
deleted file mode 100644
index a850d6791e0c64127b5036dfddbbf5568d614d63..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131559_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131601_0 b/models_URWF/URWF_20230915_131601_0
deleted file mode 100644
index f23c56c5f1b65ad6e74588581e823936157bc640..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131601_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131800_0 b/models_URWF/URWF_20230915_131800_0
deleted file mode 100644
index 1aad2ca074c75042818a92c989d9f3fe7872df8a..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131800_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131800_1 b/models_URWF/URWF_20230915_131800_1
deleted file mode 100644
index 585fb9bdea12a34506f28edc2520476f9c424a41..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131800_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131802_0 b/models_URWF/URWF_20230915_131802_0
deleted file mode 100644
index 2e1eb1c5962f641349e82ed969e1eba65664faf7..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131802_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131804_0 b/models_URWF/URWF_20230915_131804_0
deleted file mode 100644
index f5ac12123d1fa5838a34e85438fd19a2eede8086..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131804_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131804_1 b/models_URWF/URWF_20230915_131804_1
deleted file mode 100644
index 0ac74af78b589e445cbf6923cb3108b55315a1cc..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131804_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131806_0 b/models_URWF/URWF_20230915_131806_0
deleted file mode 100644
index b2dc787afa0332733e9821ae3f53dd3fe5ebdfc9..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131806_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131806_1 b/models_URWF/URWF_20230915_131806_1
deleted file mode 100644
index 1ad6a688caa2984ae4644b4e0cfadd30faf20fd6..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131806_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131808_0 b/models_URWF/URWF_20230915_131808_0
deleted file mode 100644
index 33ab802de78982b6cf288a3ebeb916d6cf7a5025..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131808_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131808_1 b/models_URWF/URWF_20230915_131808_1
deleted file mode 100644
index 27c18964d29b163e5a1b5aeb8330b9618665aa7d..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131808_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131810_0 b/models_URWF/URWF_20230915_131810_0
deleted file mode 100644
index 2e20da65c318c593f983799c284ec13eb46d5626..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131810_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131810_1 b/models_URWF/URWF_20230915_131810_1
deleted file mode 100644
index 58e4cfac2387c8ce27a688e2ee25cf2b17a64f73..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131810_1 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131813_0 b/models_URWF/URWF_20230915_131813_0
deleted file mode 100644
index 25b433a0de77eeeeb53e184c0cd12a91f23db04a..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131813_0 and /dev/null differ
diff --git a/models_URWF/URWF_20230915_131815_0 b/models_URWF/URWF_20230915_131815_0
deleted file mode 100644
index 0c8b9a38a8e85d844992a556288b2fead6e4a065..0000000000000000000000000000000000000000
Binary files a/models_URWF/URWF_20230915_131815_0 and /dev/null differ
diff --git a/models_URWF/runs/fashion_trainer_20230915_105914/Training vs. Validation Loss_Training/events.out.tfevents.1694768355.msip-dell.ims.rwth-aachen.de.320303.1 b/models_URWF/runs/fashion_trainer_20230915_105914/Training vs. Validation Loss_Training/events.out.tfevents.1694768355.msip-dell.ims.rwth-aachen.de.320303.1
deleted file mode 100644
index 55db9f6ee428cbc0ce76652b596f751198d2212d..0000000000000000000000000000000000000000
Binary files a/models_URWF/runs/fashion_trainer_20230915_105914/Training vs. Validation Loss_Training/events.out.tfevents.1694768355.msip-dell.ims.rwth-aachen.de.320303.1 and /dev/null differ
diff --git a/models_URWF/runs/fashion_trainer_20230915_105914/Training vs. Validation Loss_Validation/events.out.tfevents.1694768355.msip-dell.ims.rwth-aachen.de.320303.2 b/models_URWF/runs/fashion_trainer_20230915_105914/Training vs. Validation Loss_Validation/events.out.tfevents.1694768355.msip-dell.ims.rwth-aachen.de.320303.2
deleted file mode 100644
index de9d57dae607ccfb3a2f27078a12a96868ce34b8..0000000000000000000000000000000000000000
Binary files a/models_URWF/runs/fashion_trainer_20230915_105914/Training vs. Validation Loss_Validation/events.out.tfevents.1694768355.msip-dell.ims.rwth-aachen.de.320303.2 and /dev/null differ
diff --git a/models_URWF/runs/fashion_trainer_20230915_105914/events.out.tfevents.1694768354.msip-dell.ims.rwth-aachen.de.320303.0 b/models_URWF/runs/fashion_trainer_20230915_105914/events.out.tfevents.1694768354.msip-dell.ims.rwth-aachen.de.320303.0
deleted file mode 100644
index 9d7a6434ad89f027bc5572f2273929947a4b90ed..0000000000000000000000000000000000000000
Binary files a/models_URWF/runs/fashion_trainer_20230915_105914/events.out.tfevents.1694768354.msip-dell.ims.rwth-aachen.de.320303.0 and /dev/null differ
diff --git a/models_URWF/runs/fashion_trainer_20230915_124844/Training vs. Validation Loss_Training/events.out.tfevents.1694774925.msip-dell.ims.rwth-aachen.de.324436.1 b/models_URWF/runs/fashion_trainer_20230915_124844/Training vs. Validation Loss_Training/events.out.tfevents.1694774925.msip-dell.ims.rwth-aachen.de.324436.1
deleted file mode 100644
index 462264a09289ecc64cc892667c330bcdcd128cfe..0000000000000000000000000000000000000000
Binary files a/models_URWF/runs/fashion_trainer_20230915_124844/Training vs. Validation Loss_Training/events.out.tfevents.1694774925.msip-dell.ims.rwth-aachen.de.324436.1 and /dev/null differ
diff --git a/models_URWF/runs/fashion_trainer_20230915_124844/Training vs. Validation Loss_Validation/events.out.tfevents.1694774925.msip-dell.ims.rwth-aachen.de.324436.2 b/models_URWF/runs/fashion_trainer_20230915_124844/Training vs. Validation Loss_Validation/events.out.tfevents.1694774925.msip-dell.ims.rwth-aachen.de.324436.2
deleted file mode 100644
index 89fdbd660f8edf848c9c9b24ce2ae649bd72ca30..0000000000000000000000000000000000000000
Binary files a/models_URWF/runs/fashion_trainer_20230915_124844/Training vs. Validation Loss_Validation/events.out.tfevents.1694774925.msip-dell.ims.rwth-aachen.de.324436.2 and /dev/null differ
diff --git a/models_URWF/runs/fashion_trainer_20230915_124844/events.out.tfevents.1694774924.msip-dell.ims.rwth-aachen.de.324436.0 b/models_URWF/runs/fashion_trainer_20230915_124844/events.out.tfevents.1694774924.msip-dell.ims.rwth-aachen.de.324436.0
deleted file mode 100644
index 473a73117b987fa8b1adca750fd030cabef388d4..0000000000000000000000000000000000000000
Binary files a/models_URWF/runs/fashion_trainer_20230915_124844/events.out.tfevents.1694774924.msip-dell.ims.rwth-aachen.de.324436.0 and /dev/null differ
diff --git a/models_URWF/without_hyper/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.pdf b/models_URWF/without_hyper/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..b614399f9d5f70e03e5f0f5066bf6b34e2520160
Binary files /dev/null and b/models_URWF/without_hyper/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.pdf differ
diff --git a/models_URWF/without_hyper/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.tex b/models_URWF/without_hyper/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..5b1f13b8b9b7a26483e49157655f67d578856ea5
--- /dev/null
+++ b/models_URWF/without_hyper/Scenario = 0, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.tex	
@@ -0,0 +1,304 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+minor ytick={2e-06,3e-06,4e-06,5e-06,6e-06,7e-06,8e-06,9e-06,2e-05,3e-05,4e-05,5e-05,6e-05,7e-05,8e-05,9e-05,0.0002,0.0003,0.0004,0.0005,0.0006,0.0007,0.0008,0.0009,0.002,0.003,0.004,0.005,0.006,0.007,0.008,0.009,0.02,0.03,0.04,0.05,0.06,0.07,0.08,0.09},
+minor yticklabels={
+  \(\displaystyle {2\times10^{-6}}\),
+  \(\displaystyle {3\times10^{-6}}\),
+  \(\displaystyle {4\times10^{-6}}\),
+  ,
+  \(\displaystyle {6\times10^{-6}}\),
+  ,
+  ,
+  ,
+  \(\displaystyle {2\times10^{-5}}\),
+  \(\displaystyle {3\times10^{-5}}\),
+  \(\displaystyle {4\times10^{-5}}\),
+  ,
+  \(\displaystyle {6\times10^{-5}}\),
+  ,
+  ,
+  ,
+  \(\displaystyle {2\times10^{-4}}\),
+  \(\displaystyle {3\times10^{-4}}\),
+  \(\displaystyle {4\times10^{-4}}\),
+  ,
+  \(\displaystyle {6\times10^{-4}}\),
+  ,
+  ,
+  ,
+  \(\displaystyle {2\times10^{-3}}\),
+  \(\displaystyle {3\times10^{-3}}\),
+  \(\displaystyle {4\times10^{-3}}\),
+  ,
+  \(\displaystyle {6\times10^{-3}}\),
+  ,
+  ,
+  ,
+  \(\displaystyle {2\times10^{-2}}\),
+  \(\displaystyle {3\times10^{-2}}\),
+  \(\displaystyle {4\times10^{-2}}\),
+  ,
+  \(\displaystyle {6\times10^{-2}}\),
+  ,
+  ,
+  
+},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=3.30722135247185e-05, ymax=0.000188104234714924,
+ymode=log,
+ytick style={color=black},
+ytick={1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000132722096168436
+1 9.52958143898286e-05
+2 7.11312095518224e-05
+3 5.59525251446757e-05
+4 4.94734194944613e-05
+5 4.95356325700413e-05
+6 4.86540520796552e-05
+7 4.88426849187817e-05
+8 4.87789220642298e-05
+9 4.90620986965951e-05
+10 4.87564029754139e-05
+11 4.92705366923474e-05
+12 4.97732726216782e-05
+13 4.83878284285311e-05
+14 4.96224929520395e-05
+15 4.99510824738536e-05
+16 4.90340717078652e-05
+17 4.98722329211887e-05
+18 4.95317617605906e-05
+19 4.88754849357065e-05
+20 4.94462146889418e-05
+21 4.87317229271866e-05
+22 5.05235257151071e-05
+23 5.0024245865643e-05
+24 4.94094638270326e-05
+25 4.71192179247737e-05
+26 4.90080456074793e-05
+27 5.07079239469022e-05
+28 4.66571473225486e-05
+29 4.55734552815557e-05
+30 5.06827636854723e-05
+31 4.83968869957607e-05
+32 4.83256881125271e-05
+33 5.0144979468314e-05
+34 4.99464476888534e-05
+35 4.56594752904493e-05
+36 4.98443841934204e-05
+37 4.90569836983923e-05
+38 4.89077756355982e-05
+39 4.96737193316221e-05
+40 5.01869035360869e-05
+41 4.93312109028921e-05
+42 4.98860681545921e-05
+43 5.00653732160572e-05
+44 4.65431585325859e-05
+45 4.88188707095105e-05
+46 4.98049921588972e-05
+47 4.92811013828032e-05
+48 5.01822796650231e-05
+49 4.96389002364594e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000147356346133165
+1 0.000100276833109092
+2 7.74033032939769e-05
+3 5.68429713894147e-05
+4 5.10137870151084e-05
+5 4.64688382635359e-05
+6 5.57806524739135e-05
+7 5.1057828386547e-05
+8 5.34521313966252e-05
+9 4.96142783958931e-05
+10 5.42103043699171e-05
+11 4.7545585402986e-05
+12 4.38857059634756e-05
+13 5.58492865820881e-05
+14 4.58449612779077e-05
+15 4.43196513515431e-05
+16 5.35876279172953e-05
+17 4.23945093643852e-05
+18 4.53545399068389e-05
+19 5.25535251654219e-05
+20 4.69236656499561e-05
+21 5.28460477653425e-05
+22 3.69406589015853e-05
+23 4.16071488871239e-05
+24 4.87198121845722e-05
+25 6.8199158704374e-05
+26 5.0729689974105e-05
+27 3.57913850166369e-05
+28 7.26350262993947e-05
+29 8.1043537647929e-05
+30 4.51905725640245e-05
+31 5.70314368815161e-05
+32 5.65893242310267e-05
+33 4.04946149501484e-05
+34 4.23562341893557e-05
+35 8.07066462584771e-05
+36 4.44882716692518e-05
+37 5.08558587171137e-05
+38 5.12504157086369e-05
+39 4.54418550361879e-05
+40 4.19671923737042e-05
+41 4.80627386423294e-05
+42 4.26279038947541e-05
+43 4.37011694884859e-05
+44 7.25988211343065e-05
+45 5.26790354342666e-05
+46 4.27131417382043e-05
+47 4.74478620162699e-05
+48 4.08320811402518e-05
+49 4.46896556240972e-05
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000134415182401426
+1 0.000133859735797159
+2 0.000135096372105181
+3 0.000133315537823364
+4 0.000135558802867308
+5 0.000131604872876778
+6 0.000135166221298277
+7 0.000135371694341302
+8 0.00013555760961026
+9 0.000133147303131409
+10 0.000135355425300077
+11 0.000133816851302981
+12 0.00013382603356149
+13 0.000135015754494816
+14 0.000130949250888079
+15 0.000131850087200291
+16 0.000138567527756095
+17 0.000137042501592077
+18 0.000132412038510665
+19 0.000133806184749119
+20 0.00013315056276042
+21 0.000138728239107877
+22 0.000129598542116582
+23 0.000134296817122959
+24 0.000129316467791796
+25 0.000134426998556592
+26 0.000133511028252542
+27 0.000133338689920492
+28 0.000131890992633998
+29 0.000132342014694586
+30 0.000131475171656348
+31 0.000131742417579517
+32 0.000132709450554103
+33 0.000132882501929998
+34 0.000132975561427884
+35 0.0001328465732513
+36 0.000131782973767258
+37 0.000135892565594986
+38 0.000133842084323987
+39 0.000135688576847315
+40 0.000132072207634337
+41 0.000134420246467926
+42 0.000132650457089767
+43 0.000132311062770896
+44 0.000132282293634489
+45 0.000132839733851142
+46 0.00013292086077854
+47 0.00013482163194567
+48 0.000135752008645795
+49 0.000133861845824867
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.00012677519407589
+1 0.000131578868604265
+2 0.000120126052934211
+3 0.000136456466862001
+4 0.000117726136522833
+5 0.000152216060087085
+6 0.000117487055831589
+7 0.000118944961286616
+8 0.000118362011562567
+9 0.000135828202473931
+10 0.000117471114208456
+11 0.000131132823298685
+12 0.0001324288896285
+13 0.00012603857612703
+14 0.000153000306454487
+15 0.000151011321577244
+16 0.000137982569867745
+17 0.000102457801403943
+18 0.000144789562909864
+19 0.0001346626522718
+20 0.00013855162251275
+21 8.84784312802367e-05
+22 0.000170658269780688
+23 0.000127359642647207
+24 0.000173813430592418
+25 0.000124067300930619
+26 0.000135398469865322
+27 0.000137087437906303
+28 0.00014967487368267
+29 0.000147490325616673
+30 0.000151992935570888
+31 0.000150832158396952
+32 0.000142279764986597
+33 0.000140183008625172
+34 0.000140295756864361
+35 0.000140935080708005
+36 0.000149868414155208
+37 0.000115996052045375
+38 0.000131940701976418
+39 0.000116244016680866
+40 0.000146826612763107
+41 0.000124963815324008
+42 0.000140456089866348
+43 0.000146886712173
+44 0.000148353181430139
+45 0.000140342046506703
+46 0.000139979019877501
+47 0.000122307494166307
+48 0.000115747614472639
+49 0.000133389243273996
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/without_hyper/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.pdf b/models_URWF/without_hyper/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..c519628f135a37768c577e806e5a0086be159db5
Binary files /dev/null and b/models_URWF/without_hyper/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.pdf differ
diff --git a/models_URWF/without_hyper/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.tex b/models_URWF/without_hyper/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..10824c92bbfc0545121e333b5aa65cefbeb208d1
--- /dev/null
+++ b/models_URWF/without_hyper/Scenario = 1, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.tex	
@@ -0,0 +1,261 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.81602095355054e-05, ymax=0.000222783350611656,
+ymode=log,
+ytick style={color=black},
+ytick={1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000146278194733895
+1 0.000104420905699953
+2 7.92681239545345e-05
+3 6.10758288530633e-05
+4 4.92224680783693e-05
+5 4.34550092904828e-05
+6 4.18473209720105e-05
+7 4.27740997110959e-05
+8 4.21492586610839e-05
+9 4.13740053772926e-05
+10 4.12062763643917e-05
+11 3.95096503780223e-05
+12 3.86323808925226e-05
+13 3.8685386243742e-05
+14 3.90951099689119e-05
+15 3.7674093618989e-05
+16 3.72231625078712e-05
+17 3.45841617672704e-05
+18 3.54710755345877e-05
+19 3.34202304657083e-05
+20 3.33290299749933e-05
+21 3.23112872138154e-05
+22 3.10100913338829e-05
+23 3.1028324883664e-05
+24 3.18035745294765e-05
+25 3.09636925521772e-05
+26 2.89666477328865e-05
+27 2.98817540169694e-05
+28 2.92815784632694e-05
+29 2.92987824650481e-05
+30 3.03483375319047e-05
+31 2.90223379124654e-05
+32 2.85742298729019e-05
+33 2.87294860754628e-05
+34 2.71037642960437e-05
+35 2.89524341496872e-05
+36 2.84268226096174e-05
+37 2.79751275229501e-05
+38 2.78087027254514e-05
+39 2.76841983577469e-05
+40 2.76240880339174e-05
+41 2.71164917649003e-05
+42 2.70670807367424e-05
+43 2.69537595158909e-05
+44 2.75629245152231e-05
+45 2.6622759833117e-05
+46 2.61352506640833e-05
+47 2.63559304585215e-05
+48 2.59002445091028e-05
+49 2.54677142947912e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000128779443912208
+1 0.00010038409527624
+2 7.20859316061251e-05
+3 5.74429686821532e-05
+4 4.72210740554146e-05
+5 4.38880924775731e-05
+6 4.74986336485017e-05
+7 3.7310368497856e-05
+8 3.86739084206056e-05
+9 4.2848852899624e-05
+10 3.9968599594431e-05
+11 5.0143735279562e-05
+12 5.285011138767e-05
+13 4.49300969194155e-05
+14 3.25484543282073e-05
+15 3.56887139787432e-05
+16 3.09173701680265e-05
+17 4.11355395044666e-05
+18 2.24964205699507e-05
+19 2.91467531496892e-05
+20 2.45067039941205e-05
+21 2.86695176328067e-05
+22 3.53258474206086e-05
+23 3.19383507303428e-05
+24 2.18671866605291e-05
+25 2.73038804152748e-05
+26 4.2485826270422e-05
+27 3.24111788359005e-05
+28 3.56320124410558e-05
+29 3.28617716149893e-05
+30 2.08107903745258e-05
+31 2.8820493753301e-05
+32 2.97523602057481e-05
+33 2.5161634766846e-05
+34 3.63602011930197e-05
+35 2.03521376533899e-05
+36 2.3903059627628e-05
+37 2.58119016507408e-05
+38 2.59747375821462e-05
+39 2.61434706771979e-05
+40 2.47025800490519e-05
+41 2.80039475910598e-05
+42 2.68369312834693e-05
+43 2.69887150352588e-05
+44 2.07989851332968e-05
+45 2.56072144111386e-05
+46 2.74763297056779e-05
+47 2.34442468354246e-05
+48 2.65273101831554e-05
+49 2.83582612610189e-05
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000143817727803253
+1 0.000144362973514944
+2 0.000146766687976196
+3 0.000145289624924771
+4 0.000144115459988825
+5 0.000146782738738693
+6 0.000144232981256209
+7 0.000148136517964303
+8 0.000142785676871426
+9 0.000145113124744967
+10 0.000147847051266581
+11 0.000145348269143142
+12 0.000147180369822308
+13 0.000145986239658669
+14 0.000143930912599899
+15 0.000144404504681006
+16 0.000147901533637196
+17 0.000139990574098192
+18 0.000145746729685925
+19 0.000142500211950392
+20 0.000142163597047329
+21 0.000146696082083508
+22 0.00014386406110134
+23 0.000143894605571404
+24 0.000145068916026503
+25 0.000146825681440532
+26 0.000145544589031488
+27 0.000146261707413942
+28 0.000144508856465109
+29 0.000147926708450541
+30 0.000140387055580504
+31 0.000140381875098683
+32 0.00014663758338429
+33 0.00014546888996847
+34 0.000138474060804583
+35 0.000139353855047375
+36 0.000143018041853793
+37 0.000144513905979693
+38 0.000145408208481967
+39 0.00014754910080228
+40 0.000146216785651632
+41 0.000146020873216912
+42 0.000142244753078558
+43 0.000146861115354113
+44 0.000145769605296664
+45 0.000140737523906864
+46 0.000145486628753133
+47 0.000147612619912252
+48 0.000148156919749454
+49 0.000141483877087012
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000150364750879817
+1 0.000148715800605714
+2 0.000126212136819959
+3 0.000140571341034956
+4 0.00014891754835844
+5 0.0001248148328159
+6 0.000147257611388341
+7 0.000113281806989107
+8 0.000160188879817724
+9 0.000140890551847406
+10 0.000113709320430644
+11 0.000139861251227558
+12 0.00012114318087697
+13 0.000130904605612159
+14 0.000152134743984789
+15 0.000145973521284759
+16 0.000112183719465975
+17 0.000184424745384604
+18 0.000134632413391955
+19 0.00016261384007521
+20 0.000165981182362884
+21 0.00012655348109547
+22 0.000150970416143537
+23 0.000150248713907786
+24 0.000139949814183637
+25 0.000122067860502284
+26 0.000136034286697395
+27 0.000129538966575637
+28 0.000146950769703835
+29 0.000116940143925603
+30 0.000180271337740123
+31 0.000182227056939155
+32 0.000125736318295822
+33 0.000135748166940175
+34 0.000198789552086964
+35 0.000191611266927794
+36 0.000157448623212986
+37 0.000145551850437187
+38 0.000138119357870892
+39 0.000118853095045779
+40 0.000129383552120999
+41 0.000133493827888742
+42 0.00016541252261959
+43 0.000123607329442166
+44 0.000135195485199802
+45 0.000179384034709074
+46 0.000139412193675525
+47 0.00011720007751137
+48 0.000115313268906903
+49 0.000173394801095128
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/without_hyper/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.pdf b/models_URWF/without_hyper/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..2081c6de42b51e234e69a15ab1455f23a110393f
Binary files /dev/null and b/models_URWF/without_hyper/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.pdf differ
diff --git a/models_URWF/without_hyper/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.tex b/models_URWF/without_hyper/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..e5ab3431e080acdbfc38bb6a75a16aea7997e3bb
--- /dev/null
+++ b/models_URWF/without_hyper/Scenario = 2, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.tex	
@@ -0,0 +1,265 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.03,0.97)},
+  anchor=north west,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=4.86653883990184e-07, ymax=0.0227388191398161,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000163097938639112
+1 6.95640046615154e-05
+2 4.34557296102867e-05
+3 2.79197738564108e-05
+4 2.09615609492175e-05
+5 1.66988993441919e-05
+6 1.28378760564374e-05
+7 1.0652799574018e-05
+8 9.10444123292109e-06
+9 8.07891319709597e-06
+10 7.00679311194108e-06
+11 6.46568105366896e-06
+12 5.54613734493614e-06
+13 5.20814501214772e-06
+14 4.60338424090878e-06
+15 4.14187388741993e-06
+16 3.87155705539044e-06
+17 3.66023209608102e-06
+18 3.43169858751935e-06
+19 3.16300565827987e-06
+20 2.88951900984102e-06
+21 2.65776702690346e-06
+22 2.57361512012722e-06
+23 2.38001484831329e-06
+24 2.30703153647482e-06
+25 2.29981696975301e-06
+26 2.13718476516078e-06
+27 2.06161598725885e-06
+28 1.90302205282933e-06
+29 1.89487604984606e-06
+30 1.86091483556083e-06
+31 1.7752225858203e-06
+32 1.62237029144308e-06
+33 1.58172042574733e-06
+34 1.58960199314606e-06
+35 1.42605972541787e-06
+36 1.43255817874888e-06
+37 1.37571066716191e-06
+38 1.44837963489408e-06
+39 1.24299731396604e-06
+40 1.34513811644865e-06
+41 1.21901894090115e-06
+42 1.17452839276666e-06
+43 1.10200176095532e-06
+44 1.11689780624147e-06
+45 1.03926151950873e-06
+46 1.03192769529414e-06
+47 9.74933186626004e-07
+48 9.63614297688764e-07
+49 9.73476744547952e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000170692641404457
+1 9.19459635042585e-05
+2 4.15414688177407e-05
+3 3.54702751792502e-05
+4 2.12094691960374e-05
+5 1.24855350804864e-05
+6 1.21629809655133e-05
+7 1.19845199151314e-05
+8 1.07882378870272e-05
+9 7.0505338953808e-06
+10 7.56783765609725e-06
+11 4.76404329674551e-06
+12 4.39399946117192e-06
+13 4.18000399804441e-06
+14 4.48639048045152e-06
+15 5.26103758602403e-06
+16 3.69247027265374e-06
+17 3.27280577039346e-06
+18 3.11769122163241e-06
+19 2.96365715257707e-06
+20 3.03114143207495e-06
+21 3.33551702169643e-06
+22 2.28128169510455e-06
+23 2.62626690528123e-06
+24 2.1363327959989e-06
+25 2.00401018446428e-06
+26 2.18199670598551e-06
+27 1.64860466611572e-06
+28 1.9884250832547e-06
+29 2.22067751565191e-06
+30 1.89409990980494e-06
+31 1.32749971726298e-06
+32 1.33019966597203e-06
+33 1.56249666360964e-06
+34 1.54365932303335e-06
+35 1.39256223974371e-06
+36 1.44203693253075e-06
+37 1.34115566652326e-06
+38 1.18524599201919e-06
+39 1.10521705209976e-06
+40 1.27091846024996e-06
+41 1.1371939763194e-06
+42 1.26946542877704e-06
+43 1.04059097338904e-06
+44 9.16003955353517e-07
+45 1.04647676835157e-06
+46 9.31057911657263e-07
+47 9.34875686198211e-07
+48 1.23812992569583e-06
+49 7.93363767570554e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000167268663062714
+1 0.000168611761182547
+2 0.000164750032126904
+3 0.000166074707522057
+4 0.000165510311489925
+5 0.000166329540661536
+6 0.000167264486663043
+7 0.000163467208039947
+8 0.000163789329235442
+9 0.000167902631801553
+10 0.000158251743414439
+11 0.000163772841915488
+12 0.000163379823789001
+13 0.000159947972861119
+14 0.000163212345796637
+15 0.000168250291608274
+16 0.000167275851708837
+17 0.00016272951324936
+18 0.000165133300470188
+19 0.000162475116667338
+20 0.000161717063747346
+21 0.000164484881679527
+22 0.000166474826983176
+23 0.000163901393534616
+24 0.00016524524835404
+25 0.000164450189913623
+26 0.000162684242241085
+27 0.000163810182129964
+28 0.0139481220394373
+29 0.00016462522034999
+30 0.000161635733093135
+31 0.000168101963936351
+32 0.000165689591085538
+33 0.000161484422278591
+34 0.000165562189067714
+35 0.000162491676746868
+36 0.000165928257047199
+37 0.000164456811035052
+38 0.000166921367053874
+39 0.000159998307935894
+40 0.000166102094226517
+41 0.000163806194905192
+42 0.000167545396834612
+43 0.000168941318406723
+44 0.000161504111019894
+45 0.000164178913109936
+46 0.000167981517734006
+47 0.000165818899404258
+48 0.000166785175679252
+49 0.000166209385497496
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000137429335154593
+1 0.000138295567012392
+2 0.000158476585056633
+3 0.000149381274241023
+4 0.000154329158249311
+5 0.000145530575537123
+6 0.000140856049256399
+7 0.000164252924150787
+8 0.000166630212333985
+9 0.000129618609207682
+10 0.000218662316910923
+11 0.000165390243637376
+12 0.000169930906849913
+13 0.000206377269933
+14 0.00017179134010803
+15 0.000127295410493389
+16 0.000129273044876754
+17 0.000174764529219829
+18 0.000155563189764507
+19 0.00017893330368679
+20 0.00018444396846462
+21 0.000167917532962747
+22 0.000143270124681294
+23 0.000163351345690899
+24 0.000153900356963277
+25 0.000166609228472225
+26 0.000174030355992727
+27 0.000164638928254135
+28 0.000151140950038098
+29 0.000158716487931088
+30 0.000185446187970228
+31 0.000130001790239476
+32 0.000152179549331777
+33 0.000186295816092752
+34 0.000150395178934559
+35 0.000181550378329121
+36 0.000145733851240948
+37 0.000162864715093747
+38 0.00013712968211621
+39 0.000205252305022441
+40 0.000145977654028684
+41 0.000165515957633033
+42 0.000134605827042833
+43 0.000121332785056438
+44 0.00019154827168677
+45 0.000165487450431101
+46 0.00013320310972631
+47 0.000150331645272672
+48 0.000142030883580446
+49 0.000145056197652593
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/without_hyper/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.pdf b/models_URWF/without_hyper/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..9677723f31d7c4b3fbe8c3e5cd26464c5a129287
Binary files /dev/null and b/models_URWF/without_hyper/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.pdf differ
diff --git a/models_URWF/without_hyper/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.tex b/models_URWF/without_hyper/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..d3022d02cf1a920a4b096ecce64224a96a9a9286
--- /dev/null
+++ b/models_URWF/without_hyper/Scenario = 3, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.55984612605889e-06, ymax=0.000247681245738091,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000158629423822276
+1 4.17500705225393e-05
+2 2.23410734179197e-05
+3 1.49923098433646e-05
+4 1.13186724775005e-05
+5 9.07615412870655e-06
+6 7.79907350079156e-06
+7 7.01064618624514e-06
+8 5.89603132539196e-06
+9 5.5544014685438e-06
+10 4.97701785207028e-06
+11 4.58103113487596e-06
+12 4.33344484918052e-06
+13 4.07163042837055e-06
+14 3.83643191526062e-06
+15 3.59927594217879e-06
+16 3.48308049069601e-06
+17 3.28366763824306e-06
+18 3.24376105709234e-06
+19 3.11671965391724e-06
+20 3.07204231830838e-06
+21 3.01650766232342e-06
+22 2.8517763439595e-06
+23 2.86554063677613e-06
+24 2.74647231890413e-06
+25 2.74263447863632e-06
+26 2.79981736639456e-06
+27 2.61375680565834e-06
+28 2.59432090388145e-06
+29 2.56180942415085e-06
+30 2.47075331571978e-06
+31 2.5146134703391e-06
+32 2.38996767620847e-06
+33 2.38629627347109e-06
+34 2.39670816881699e-06
+35 2.37572703554179e-06
+36 2.50309471994115e-06
+37 2.3985255666048e-06
+38 2.47841694545059e-06
+39 2.41662883126992e-06
+40 2.43350336859294e-06
+41 2.34371736951289e-06
+42 2.33795276471938e-06
+43 2.33626451517921e-06
+44 2.27647865358449e-06
+45 2.32412526202097e-06
+46 2.20256538341346e-06
+47 2.21448135562241e-06
+48 2.2928848011361e-06
+49 2.24423251893313e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 9.87597886705771e-05
+1 3.5224966268288e-05
+2 2.22798680624692e-05
+3 1.54417248268146e-05
+4 1.02357944342657e-05
+5 9.41831694944995e-06
+6 6.21941171630169e-06
+7 5.80472351430217e-06
+8 6.72237501930795e-06
+9 5.53433847017004e-06
+10 4.79677191833616e-06
+11 4.78111951451865e-06
+12 3.96789118894958e-06
+13 3.8617140489805e-06
+14 3.59103978553321e-06
+15 3.64064408131526e-06
+16 3.59160890184285e-06
+17 3.62066725756449e-06
+18 3.25107043863682e-06
+19 2.74062654170848e-06
+20 2.84425550489686e-06
+21 2.60542879004788e-06
+22 2.87777834273584e-06
+23 2.617919108161e-06
+24 3.26798544847406e-06
+25 2.70756140707817e-06
+26 2.23450524572399e-06
+27 2.53932171290217e-06
+28 2.44782427216705e-06
+29 2.15366708289366e-06
+30 3.5666532767209e-06
+31 2.6958002763422e-06
+32 2.78928996522154e-06
+33 2.4274806946778e-06
+34 2.58378622675082e-06
+35 2.64566619989637e-06
+36 2.00250156012771e-06
+37 2.39911287280847e-06
+38 2.14669603337825e-06
+39 2.01651187126117e-06
+40 2.1419243694254e-06
+41 2.43437216340681e-06
+42 2.42601004174503e-06
+43 2.44980583374854e-06
+44 2.15043269236048e-06
+45 2.5189995085384e-06
+46 2.62520006799605e-06
+47 2.1261782876536e-06
+48 1.96389669326891e-06
+49 2.10574557968357e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000153553526615724
+1 0.0001537842763355
+2 0.000147777231177315
+3 0.00015241838991642
+4 0.00015136860019993
+5 0.00015115799033083
+6 0.000153794055222534
+7 0.000149910119944252
+8 0.000148827923112549
+9 0.000153429486090317
+10 0.000149183717439882
+11 0.000151428583194502
+12 0.000154140201630071
+13 0.000154504115926102
+14 0.000155849425937049
+15 0.000152900945977308
+16 0.000150118707097135
+17 0.000154557346832007
+18 0.000150987645611167
+19 0.00015114396228455
+20 0.000149241168401204
+21 0.000151554413605481
+22 0.00015294119657483
+23 0.000149149796925485
+24 0.00015752662147861
+25 0.000154035544255748
+26 0.000152168999193236
+27 0.000151451749843545
+28 0.000152411332237534
+29 0.000153456567204557
+30 0.000156663649249822
+31 0.000149743806105107
+32 0.000156316513312049
+33 0.000154719615238719
+34 0.000150691892486066
+35 0.000153021101141348
+36 0.000153451750520617
+37 0.000153334884089418
+38 0.000151146596181206
+39 0.000157007118104957
+40 0.000154453708091751
+41 0.000153273300384171
+42 0.000157264556037262
+43 0.000151349857333116
+44 0.000154477093019523
+45 0.000153465225594118
+46 0.000152173946844414
+47 0.000149670915561728
+48 0.000155075787915848
+49 0.000153709916048683
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000142935779877007
+1 0.000139173978823237
+2 0.000196723500266671
+3 0.00015302310930565
+4 0.000161568226758391
+5 0.000166518264450133
+6 0.000137492650537752
+7 0.000177166191861033
+8 0.000176630361238495
+9 0.000141880940645933
+10 0.000180077680852264
+11 0.000162175492732786
+12 0.000136325703351758
+13 0.000132341476273723
+14 0.000123682111734524
+15 0.000148397040902637
+16 0.00017129372281488
+17 0.00013302119623404
+18 0.000165837176609784
+19 0.000159636896569282
+20 0.000180231349077076
+21 0.000162036085384898
+22 0.000148200779221952
+23 0.000185301920282654
+24 0.000105486673419364
+25 0.000141921264003031
+26 0.000157471571583301
+27 0.000159628689289093
+28 0.000149803585372865
+29 0.000142626580782235
+30 0.000126621496747248
+31 0.000183925643796101
+32 0.000120122444059234
+33 0.000130652289954014
+34 0.000166988946148194
+35 0.000149514860822819
+36 0.000143318276968785
+37 0.000147275306517258
+38 0.000164102355483919
+39 0.000111702123831492
+40 0.000132550703710876
+41 0.000142650460475124
+42 0.000112421752419323
+43 0.000161090036272071
+44 0.000133249923237599
+45 0.000140913631184958
+46 0.000156887806952
+47 0.000176143701537512
+48 0.000126888087834232
+49 0.000139085881528445
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/without_hyper/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.pdf b/models_URWF/without_hyper/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..22e4e8445f152e286dc58703a7c67bd9696f84cd
Binary files /dev/null and b/models_URWF/without_hyper/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.pdf differ
diff --git a/models_URWF/without_hyper/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.tex b/models_URWF/without_hyper/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..be50fe0ab399203db137beff5022450958a6aa03
--- /dev/null
+++ b/models_URWF/without_hyper/Scenario = 4, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.tex	
@@ -0,0 +1,263 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.33510655990556e-07, ymax=0.000221454230592227,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000119110678497236
+1 3.66446620319039e-05
+2 1.77629917743616e-05
+3 1.19415099106845e-05
+4 9.14171869226266e-06
+5 7.0352730290324e-06
+6 5.64817901249626e-06
+7 4.72462261313922e-06
+8 3.92743004340446e-06
+9 3.50450204678054e-06
+10 3.07970799440227e-06
+11 2.76725950243417e-06
+12 2.6275106392859e-06
+13 2.26941324399377e-06
+14 2.1133414520591e-06
+15 1.88730939498782e-06
+16 1.79045071035944e-06
+17 1.71247768321336e-06
+18 1.56285193497752e-06
+19 1.45354010783194e-06
+20 1.38544032779464e-06
+21 1.27156704365916e-06
+22 1.16367743885348e-06
+23 1.04827813629527e-06
+24 1.21447124001861e-06
+25 1.05589560916997e-06
+26 9.35082709929702e-07
+27 9.04937735413114e-07
+28 8.4294913449412e-07
+29 8.33415299439366e-07
+30 8.2679014212772e-07
+31 7.54069617414643e-07
+32 7.0767163151686e-07
+33 6.91661682594713e-07
+34 6.75471369504521e-07
+35 6.25178131485882e-07
+36 6.06936112035328e-07
+37 5.85125235375017e-07
+38 5.72119461139664e-07
+39 5.61235140139615e-07
+40 5.07119239046006e-07
+41 5.00920407375816e-07
+42 8.84193866568239e-07
+43 4.79913239814778e-07
+44 4.65450710862569e-07
+45 4.69535621050454e-07
+46 4.35870873616295e-07
+47 4.30478280577518e-07
+48 3.92834294871136e-07
+49 3.87007872859613e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.00011835517216241
+1 2.94239616778214e-05
+2 1.78588288690662e-05
+3 1.30369371618144e-05
+4 1.00456127256621e-05
+5 7.25863583284081e-06
+6 5.73770012124442e-06
+7 4.78903893963434e-06
+8 5.3246581046551e-06
+9 3.79064999833645e-06
+10 3.06249035020301e-06
+11 2.90575530925707e-06
+12 2.68139638137654e-06
+13 1.96956534637138e-06
+14 1.88275339496613e-06
+15 2.19661774281121e-06
+16 1.79826713520015e-06
+17 1.4568524875358e-06
+18 1.40323015784816e-06
+19 1.54136819219275e-06
+20 1.15701266167889e-06
+21 1.21596463031892e-06
+22 1.34871140744508e-06
+23 1.56057183176017e-06
+24 1.1893879445779e-06
+25 1.04965113223443e-06
+26 1.07065557131136e-06
+27 1.15161412850284e-06
+28 1.23654535855167e-06
+29 9.09538812265964e-07
+30 7.17409648132161e-07
+31 9.34473348479514e-07
+32 7.23355014997651e-07
+33 6.52248786536802e-07
+34 5.39273003141716e-07
+35 6.15782823842892e-07
+36 7.42191218705557e-07
+37 4.84830366076494e-07
+38 4.49736944574397e-07
+39 4.06152423693129e-07
+40 5.56371048787696e-07
+41 4.5693556671722e-07
+42 4.90936429287103e-07
+43 5.4913465419304e-07
+44 4.53623528073877e-07
+45 4.61155707398575e-07
+46 3.98803734924513e-07
+47 3.81665216764304e-07
+48 3.18877482641255e-07
+49 3.88750692081885e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000121821271022782
+1 0.000118786163511686
+2 0.000121117249364033
+3 0.000116916286060587
+4 0.000119748343422543
+5 0.000122004646982532
+6 0.000118965377623681
+7 0.000117821851745248
+8 0.000119930613436736
+9 0.000115926952275913
+10 0.000116842471470591
+11 0.000119264717795886
+12 0.000119227319373749
+13 0.000116418617835734
+14 0.000116268653073348
+15 0.000118152944196481
+16 0.00011861881648656
+17 0.000116357769002207
+18 0.00011766472744057
+19 0.000118461459351238
+20 0.000118882810056675
+21 0.000118203533929773
+22 0.000116807641461492
+23 0.000117445903015323
+24 0.000117745250463486
+25 0.000120490200060885
+26 0.000120022261398844
+27 0.000117423332994804
+28 0.000118374497105833
+29 0.000118564435979351
+30 0.000118055919301696
+31 0.000119002019346226
+32 0.00011823955719592
+33 0.000113942514872178
+34 0.000118257907161023
+35 0.00011569067282835
+36 0.0001189872782561
+37 0.000120693657663651
+38 0.000118456307973247
+39 0.000119453776278533
+40 0.000117906849482097
+41 0.000118281546747312
+42 0.000117204755952116
+43 0.000119701318908483
+44 0.000116234936285764
+45 0.000121639255667105
+46 0.000118501353426836
+47 0.000117697200039402
+48 0.000117044612125028
+49 0.000118546777230222
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 8.94988697837107e-05
+1 0.000117215560749173
+2 9.54625502345152e-05
+3 0.000135665308334865
+4 0.000109265492937993
+5 8.90656738192774e-05
+6 0.00011553819058463
+7 0.000125691731227562
+8 0.000108503714727703
+9 0.000141213327879086
+10 0.000133093009935692
+11 0.000112687819637358
+12 0.000121152006613556
+13 0.000137145310873166
+14 0.000138392802909948
+15 0.000124624843010679
+16 0.000119010474008974
+17 0.000138825504109263
+18 0.000124459256767295
+19 0.000116323259135243
+20 0.000117673094791826
+21 0.000122827914310619
+22 0.000134805915877223
+23 0.000133034307509661
+24 0.000125141465105116
+25 0.000100915800430812
+26 0.000104666156403255
+27 0.000129874431877397
+28 0.000119255695608445
+29 0.000117647301522084
+30 0.000122925484902225
+31 0.0001129619195126
+32 0.000122985773487017
+33 0.000162168624228798
+34 0.000122765937703662
+35 0.000144833509693854
+36 0.000112565423478372
+37 0.000100688113889191
+38 0.000118868752906565
+39 0.000110469525679946
+40 0.00012610036355909
+41 0.000122617464512587
+42 0.000132143803057261
+43 0.000108827247458976
+44 0.000142696153488941
+45 9.50354224187322e-05
+46 0.000119124881166499
+47 0.000127313265693374
+48 0.000132477522129193
+49 0.000118570867925882
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/without_hyper/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.pdf b/models_URWF/without_hyper/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..85018b93b46d5788673bcedefb612949309918a0
Binary files /dev/null and b/models_URWF/without_hyper/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.pdf differ
diff --git a/models_URWF/without_hyper/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.tex b/models_URWF/without_hyper/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..9b68a73599c5672172ddcce576f10c5ea1d556a2
--- /dev/null
+++ b/models_URWF/without_hyper/Scenario = 5, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.30004957183654e-06, ymax=0.000247303366693065,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000140808770083822
+1 2.77877024927875e-05
+2 1.20650438475423e-05
+3 8.60371164890239e-06
+4 6.67991025693482e-06
+5 5.42634415978682e-06
+6 4.78406172987889e-06
+7 4.16472585129668e-06
+8 3.80176584258152e-06
+9 3.53676637132594e-06
+10 3.38710992764391e-06
+11 3.06654351334146e-06
+12 2.92217282549245e-06
+13 2.88355204247637e-06
+14 2.82838118437212e-06
+15 2.60954288933135e-06
+16 2.55327290688001e-06
+17 2.47778302764345e-06
+18 2.49293429988029e-06
+19 2.37284029935836e-06
+20 2.46894796873676e-06
+21 2.42158648688928e-06
+22 2.4035755359364e-06
+23 2.28525459533557e-06
+24 2.26031443162356e-06
+25 2.22407220462628e-06
+26 2.37349354392791e-06
+27 2.18677610064333e-06
+28 2.15019440474862e-06
+29 2.08874439522333e-06
+30 2.09293762054585e-06
+31 2.09529321182345e-06
+32 2.09285894925415e-06
+33 2.06235563382506e-06
+34 2.09541235562938e-06
+35 1.99298551706306e-06
+36 2.04654361368739e-06
+37 2.00757085622172e-06
+38 2.0461657186388e-06
+39 1.97414806279994e-06
+40 1.96775522454118e-06
+41 1.90975492841972e-06
+42 2.10623920793296e-06
+43 2.06045660888776e-06
+44 1.98512111637683e-06
+45 2.02815704142267e-06
+46 1.94528092833934e-06
+47 1.95024335880589e-06
+48 1.87281955277285e-06
+49 2.08697565540206e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000151866624946706
+1 2.49946006078972e-05
+2 1.30948674268438e-05
+3 8.34122874948662e-06
+4 7.38843755243579e-06
+5 5.93867616771604e-06
+6 4.52684344054433e-06
+7 4.03162584916572e-06
+8 3.21297193295322e-06
+9 3.98407746615703e-06
+10 3.38162840307632e-06
+11 3.47228137798083e-06
+12 3.18590946335462e-06
+13 3.13101372739766e-06
+14 2.51418100560841e-06
+15 2.93958305519482e-06
+16 2.4015394046728e-06
+17 2.45178125624079e-06
+18 2.12747499972465e-06
+19 2.4323815068783e-06
+20 2.11953897633066e-06
+21 2.47359025706828e-06
+22 2.23747611016734e-06
+23 2.29793567996239e-06
+24 1.95504912881006e-06
+25 2.2525521217176e-06
+26 2.05718492907181e-06
+27 2.36007554121898e-06
+28 2.01702164304152e-06
+29 2.32281195167161e-06
+30 2.43284330281313e-06
+31 1.97447093341907e-06
+32 1.80655024450971e-06
+33 2.23063898374676e-06
+34 2.27990972234693e-06
+35 1.92346169569646e-06
+36 2.03991839953233e-06
+37 2.03988429348101e-06
+38 2.03888680516684e-06
+39 2.34781578001275e-06
+40 2.10382722798386e-06
+41 2.0672875962191e-06
+42 1.77587082816899e-06
+43 1.88824776614638e-06
+44 1.75387231138302e-06
+45 1.85520821105456e-06
+46 1.65030076004768e-06
+47 2.28701583182556e-06
+48 1.67188488831016e-06
+49 1.97793519873812e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00014060313696973
+1 0.000137656141305342
+2 0.000143065073643811
+3 0.000140192554681562
+4 0.000142427845275961
+5 0.000142034099553712
+6 0.000135852737003006
+7 0.00014235639537219
+8 0.000143847602885216
+9 0.00013983370445203
+10 0.000142199758556671
+11 0.000145203914144076
+12 0.00014099404506851
+13 0.000143194061820395
+14 0.000140986638143659
+15 0.000141734140925109
+16 0.000139620620757341
+17 0.000145604368299246
+18 0.000139923329697922
+19 0.000143899538670667
+20 0.000142461081850342
+21 0.000142865843372419
+22 0.000144075427670032
+23 0.000141339376568794
+24 0.000140182426548563
+25 0.000142293807584792
+26 0.000145876678288914
+27 0.000139112686156295
+28 0.000143021941767074
+29 0.000143526252941228
+30 0.000143316239700653
+31 0.000139636162202805
+32 0.000139017691253684
+33 0.000143602766911499
+34 0.000144505393109284
+35 0.000142094271723181
+36 0.000137869006721303
+37 0.000143355937325396
+38 0.000143186174682342
+39 0.000143536293762736
+40 0.000142327175126411
+41 0.000143050288897939
+42 0.00014157967234496
+43 0.000139441690407693
+44 0.000145230937050655
+45 0.000145648096804507
+46 0.000142689401400276
+47 0.000139756724820472
+48 0.000143463927088305
+49 0.00014049097080715
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000154029330587946
+1 0.000180180853931233
+2 0.000130726533825509
+3 0.000156632129801437
+4 0.000139883763040416
+5 0.000141912765684538
+6 0.000194816995644942
+7 0.000135004651383497
+8 0.000127355684526265
+9 0.000159308925503865
+10 0.000140322328661568
+11 0.000114190057502128
+12 0.000147035854752176
+13 0.00013088078412693
+14 0.000151125670527108
+15 0.000142780350870453
+16 0.000163049713592045
+17 0.000110557492007501
+18 0.00015931720554363
+19 0.000123746853205375
+20 0.00013601804676
+21 0.000147675746120512
+22 0.000120715449156705
+23 0.000146728663821705
+24 0.000159101778990589
+25 0.000143717334140092
+26 0.00010641503467923
+27 0.000168388287420385
+28 0.000134773305035196
+29 0.000128033978398889
+30 0.000132704633870162
+31 0.00016315164975822
+32 0.000169641323736869
+33 0.000126891216496006
+34 0.000116580682515632
+35 0.000141325872391462
+36 0.000178295289515518
+37 0.000129308318719268
+38 0.00012899779540021
+39 0.000127264560433105
+40 0.000140162432217039
+41 0.000135849215439521
+42 0.000146909078466706
+43 0.000165729303262196
+44 0.00011155797255924
+45 0.000109411274024751
+46 0.000137256662128493
+47 0.00016158472863026
+48 0.000128560437588021
+49 0.000157007976667956
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/without_hyper/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.pdf b/models_URWF/without_hyper/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..3062b6aaf08f431c4c5fdcb06509e8cc2bd74e2a
Binary files /dev/null and b/models_URWF/without_hyper/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.pdf differ
diff --git a/models_URWF/without_hyper/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.tex b/models_URWF/without_hyper/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..05af6b66f3d4a6e18cca1ab6f6f7132fc21acc55
--- /dev/null
+++ b/models_URWF/without_hyper/Scenario = 6, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.tex	
@@ -0,0 +1,263 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=5.47956319196448e-07, ymax=0.000254691381547786,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000139422554639168
+1 5.25441355421208e-05
+2 2.709246109589e-05
+3 1.86883116839454e-05
+4 1.4641495909018e-05
+5 1.30382604766055e-05
+6 1.10479877548642e-05
+7 9.03117143025156e-06
+8 8.08377171779284e-06
+9 7.014934453764e-06
+10 6.64117942505982e-06
+11 5.66791140954592e-06
+12 4.99323004987673e-06
+13 4.53997472504852e-06
+14 3.99270811612951e-06
+15 3.92411902794265e-06
+16 3.53491191162902e-06
+17 3.39455823450407e-06
+18 3.1713191219751e-06
+19 2.97965834761271e-06
+20 2.58465047409118e-06
+21 2.5051617740246e-06
+22 2.36605910686194e-06
+23 2.27213763537293e-06
+24 2.14105693885358e-06
+25 2.07581410904822e-06
+26 1.91861840903584e-06
+27 1.84637030997692e-06
+28 1.71315411989781e-06
+29 1.73497676314582e-06
+30 1.54966937770951e-06
+31 1.59103592523024e-06
+32 1.54397719143162e-06
+33 1.46790443977807e-06
+34 1.45789761063497e-06
+35 1.33272737912193e-06
+36 1.32122954710212e-06
+37 1.2942375633429e-06
+38 1.26361408092635e-06
+39 1.21193875202152e-06
+40 1.12860448098218e-06
+41 1.17169065561029e-06
+42 1.0251166031594e-06
+43 9.8811494808615e-07
+44 1.02411047464557e-06
+45 1.00423574167507e-06
+46 9.08802235244366e-07
+47 9.08564288693015e-07
+48 9.21839614420605e-07
+49 8.81109031070082e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000151191532495432
+1 5.27330812474247e-05
+2 3.43467727361713e-05
+3 2.34825092775282e-05
+4 1.57967224367894e-05
+5 1.25444585137302e-05
+6 1.04895107142511e-05
+7 9.99405347101856e-06
+8 5.77313267058344e-06
+9 7.56428335080273e-06
+10 6.20858509137179e-06
+11 4.59601551483502e-06
+12 4.72754800284747e-06
+13 4.19237494497793e-06
+14 5.41578947377275e-06
+15 4.31831585956388e-06
+16 3.34092874254566e-06
+17 3.64814991371532e-06
+18 3.93835989598301e-06
+19 3.09812821797095e-06
+20 2.76999890047591e-06
+21 3.05379262499628e-06
+22 2.63992797044921e-06
+23 2.13079511013348e-06
+24 2.2038937004254e-06
+25 2.0483175831032e-06
+26 2.10558482649503e-06
+27 1.93491723621264e-06
+28 1.86590375506057e-06
+29 1.18982120511646e-06
+30 1.65560504683526e-06
+31 1.49886989220249e-06
+32 1.40136648951739e-06
+33 1.38726443310588e-06
+34 1.5903664234429e-06
+35 1.600476934982e-06
+36 1.33635251131636e-06
+37 1.19272579013341e-06
+38 1.15448892756831e-06
+39 1.07466962617764e-06
+40 1.16404714844975e-06
+41 1.11877704966901e-06
+42 8.96443566489324e-07
+43 1.03346019386663e-06
+44 7.74358625221794e-07
+45 1.00108979950164e-06
+46 7.24411620467436e-07
+47 9.72342604654841e-07
+48 7.2755648261591e-07
+49 1.16638921099366e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000137548107886687
+1 0.000140638832817785
+2 0.000142808101372793
+3 0.000138855073601007
+4 0.00014315867156256
+5 0.000142147371661849
+6 0.000140535441460088
+7 0.000140832271426916
+8 0.000141012889798731
+9 0.000143917815876193
+10 0.000142426055390388
+11 0.000138538351166062
+12 0.000141437121783383
+13 0.000139053459861316
+14 0.000139040130306967
+15 0.000139728872454725
+16 0.000140273332362995
+17 0.00013496758765541
+18 0.000139760843012482
+19 0.000144059871672653
+20 0.000137425566208549
+21 0.000137912458740175
+22 0.000142265387694351
+23 0.000140677715535276
+24 0.000141052427352406
+25 0.000139516676426865
+26 0.00014278301387094
+27 0.000138091811095364
+28 0.000140507239848375
+29 0.000136786737130024
+30 0.00014075510262046
+31 0.000142040196806192
+32 0.000139078518259339
+33 0.000139772397233173
+34 0.000142270961077884
+35 0.000142297969432548
+36 0.000140746793476865
+37 0.000141959739266895
+38 0.000139722877065651
+39 0.000142463482916355
+40 0.000140872885822318
+41 0.00014001976524014
+42 0.000137886876473203
+43 0.000139517200295813
+44 0.00014015486522112
+45 0.000140228410600685
+46 0.000137308554258198
+47 0.00014238734729588
+48 0.000138002840685658
+49 0.000142704491736367
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000168594866408966
+1 0.000141678872751072
+2 0.000126560087664984
+3 0.000157214250066318
+4 0.000115438073407859
+5 0.000150999199831858
+6 0.000142947799758986
+7 0.000141304670250975
+8 0.000138527931994759
+9 0.000112627378257457
+10 0.000125072823720984
+11 0.000166890022228472
+12 0.000136944450787269
+13 0.000156815774971619
+14 0.000157319751451723
+15 0.000150483218021691
+16 0.000146467093145475
+17 0.00019265255832579
+18 0.000150442734593526
+19 0.000111669789475854
+20 0.000169916238519363
+21 0.000167860955116339
+22 0.000127240127767436
+23 0.000138955030706711
+24 0.000139115072670393
+25 0.000151672968058847
+26 0.000121595592645463
+27 0.000166218713275157
+28 0.000143689205287956
+29 0.000177146794158034
+30 0.000138729737955146
+31 0.000134799440274946
+32 0.00015673965390306
+33 0.000150496722199023
+34 0.000127258579595946
+35 0.000126562154036947
+36 0.000140600168379024
+37 0.000129729727632366
+38 0.000147858329000883
+39 0.000126872822875157
+40 0.000140709613333456
+41 0.000150389416376129
+42 0.000166537720360793
+43 0.000153616216266528
+44 0.000146757418406196
+45 0.000145377474837005
+46 0.000173495995113626
+47 0.000125866179587319
+48 0.000159938761498779
+49 0.000122543351608329
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_URWF/without_hyper/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.pdf b/models_URWF/without_hyper/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..964768fc1c53c36a6d647dcd6235fdc2b29e82bb
Binary files /dev/null and b/models_URWF/without_hyper/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.pdf differ
diff --git a/models_URWF/without_hyper/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.tex b/models_URWF/without_hyper/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..cd4a5d97ea268cdbdedfb7cff19dfa4c78226355
--- /dev/null
+++ b/models_URWF/without_hyper/Scenario = 7, Layers = 30, Epochs = 50, LR = 0.001, Learning_Process.tex	
@@ -0,0 +1,263 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.98989848731464e-07, ymax=0.00025862395496495,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000148013044963591
+1 3.56593227479607e-05
+2 1.7092230336857e-05
+3 1.12235911728931e-05
+4 8.58035764395026e-06
+5 6.45710269964184e-06
+6 5.44462363905041e-06
+7 4.88857358504902e-06
+8 4.2726201172627e-06
+9 3.58169586434087e-06
+10 3.09524739350309e-06
+11 2.73389900939947e-06
+12 2.65521657638601e-06
+13 2.31281637752545e-06
+14 2.27968439503456e-06
+15 2.05286619348044e-06
+16 1.78653704097087e-06
+17 1.69934662608284e-06
+18 1.55517341227096e-06
+19 1.49384698033828e-06
+20 1.3938711163064e-06
+21 1.30992964386678e-06
+22 1.19467654258187e-06
+23 1.11279143766296e-06
+24 1.00586737517006e-06
+25 1.02330841400544e-06
+26 9.0733004753929e-07
+27 8.96316521448171e-07
+28 8.29465079732472e-07
+29 7.87274132107996e-07
+30 7.43528971725027e-07
+31 7.48820809803874e-07
+32 6.85715860981873e-07
+33 6.74960119795287e-07
+34 6.62006982565799e-07
+35 5.64021263471659e-07
+36 6.21000424416707e-07
+37 5.4747005151512e-07
+38 5.2761015467695e-07
+39 4.81172207855707e-07
+40 4.98232964218914e-07
+41 4.6397821051869e-07
+42 4.58541705938842e-07
+43 4.38037005778824e-07
+44 4.26196010039348e-07
+45 4.2150298895649e-07
+46 3.84383071150296e-07
+47 3.72081899513432e-07
+48 3.67385837307665e-07
+49 3.63334208941524e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000145961690577678
+1 3.6507273762254e-05
+2 1.83924421435222e-05
+3 8.87434453034075e-06
+4 6.65402694721706e-06
+5 6.85723716742359e-06
+6 7.01677663528244e-06
+7 4.92142953589791e-06
+8 3.10200198327948e-06
+9 3.96965651816572e-06
+10 2.95227073365822e-06
+11 2.71325984613213e-06
+12 2.15284285332018e-06
+13 3.03261163026036e-06
+14 1.43896522786235e-06
+15 1.70873647675762e-06
+16 1.90969149116427e-06
+17 1.54746635416814e-06
+18 1.43470697366865e-06
+19 1.4017372222952e-06
+20 1.54278404806973e-06
+21 1.13814337510121e-06
+22 1.32910520278529e-06
+23 1.26849226944614e-06
+24 1.25276187645795e-06
+25 9.00273789739003e-07
+26 8.95020548341563e-07
+27 7.7743254678353e-07
+28 8.83171367149771e-07
+29 8.45460078835458e-07
+30 9.13137625957461e-07
+31 5.87568308674236e-07
+32 6.92485286890587e-07
+33 6.28680254521896e-07
+34 5.71698194562487e-07
+35 8.63643435877748e-07
+36 4.98133147175395e-07
+37 5.44820807135693e-07
+38 5.29007309069129e-07
+39 4.93094887588086e-07
+40 5.04310378346418e-07
+41 4.50991336720108e-07
+42 5.72123838082916e-07
+43 4.63405569917086e-07
+44 3.56029943304748e-07
+45 4.6835725697747e-07
+46 2.75656987014372e-07
+47 3.33770287852531e-07
+48 3.71070939308993e-07
+49 2.83416682123061e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000151286862092093
+1 0.000148271938087419
+2 0.000145962316310033
+3 0.000148140708915889
+4 0.000146270336699672
+5 0.000149768020492047
+6 0.000145538549986668
+7 0.000149274768773466
+8 0.000146568301715888
+9 0.000144949066452682
+10 0.00014968030154705
+11 0.000146915088407695
+12 0.000148198654642329
+13 0.000148643390275538
+14 0.000147157494211569
+15 0.000147706436109729
+16 0.00014777151227463
+17 0.00014694788842462
+18 0.000149669518577866
+19 0.000148425155202858
+20 0.000146184596815147
+21 0.000148376799188554
+22 0.000146324280649424
+23 0.00014655634004157
+24 0.000149089726619422
+25 0.000149657396832481
+26 0.000144709527376108
+27 0.000148061357322149
+28 0.000147991930134594
+29 0.000145307276397943
+30 0.000143848243169487
+31 0.000145373909617774
+32 0.000152415770571679
+33 0.000147752347402275
+34 0.00014776736497879
+35 0.000147837854456156
+36 0.000145569443702698
+37 0.000145633559441194
+38 0.000148161940160207
+39 0.000149608822539449
+40 0.000146714635775425
+41 0.000145101090311073
+42 0.000147954560816288
+43 0.000146047284943052
+44 0.000147063998156227
+45 0.000147197628393769
+46 0.000147608181578107
+47 0.000146761129144579
+48 0.000149398503708653
+49 0.000143366807606071
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000115061491669621
+1 0.000143547338666394
+2 0.000163512173458003
+3 0.000142517077620141
+4 0.000159814182552509
+5 0.00012783041165676
+6 0.000165362667758018
+7 0.000132426110212691
+8 0.000157876085722819
+9 0.000171300649526529
+10 0.000130172455101274
+11 0.000154473222210072
+12 0.000139474926982075
+13 0.000140412186738104
+14 0.000151597065269016
+15 0.00014767273387406
+16 0.000141933254781179
+17 0.000153813511133194
+18 0.000129606123664416
+19 0.000142261982546188
+20 0.000161294257850386
+21 0.00014334442676045
+22 0.000159681003424339
+23 0.000158348615514114
+24 0.000134108049678616
+25 0.000130705229821615
+26 0.000174892600625753
+27 0.000143100725836121
+28 0.000145519719808362
+29 0.000168184196809307
+30 0.000182958712684922
+31 0.000166574260219932
+32 0.000103557540569454
+33 0.000146681413752958
+34 0.000145311874803156
+35 0.00014605671458412
+36 0.000166460915352218
+37 0.000165033299708739
+38 0.000144075253047049
+39 0.000130360465846024
+40 0.000155840680235997
+41 0.000171156978467479
+42 0.000143605619086884
+43 0.000162815587827936
+44 0.000158585360622965
+45 0.000150236810441129
+46 0.000148762876051478
+47 0.000153807501192205
+48 0.000131454333313741
+49 0.000186694131116383
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_UWF/Scenario = 1, Layers = 160, Epochs = 50, LR = 0.004693352848469013, Learning_Process.pdf b/models_UWF/Scenario = 1, Layers = 160, Epochs = 50, LR = 0.004693352848469013, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..f55d24a20f8544bba27ea63845ff6cd19758eec6
Binary files /dev/null and b/models_UWF/Scenario = 1, Layers = 160, Epochs = 50, LR = 0.004693352848469013, Learning_Process.pdf differ
diff --git a/models_UWF/Scenario = 1, Layers = 160, Epochs = 50, LR = 0.004693352848469013, Learning_Process.tex b/models_UWF/Scenario = 1, Layers = 160, Epochs = 50, LR = 0.004693352848469013, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..e447c05420bd6fd914f74b78f7a91dfe5323ae52
--- /dev/null
+++ b/models_UWF/Scenario = 1, Layers = 160, Epochs = 50, LR = 0.004693352848469013, Learning_Process.tex	
@@ -0,0 +1,265 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.03,0.97)},
+  anchor=north west,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.34352351870608e-07, ymax=0.025193205007413,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000119298536446877
+1 3.54086587321945e-05
+2 1.70912062458228e-05
+3 1.19845899462234e-05
+4 8.41307883092668e-06
+5 6.04320212005405e-06
+6 4.67442487206426e-06
+7 3.65378355127177e-06
+8 3.41859936270339e-06
+9 3.61181787411624e-06
+10 2.47046682488872e-06
+11 2.10319421967142e-06
+12 1.94328117686382e-06
+13 1.4690953094032e-06
+14 1.35160723857553e-06
+15 1.23607810564863e-06
+16 1.16131366212358e-06
+17 1.13583826077956e-06
+18 1.01820182862866e-06
+19 9.92973127722507e-07
+20 9.78840034804307e-07
+21 8.17952525267174e-07
+22 7.87290105108696e-07
+23 7.41137853310647e-07
+24 7.47578155824158e-07
+25 7.13512974925834e-07
+26 6.51731852485682e-07
+27 6.67594974856911e-07
+28 6.13519489434111e-07
+29 5.69024450669531e-07
+30 5.43435646704893e-07
+31 5.27649206105707e-07
+32 4.92410606511839e-07
+33 4.76740979138413e-07
+34 5.05453215282614e-07
+35 5.06504136410513e-07
+36 4.59829777810228e-07
+37 4.79056666335964e-07
+38 5.25725681654876e-07
+39 4.81448353184533e-07
+40 5.45621730907442e-07
+41 1.46804836731462e-06
+42 4.28131755825234e-07
+43 6.53174595299788e-07
+44 6.26502583145339e-07
+45 5.79659854338388e-07
+46 1.87329624168342e-05
+47 5.62553282179579e-07
+48 5.41994609193353e-07
+49 5.56788677386066e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000136063492391258
+1 3.61062520823907e-05
+2 2.25343901547603e-05
+3 1.32771210701321e-05
+4 6.55203257338144e-06
+5 6.93422771291807e-06
+6 5.90870558880852e-06
+7 5.00591795571381e-06
+8 4.57005171483615e-06
+9 2.66248162006377e-06
+10 2.66697929873771e-06
+11 2.09740460377361e-06
+12 1.46766308262158e-06
+13 1.74846536538098e-06
+14 1.75466755081288e-06
+15 1.6530102584511e-06
+16 1.39846326874249e-06
+17 1.16839635211363e-06
+18 9.35019329517672e-07
+19 1.09702966710756e-06
+20 8.32430032460252e-07
+21 9.57504539655929e-07
+22 7.31483680738165e-07
+23 7.18526678156195e-07
+24 6.13267729931977e-07
+25 9.51206118315895e-07
+26 7.1157063530336e-07
+27 3.96798441215651e-07
+28 1.02504952792515e-06
+29 6.54247173770273e-07
+30 5.05006653384044e-07
+31 5.53436905192939e-07
+32 5.79298898628622e-07
+33 6.5621031808405e-07
+34 4.74278721185328e-07
+35 4.51519923672095e-07
+36 6.23293544776971e-07
+37 4.61110374772034e-07
+38 4.65126646531644e-07
+39 5.53613745069015e-07
+40 5.27530630733963e-07
+41 5.11309679041005e-07
+42 4.99669397413527e-07
+43 1.10071050585248e-06
+44 5.65493280646479e-07
+45 6.6139870114057e-07
+46 6.97550603945274e-07
+47 6.00025202857069e-07
+48 8.02927388576791e-07
+49 7.90098056313582e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000228915334446356
+1 0.000133029578137212
+2 0.00018811623158399
+3 0.00012447006884031
+4 0.000119691052532289
+5 0.000126814207760617
+6 0.000126674261991866
+7 0.000122940371511504
+8 0.000122382814879529
+9 0.000125401449622586
+10 0.000119640957564116
+11 0.000120278433314525
+12 0.000127492967294529
+13 0.000123096280731261
+14 0.000122270503197797
+15 0.000123817851999775
+16 0.000120985358080361
+17 0.000120431774121244
+18 0.000120832926768344
+19 0.000122898112749681
+20 0.00012403869186528
+21 0.000126082712085918
+22 0.000120814249385148
+23 0.000124505764688365
+24 0.000121691889944486
+25 0.000123382997117005
+26 0.000126578102936037
+27 0.000119280324724969
+28 0.000122900222777389
+29 0.000119451971841045
+30 0.000121243443572894
+31 0.000127461098600179
+32 0.000120951415738091
+33 0.0148793095722795
+34 0.000128101193695329
+35 0.000117717187094968
+36 0.00012131042603869
+37 0.000121295022836421
+38 0.000122685189126059
+39 0.000115998504043091
+40 0.000128241255879402
+41 0.000125431412016042
+42 0.000150868916534819
+43 0.000125895574456081
+44 0.000126159895444289
+45 0.00011759452172555
+46 0.000126971674035303
+47 0.00012645436800085
+48 0.000126922212075442
+49 0.000124224854516797
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000114190079330001
+1 0.00011466903379187
+2 0.000146382881212048
+3 0.0001314294495387
+4 0.000132266242871992
+5 0.000135314840008505
+6 0.000109676075226162
+7 0.000125351551105268
+8 0.000143047640449367
+9 0.000122471072245389
+10 0.000145089827128686
+11 0.000134879461256787
+12 0.000132551605929621
+13 0.000113628411781974
+14 0.000146436927025206
+15 0.000125733771710657
+16 0.000128573155961931
+17 0.000157938411575742
+18 0.000124480458907783
+19 0.000136576156364754
+20 0.000154186564031988
+21 0.00011712151899701
+22 0.000146433871123008
+23 0.000115939845272806
+24 0.000161639007274061
+25 0.000112968024041038
+26 0.000126078448374756
+27 0.000156971756950952
+28 0.000121101620607078
+29 0.000135305686853826
+30 0.000124700949527323
+31 0.000105241757410113
+32 0.000136420174385421
+33 0.000130101310787722
+34 0.000131924782181159
+35 0.000140076910611242
+36 0.00015068678476382
+37 0.000122660800116137
+38 0.000110788292658981
+39 0.000147060229210183
+40 0.000136793736601248
+41 0.000121151380881201
+42 0.000143595330882818
+43 9.75309667410329e-05
+44 0.000136599221150391
+45 0.000139246345497668
+46 0.000175762732396834
+47 0.000125661128549837
+48 0.000140896459924988
+49 0.000126329701743089
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_UWF/Scenario = 1, Layers = 160, Epochs = 50, LR = 0.004845980015679071, Learning_Process.pdf b/models_UWF/Scenario = 1, Layers = 160, Epochs = 50, LR = 0.004845980015679071, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..368ca9deed94d367aad94e2e8235f4e26a85b39b
Binary files /dev/null and b/models_UWF/Scenario = 1, Layers = 160, Epochs = 50, LR = 0.004845980015679071, Learning_Process.pdf differ
diff --git a/models_UWF/Scenario = 1, Layers = 160, Epochs = 50, LR = 0.004845980015679071, Learning_Process.tex b/models_UWF/Scenario = 1, Layers = 160, Epochs = 50, LR = 0.004845980015679071, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..b62f3018289586957d336467022005dfcde3d66a
--- /dev/null
+++ b/models_UWF/Scenario = 1, Layers = 160, Epochs = 50, LR = 0.004845980015679071, Learning_Process.tex	
@@ -0,0 +1,258 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.42476653323137e-07, ymax=0.02603237527335,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000116065435577184
+1 3.285027196398e-05
+2 1.60941544891102e-05
+3 9.99291478365194e-06
+4 6.61680860503111e-06
+5 4.94485948365764e-06
+6 3.76271918867133e-06
+7 3.18394563691982e-06
+8 2.68639541900484e-06
+9 2.14298347600561e-06
+10 2.05648052542529e-06
+11 1.66676989010739e-06
+12 1.74897434135346e-06
+13 1.44285843362013e-06
+14 1.38968130158901e-06
+15 1.29270279103366e-06
+16 1.00911313438701e-06
+17 9.6676603789092e-07
+18 9.59573299041949e-07
+19 8.56396411563765e-07
+20 7.89465332218242e-07
+21 7.3211964490838e-07
+22 6.83666428358265e-07
+23 6.44560884666134e-07
+24 6.10794359090505e-07
+25 5.90717888826475e-07
+26 5.90064587413508e-07
+27 5.98916358285351e-07
+28 5.91514151437877e-07
+29 5.74738123759744e-07
+30 5.50692277556664e-07
+31 2.09459449251881e-06
+32 6.64114566006901e-07
+33 9.68369022302795e-07
+34 6.38212952708272e-07
+35 8.02690294676722e-07
+36 5.83100757012289e-07
+37 5.70390284337918e-07
+38 5.68371774534171e-07
+39 5.48179002635152e-07
+40 5.3687870149588e-07
+41 5.10612835569191e-07
+42 5.51361040379561e-07
+43 5.29580006514152e-07
+44 5.27194856658753e-07
+45 5.58085218926863e-07
+46 5.17665057486738e-07
+47 5.30114334651444e-07
+48 5.43397163710324e-07
+49 5.20470791798289e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000122483106679283
+1 2.75501424766844e-05
+2 1.45932808663929e-05
+3 1.12058833110495e-05
+4 6.87957162881503e-06
+5 4.59272087027784e-06
+6 5.10751942783827e-06
+7 3.45077796737314e-06
+8 3.23543986269215e-06
+9 3.22835512633901e-06
+10 2.11603037314489e-06
+11 2.62136973105953e-06
+12 1.43616375680722e-06
+13 1.11296083105117e-06
+14 1.0274827673129e-06
+15 7.26851112631266e-07
+16 1.59612216066307e-06
+17 8.95141681667155e-07
+18 5.70543306821492e-07
+19 7.15407622919884e-07
+20 7.85226518473792e-07
+21 6.08442348948302e-07
+22 5.73915826862503e-07
+23 7.55990697598463e-07
+24 8.95652135568525e-07
+25 7.67276844726439e-07
+26 7.13427766640962e-07
+27 6.13175984653935e-07
+28 5.77504408738605e-07
+29 5.5351318906105e-07
+30 9.88621309261362e-07
+31 5.39494067197666e-07
+32 9.13289113668725e-07
+33 8.38647054024477e-07
+34 8.96073231615446e-07
+35 8.07504363820044e-07
+36 7.94507286627777e-07
+37 6.91509683292679e-07
+38 4.73042746307328e-07
+39 6.34503692253929e-07
+40 7.31603790882218e-07
+41 6.12202200045431e-07
+42 5.16781199166871e-07
+43 6.04930903591594e-07
+44 7.17274531325529e-07
+45 4.10529764849343e-07
+46 5.6354468824793e-07
+47 5.25077496149606e-07
+48 4.64493268736987e-07
+49 5.01951546993951e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00011171124788234
+1 0.000118088806630112
+2 0.000114761649456341
+3 0.0117625268176198
+4 0.000118836403999012
+5 0.000114638103696052
+6 0.000109699452877976
+7 0.000113906338810921
+8 0.000118787385872565
+9 0.000127071078168228
+10 0.00011717921734089
+11 0.000119369811727665
+12 0.000114869435492437
+13 0.000114008209493477
+14 0.000114620001113508
+15 0.000118241390737239
+16 0.000113744084956124
+17 0.000113187132228632
+18 0.000114615271741059
+19 0.000115000628284179
+20 0.000114114554889966
+21 0.000115615555841941
+22 0.015375847928226
+23 0.000111539797217119
+24 0.000121106786536984
+25 0.00014409793948289
+26 0.000118413838208653
+27 0.000121297598525416
+28 0.000112121510028373
+29 0.000116614181024488
+30 0.000114825379569083
+31 0.000117344898171723
+32 0.000112466907012276
+33 0.000119302996608894
+34 0.00011788271513069
+35 0.000115874463517684
+36 0.000114344402390998
+37 0.000118635536637157
+38 0.000111404144263361
+39 0.000133167195599526
+40 0.000117465191578958
+41 0.00013079032942187
+42 0.000114214926725253
+43 0.000117099465569481
+44 0.000114031325210817
+45 0.000113666435936466
+46 0.000118528267194051
+47 0.000114414695417508
+48 0.000114598602522165
+49 0.000112512148916721
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.00012196390889585
+1 0.000139407027745619
+2 0.000124566882732324
+3 0.000132907764054835
+4 0.000132279630634002
+5 0.000109857697680127
+6 0.000159415634698234
+7 0.000122902725706808
+8 0.000114694506919477
+9 0.000103607635537628
+10 0.000112010748125613
+11 0.000104517595900688
+12 0.000140851872856729
+13 0.000130624932353385
+14 0.000129850930534303
+15 0.000132546614622697
+16 0.000152731168782339
+17 0.000116515766421799
+18 0.00012229013373144
+19 0.000138793184305541
+20 0.000178951988345943
+21 0.000116672970762011
+22 0.000136534741614014
+23 0.000138692354084924
+24 0.000147293743793853
+25 0.000102755380794406
+26 0.000129000196466222
+27 0.000140727599500678
+28 0.000136281989398412
+29 0.000127276405692101
+30 0.000105625244032126
+31 0.000105804625491146
+32 0.000117198389489204
+33 0.000108644591819029
+34 0.000105615588836372
+35 0.000139159834361635
+36 0.000113378882815596
+37 0.000122066609037574
+38 0.000155557165271603
+39 0.000122787110740319
+40 8.39206841192208e-05
+41 0.000146083417348564
+42 0.000113812151539605
+43 8.85393019416369e-05
+44 0.000124272613902576
+45 0.000131691893329844
+46 0.000131394437630661
+47 0.00012687174603343
+48 0.000136927686980926
+49 0.000141575685120188
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_UWF/Scenario = 1, Layers = 160, Epochs = 50, LR = 0.00926023238391762, Learning_Process.pdf b/models_UWF/Scenario = 1, Layers = 160, Epochs = 50, LR = 0.00926023238391762, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..e217e28178ed00d7f7d409a7db7c0ce83a568a83
Binary files /dev/null and b/models_UWF/Scenario = 1, Layers = 160, Epochs = 50, LR = 0.00926023238391762, Learning_Process.pdf differ
diff --git a/models_UWF/Scenario = 1, Layers = 160, Epochs = 50, LR = 0.00926023238391762, Learning_Process.tex b/models_UWF/Scenario = 1, Layers = 160, Epochs = 50, LR = 0.00926023238391762, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..7042e352973dddf52bbabad193aef3c0e01f1331
--- /dev/null
+++ b/models_UWF/Scenario = 1, Layers = 160, Epochs = 50, LR = 0.00926023238391762, Learning_Process.tex	
@@ -0,0 +1,258 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.84826729124548e-07, ymax=0.0244252835447542,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000101797159004491
+1 1.19968271974358e-05
+2 5.40449082109262e-06
+3 3.2703619581298e-06
+4 2.25359212890908e-06
+5 1.75795582890714e-06
+6 1.29667125747801e-06
+7 1.15183922844153e-06
+8 9.99800590761879e-07
+9 8.05750858035026e-07
+10 7.13718918632367e-07
+11 6.45679676836153e-07
+12 7.35572314169985e-07
+13 5.27987253917672e-07
+14 5.22997254392976e-07
+15 9.84297116701782e-07
+16 5.73119052660331e-07
+17 1.16156684271118e-06
+18 1.02551405234408e-06
+19 8.77945524280221e-07
+20 7.98334724549932e-07
+21 6.51256470973749e-07
+22 5.34347066150076e-07
+23 5.59578495540336e-07
+24 5.13758834586042e-07
+25 4.9454968120699e-07
+26 5.73887518839911e-07
+27 5.38751464773668e-07
+28 5.8933994750987e-07
+29 6.18631247562007e-07
+30 5.17048817982868e-07
+31 4.58382174883809e-07
+32 5.58604199341062e-07
+33 4.66267238152795e-07
+34 6.04418971761334e-07
+35 5.22546088177478e-07
+36 5.41790711849899e-07
+37 4.89581509555137e-07
+38 4.47317972884775e-07
+39 5.42408940873429e-07
+40 4.87369277379912e-07
+41 4.57164588851811e-07
+42 4.75389811072091e-07
+43 4.26662694508195e-07
+44 4.51327707651217e-07
+45 1.75065270013874e-06
+46 4.42592721583424e-07
+47 4.67937070425251e-07
+48 4.03406829718733e-07
+49 3.65786661404854e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000120469332614448
+1 1.22168048619642e-05
+2 6.05379636908765e-06
+3 2.46447757490387e-06
+4 2.70559053205943e-06
+5 1.8998520090463e-06
+6 1.84897805866058e-06
+7 9.45709132338379e-07
+8 8.84698522440885e-07
+9 8.16868862330011e-07
+10 7.72462612985692e-07
+11 6.6966231315746e-07
+12 1.0399404573036e-06
+13 4.01084207624081e-07
+14 6.56779661767359e-07
+15 9.82951860351022e-07
+16 3.84342911274871e-07
+17 1.63673212227877e-06
+18 8.82966958215547e-07
+19 1.04332275441266e-06
+20 9.05415106444707e-07
+21 8.3361322822384e-07
+22 1.17871275051584e-06
+23 3.34220970898969e-07
+24 5.54184964585147e-07
+25 4.89972762807156e-07
+26 6.39124834833638e-07
+27 5.05483910728799e-07
+28 8.12420410056802e-07
+29 5.26952817381243e-07
+30 5.45962564046931e-07
+31 1.00876195574529e-06
+32 5.3362583685157e-07
+33 8.50571268529166e-07
+34 4.14916797808473e-07
+35 1.17813362976449e-06
+36 3.34903660359487e-07
+37 5.20263881753635e-07
+38 6.41681651813997e-07
+39 5.18227750490041e-07
+40 5.74394050545379e-07
+41 3.15893657898414e-07
+42 3.91867530424861e-07
+43 3.39327272058654e-07
+44 3.41261284120264e-07
+45 9.65129743235593e-07
+46 4.76536314408804e-07
+47 3.64971896260613e-07
+48 4.02353265371858e-07
+49 7.09488347183651e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00014091152115725
+1 0.000102878657344263
+2 0.000103534242953174
+3 0.000115556933451444
+4 0.00010078061313834
+5 9.92528584902175e-05
+6 9.99599797069095e-05
+7 0.000103760408819653
+8 0.000102369747764897
+9 0.00010043026850326
+10 0.000101848221675027
+11 0.000101173383882269
+12 0.000106224521005061
+13 0.000100070021289866
+14 0.000108453605207615
+15 9.46593718254007e-05
+16 0.000109837354102638
+17 0.00010950188152492
+18 0.00501860212534666
+19 0.000136045622639358
+20 9.98386603896506e-05
+21 0.000103405225672759
+22 0.000114666756417137
+23 0.000161635427502915
+24 0.000101543351775035
+25 0.000101063786132727
+26 0.000100109959021211
+27 0.000100196950370446
+28 0.000100722980278078
+29 0.000105793820694089
+30 0.00010137624485651
+31 0.000104753860796336
+32 0.000102037236501928
+33 9.97406750684604e-05
+34 9.81745033641346e-05
+35 9.64768842095509e-05
+36 9.92795030470006e-05
+37 0.000134870584588498
+38 9.98122632154264e-05
+39 0.000100545556051657
+40 0.000105950050055981
+41 0.00010018446482718
+42 0.0142910284921527
+43 0.000106392079032958
+44 0.000283892673905939
+45 0.00012990077084396
+46 9.88050305750221e-05
+47 0.000104565755464137
+48 9.92105124169029e-05
+49 9.63721249718219e-05
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 7.79571055318229e-05
+1 0.000107455860415939
+2 9.8249947768636e-05
+3 8.35325845400803e-05
+4 0.000116370698378887
+5 0.000102773243270349
+6 8.91022646101192e-05
+7 9.86879676929675e-05
+8 0.00010141860548174
+9 9.79999313130975e-05
+10 8.80727529875003e-05
+11 8.93414398888126e-05
+12 0.000118216550617944
+13 9.90397529676557e-05
+14 7.97753455117345e-05
+15 0.000114330512587912
+16 0.000102176403743215
+17 0.000102180543763097
+18 0.000130847765831277
+19 0.0001097205458791
+20 0.000112852860183921
+21 9.55108989728615e-05
+22 9.52981572481804e-05
+23 0.000113964990305249
+24 8.92454627319239e-05
+25 0.000102921738289297
+26 0.000118489842861891
+27 0.000143005163408816
+28 0.00011755533341784
+29 0.000109114298538771
+30 0.00011550296767382
+31 0.00010485863458598
+32 0.00010201167606283
+33 9.81682023848407e-05
+34 0.00013169071462471
+35 0.000128634113934822
+36 0.000114037669845857
+37 8.76822814461775e-05
+38 0.000102001264167484
+39 9.68920212471858e-05
+40 0.000117585484986193
+41 0.000133848952827975
+42 7.99612826085649e-05
+43 0.000102053010778036
+44 0.000120634787890594
+45 0.000101089201052673
+46 0.000120825541671365
+47 8.75981932040304e-05
+48 0.000114379698061384
+49 0.00010482182551641
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_UWF/Scenario = 2, Layers = 160, Epochs = 50, LR = 0.002529123398734603, Learning_Process.pdf b/models_UWF/Scenario = 2, Layers = 160, Epochs = 50, LR = 0.002529123398734603, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..9110108e52a7baeccbffbaa7eccc32633298bd2f
Binary files /dev/null and b/models_UWF/Scenario = 2, Layers = 160, Epochs = 50, LR = 0.002529123398734603, Learning_Process.pdf differ
diff --git a/models_UWF/Scenario = 2, Layers = 160, Epochs = 50, LR = 0.002529123398734603, Learning_Process.tex b/models_UWF/Scenario = 2, Layers = 160, Epochs = 50, LR = 0.002529123398734603, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..4c944a4a5e8a7e70d7834fca373f9611630c6064
--- /dev/null
+++ b/models_UWF/Scenario = 2, Layers = 160, Epochs = 50, LR = 0.002529123398734603, Learning_Process.tex	
@@ -0,0 +1,258 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.27382665582127e-07, ymax=0.0256425588111115,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 9.12800751393661e-05
+1 4.77143985335715e-05
+2 1.52612574311206e-05
+3 9.69646862358786e-06
+4 9.68367749010213e-06
+5 5.98866245127283e-06
+6 9.19573085411685e-06
+7 4.75094839202939e-06
+8 4.01579200115521e-06
+9 2.99507937597809e-05
+10 3.63961976290739e-06
+11 2.71877456725633e-06
+12 2.4460136955895e-06
+13 2.34843059843115e-06
+14 2.05203741643345e-06
+15 2.75659749604529e-06
+16 0.0108398841693997
+17 1.68676024259184e-06
+18 1.34265792439692e-05
+19 1.48573144542752e-06
+20 1.37608424211066e-06
+21 1.2127620721003e-06
+22 1.22266533253423e-06
+23 1.32856723666919e-06
+24 1.07314610886533e-06
+25 1.07825735540246e-06
+26 9.7536849352764e-07
+27 9.16977000997576e-07
+28 9.57325255512842e-07
+29 8.97054121651308e-07
+30 1.20397987757315e-06
+31 9.81163452706824e-07
+32 8.12756979939877e-07
+33 8.65095557855966e-07
+34 6.98061398907157e-07
+35 7.83331074671878e-07
+36 1.1449067187641e-06
+37 1.12642942440289e-06
+38 8.10329709111102e-07
+39 1.30725163671741e-06
+40 1.03213142210734e-06
+41 8.57575912505126e-07
+42 7.10840197370999e-07
+43 8.77730144566158e-07
+44 6.32435046554747e-07
+45 7.41331177778193e-07
+46 6.24123117631825e-07
+47 6.07299114108173e-07
+48 7.60590808113193e-07
+49 6.52622759389487e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000146906750160269
+1 4.54385990451556e-05
+2 2.51784422289347e-05
+3 1.09610209619859e-05
+4 8.82356380316196e-06
+5 6.4001187638496e-06
+6 7.72359180700732e-06
+7 4.6690329327248e-06
+8 4.1589378270146e-06
+9 3.75897116100532e-06
+10 2.19085882235959e-06
+11 3.05912044495926e-06
+12 2.51875076173746e-06
+13 1.68369967923354e-06
+14 1.78894595137535e-06
+15 1.72370278050948e-06
+16 1.54539486629801e-06
+17 1.78939899342367e-06
+18 1.28465308080195e-06
+19 1.39838527957181e-06
+20 1.16118042114977e-06
+21 1.23041218103026e-06
+22 9.94921151686867e-07
+23 3.22836854138586e-06
+24 8.53829249081173e-07
+25 1.02642241017747e-06
+26 8.62908393628459e-07
+27 8.8811532350519e-07
+28 7.67689755321044e-07
+29 9.45630574733514e-07
+30 2.05813671527721e-06
+31 4.95712583870045e-07
+32 6.8386628981898e-07
+33 5.37926780452835e-07
+34 5.23987012002181e-07
+35 5.15052590799314e-07
+36 4.67958670924418e-07
+37 5.51582445496024e-07
+38 5.07109405134543e-07
+39 1.71376598245843e-06
+40 1.10791972929292e-06
+41 8.31857619232323e-07
+42 8.78408741300518e-07
+43 6.38233757399576e-07
+44 5.3304603397919e-07
+45 4.86260319121357e-07
+46 4.88866874093219e-07
+47 3.85836216310054e-07
+48 6.40680809738114e-07
+49 6.60710782085516e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000195774482563138
+1 0.000160047318786383
+2 0.000102842495834921
+3 0.0001087394048227
+4 9.81255798251368e-05
+5 0.0146340057253838
+6 0.00010086676775245
+7 0.000102876438177191
+8 0.00713795563206077
+9 0.0135132530704141
+10 0.0133488196879625
+11 9.55540526774712e-05
+12 0.000132256769575179
+13 0.000183201787876897
+14 0.000106244937342126
+15 0.000101273195468821
+16 9.32125694816932e-05
+17 9.81413904810324e-05
+18 9.42698825383559e-05
+19 0.000100601697340608
+20 0.000100415541965049
+21 0.00406408309936523
+22 9.78493480943143e-05
+23 9.68719978118315e-05
+24 9.78458701865748e-05
+25 0.000127216262626462
+26 9.80505719780922e-05
+27 9.48135857470334e-05
+28 9.75258080870844e-05
+29 0.0114837195724249
+30 0.0151117835193872
+31 9.91004635579884e-05
+32 9.85345395747572e-05
+33 9.23830812098458e-05
+34 0.000271015713224187
+35 9.97458264464512e-05
+36 9.58471136982553e-05
+37 9.94931324385107e-05
+38 0.000102729143691249
+39 0.000105156330391765
+40 9.8926255304832e-05
+41 9.88342217169702e-05
+42 0.000205428179469891
+43 9.73270434769802e-05
+44 0.000119710071885493
+45 9.41082325880416e-05
+46 9.63419515755959e-05
+47 0.000111875022412278
+48 0.000501811155118048
+49 9.5437491836492e-05
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000122388693853281
+1 8.81743180798367e-05
+2 0.000144750694744289
+3 0.000124363301438279
+4 9.56157819018699e-05
+5 0.000102532365417574
+6 8.66525151650421e-05
+7 9.69677057582885e-05
+8 8.60810978338122e-05
+9 0.000109327993413899
+10 0.000122844096040353
+11 9.41216130740941e-05
+12 9.44851999520324e-05
+13 8.66154368850403e-05
+14 8.15872117527761e-05
+15 8.70066141942516e-05
+16 0.000208065219339915
+17 0.000105703074950725
+18 9.99538824544288e-05
+19 8.91270974534564e-05
+20 9.2322428827174e-05
+21 0.000101727950095665
+22 8.44766182126477e-05
+23 8.30023127491586e-05
+24 0.000109222077298909
+25 0.000103032449260354
+26 0.000106494386272971
+27 0.00010179728269577
+28 0.000101314370112959
+29 0.000110880377178546
+30 0.000117002717161085
+31 0.000107924010080751
+32 0.000122142169857398
+33 0.000128713974845596
+34 0.000153307555592619
+35 0.000117935800517444
+36 0.000125373160699382
+37 9.16626886464655e-05
+38 0.000117856056021992
+39 9.88983811112121e-05
+40 0.000127232618979178
+41 0.00010941505752271
+42 9.14607007871382e-05
+43 9.46368818404153e-05
+44 9.37558506848291e-05
+45 0.000109333566797432
+46 0.000104297061625402
+47 0.000141354452352971
+48 0.000126876213471405
+49 0.00010872476559598
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_UWF/Scenario = 4, Layers = 160, Epochs = 50, LR = 0.005726951754574419, Learning_Process.pdf b/models_UWF/Scenario = 4, Layers = 160, Epochs = 50, LR = 0.005726951754574419, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..31c6de4efcb540b930a233640465769839c57332
Binary files /dev/null and b/models_UWF/Scenario = 4, Layers = 160, Epochs = 50, LR = 0.005726951754574419, Learning_Process.pdf differ
diff --git a/models_UWF/Scenario = 4, Layers = 160, Epochs = 50, LR = 0.005726951754574419, Learning_Process.tex b/models_UWF/Scenario = 4, Layers = 160, Epochs = 50, LR = 0.005726951754574419, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..ded76c538e4cc1cb539c7f3070a41ba98d5d9378
--- /dev/null
+++ b/models_UWF/Scenario = 4, Layers = 160, Epochs = 50, LR = 0.005726951754574419, Learning_Process.tex	
@@ -0,0 +1,267 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.03,0.97)},
+  anchor=north west,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+unbounded coords=jump,
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.19586765691005e-08, ymax=0.0262063369644819,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000109001739474479
+1 6.29983333055861e-06
+2 2.47163516178261e-05
+3 9.29647512748488e-07
+4 5.80383300530229e-07
+5 5.08125026499329e-07
+6 4.04007010956775e-07
+7 3.34821805836327e-07
+8 2.43996083781894e-07
+9 2.16709466371867e-07
+10 1.76551040453887e-07
+11 1.5558477173272e-07
+12 4.07148377234989e-07
+13 1.20781322721086e-07
+14 1.35201261741713e-07
+15 1.14359217207038e-07
+16 9.13535416202649e-08
+17 9.41199402859638e-08
+18 9.72010951727498e-08
+19 8.17035754607787e-08
+20 7.83810847337918e-08
+21 1.1664470633832e-07
+22 6.90266901415271e-08
+23 6.41383408606089e-08
+24 2.34298640862107e-05
+25 6.54403820021798e-08
+26 0.00173615314997733
+27 nan
+28 nan
+29 nan
+30 nan
+31 nan
+32 nan
+33 nan
+34 nan
+35 nan
+36 nan
+37 nan
+38 nan
+39 nan
+40 nan
+41 nan
+42 nan
+43 nan
+44 nan
+45 nan
+46 nan
+47 nan
+48 nan
+49 nan
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000132285087602213
+1 6.26916107648867e-06
+2 1.43496788496122e-06
+3 1.20836500627775e-06
+4 1.0928164329016e-06
+5 4.83064866330096e-07
+6 5.04442880355782e-07
+7 2.84314552345677e-07
+8 2.42429536001509e-07
+9 2.437103887587e-07
+10 1.80017707407387e-07
+11 1.95325924323697e-07
+12 1.25149412610881e-07
+13 1.8976491844569e-07
+14 1.40713197538389e-07
+15 1.31689148474834e-07
+16 8.95463685424147e-08
+17 7.61171179419762e-08
+18 1.04206343110036e-07
+19 6.42051176669156e-08
+20 6.4789354325967e-08
+21 5.3832014401678e-08
+22 5.02167658567032e-08
+23 6.81735699004093e-08
+24 4.7615518639077e-08
+25 4.14786249791632e-08
+26 6.36700917766575e-07
+27 nan
+28 nan
+29 nan
+30 nan
+31 nan
+32 nan
+33 nan
+34 nan
+35 nan
+36 nan
+37 nan
+38 nan
+39 nan
+40 nan
+41 nan
+42 nan
+43 nan
+44 nan
+45 nan
+46 nan
+47 nan
+48 nan
+49 nan
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00010893345461227
+1 0.000108081687358208
+2 0.000107873464003205
+3 0.000123974750749767
+4 0.000107008374470752
+5 0.000139270588988438
+6 0.000120150260045193
+7 0.000106940795376431
+8 0.00011090247426182
+9 0.000155460176756606
+10 0.000128402432892472
+11 0.000129744119476527
+12 0.000132475790451281
+13 0.000112987530883402
+14 0.000125895006931387
+15 0.000243721719016321
+16 0.000110586654045619
+17 0.000116817842354067
+18 0.000114364345790818
+19 0.000418094481574371
+20 0.000107283041870687
+21 0.00909795425832272
+22 0.000118435840704478
+23 0.000110734465124551
+24 0.000111411507532466
+25 0.000123769568745047
+26 0.000112509915197734
+27 0.000134974819957279
+28 0.00047618689131923
+29 0.000125099963042885
+30 0.000109357264591381
+31 0.000198692709091119
+32 0.000121695244160946
+33 0.00011326112144161
+34 0.00011560238635866
+35 0.0138735668733716
+36 0.000122056997497566
+37 0.000110513137769885
+38 0.000198738474864513
+39 0.000118592877697665
+40 0.000111050016130321
+41 0.00561850611120462
+42 0.000111373061372433
+43 0.000109302454802673
+44 0.000110149761894718
+45 0.000598363752942532
+46 0.000110620720079169
+47 0.00010722460137913
+48 0.000113497095298953
+49 0.000152124470332637
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000134621557663195
+1 0.000179517344804481
+2 0.000144507896038704
+3 0.000121026627311949
+4 0.000148439474287443
+5 0.000130029264255427
+6 0.000116933559183963
+7 0.000157914240844548
+8 0.000138774776132777
+9 0.000101826401078142
+10 9.93162175291218e-05
+11 0.000102834637800697
+12 0.000101523197372444
+13 0.000108522552181967
+14 0.000132292188936844
+15 0.000100948556791991
+16 0.000121138655231334
+17 0.000151736137922853
+18 0.000103904014395084
+19 0.000118073323392309
+20 0.000131526074255817
+21 0.000120095537567977
+22 0.000105741062725428
+23 0.000116064351459499
+24 0.000123323829029687
+25 8.71219817781821e-05
+26 0.000121809345728252
+27 0.000105568302387837
+28 0.00012045877519995
+29 9.95877999230288e-05
+30 0.000116166273073759
+31 0.000124865167890675
+32 8.92960888450034e-05
+33 0.00014787120744586
+34 0.000122521611046977
+35 0.000112226174678653
+36 0.000103518133983016
+37 0.000145511759910733
+38 9.56374569796026e-05
+39 0.000170856175827794
+40 0.000132343964651227
+41 0.000106290754047222
+42 0.00013004666834604
+43 0.000116120092570782
+44 0.000120751516078599
+45 0.000117504096124321
+46 0.000120867560326587
+47 0.00018352922052145
+48 0.000119797863590065
+49 0.000115753035061061
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_UWF/Scenario = 4, Layers = 160, Epochs = 50, LR = 0.00592144251979329, Learning_Process.pdf b/models_UWF/Scenario = 4, Layers = 160, Epochs = 50, LR = 0.00592144251979329, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..d7353864eaa06405322253bbc7941b170ccb3f59
Binary files /dev/null and b/models_UWF/Scenario = 4, Layers = 160, Epochs = 50, LR = 0.00592144251979329, Learning_Process.pdf differ
diff --git a/models_UWF/Scenario = 4, Layers = 160, Epochs = 50, LR = 0.00592144251979329, Learning_Process.tex b/models_UWF/Scenario = 4, Layers = 160, Epochs = 50, LR = 0.00592144251979329, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..b6a62962a347af931c63dc364c4727952840d872
--- /dev/null
+++ b/models_UWF/Scenario = 4, Layers = 160, Epochs = 50, LR = 0.00592144251979329, Learning_Process.tex	
@@ -0,0 +1,265 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=2.56488456348712e-08, ymax=0.00534658796799091,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000114751434011851
+1 5.45683496966376e-06
+2 1.5035211617942e-06
+3 9.11871211428661e-07
+4 9.54094616645307e-07
+5 6.38617621007143e-07
+6 4.36695415828581e-07
+7 4.0549721802563e-07
+8 3.45230773746152e-07
+9 3.03738119100672e-07
+10 2.6305733058507e-07
+11 2.40871884216176e-07
+12 2.19633847109435e-07
+13 2.2166419455516e-07
+14 1.84770769351417e-07
+15 1.64428470839084e-07
+16 1.57481920837199e-07
+17 1.99612054530007e-06
+18 1.52599739067227e-07
+19 1.27302257624251e-07
+20 1.29249912106388e-07
+21 1.1129078814065e-07
+22 1.21420185905663e-07
+23 1.12819826370014e-07
+24 9.67717781463762e-08
+25 9.89986830290945e-08
+26 9.33563057969877e-08
+27 8.99584549074461e-08
+28 9.18507083724762e-08
+29 8.66064766569252e-08
+30 7.5961892775922e-08
+31 7.99097037429419e-08
+32 7.30642000235093e-08
+33 7.26724991295669e-08
+34 7.00669460229619e-08
+35 6.75409665973348e-08
+36 6.36784562857429e-08
+37 6.02146812411775e-08
+38 6.23949389932932e-08
+39 5.78846766075003e-08
+40 5.51570131790413e-08
+41 5.56611823299136e-08
+42 5.72399407872126e-08
+43 5.33186117479545e-08
+44 5.83912651563878e-08
+45 5.27112007375763e-08
+46 5.27188710464088e-08
+47 4.96970358199178e-08
+48 4.90548046627737e-08
+49 4.4754937533753e-08
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000129193955217488
+1 5.12611586600542e-06
+2 1.68487349583302e-06
+3 6.47126512376417e-07
+4 1.31627882637986e-06
+5 8.75956573054282e-07
+6 9.90121179711423e-07
+7 5.19491550221574e-07
+8 3.90266677641193e-07
+9 3.93147274735384e-07
+10 2.90141144887457e-07
+11 2.98300676604413e-07
+12 3.364079077528e-07
+13 1.6589891060903e-07
+14 2.20441194187515e-07
+15 1.72348478599815e-07
+16 1.87148870622877e-07
+17 1.71333866205714e-07
+18 1.60140373850481e-07
+19 1.64454689866034e-07
+20 1.17771513430398e-07
+21 1.61557210276442e-07
+22 1.26510016684733e-07
+23 1.19782967544779e-07
+24 1.27264257798743e-07
+25 1.0490259683138e-07
+26 1.25504683978761e-07
+27 7.40074028726667e-08
+28 1.07603163712611e-07
+29 8.03531108317657e-08
+30 8.88863098680304e-08
+31 6.78370994933175e-08
+32 7.31300602296869e-08
+33 5.96006834996388e-08
+34 6.58286225529991e-08
+35 5.95172551243195e-08
+36 8.38671923020229e-08
+37 7.18122166176727e-08
+38 6.82340370872225e-08
+39 3.00175855727502e-07
+40 7.35167802190517e-08
+41 5.18406864102872e-08
+42 5.84619321841728e-08
+43 5.64860798135669e-08
+44 5.27641361713904e-08
+45 6.57689724903321e-08
+46 5.48434009317589e-08
+47 5.37599582628445e-08
+48 6.69832189714725e-08
+49 6.61936638834959e-08
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000112502297270112
+1 0.000115353774162941
+2 0.000112911191536114
+3 0.000114131304144394
+4 0.000119016724056564
+5 0.000115906150313094
+6 0.000145513913594186
+7 0.000541089393664151
+8 0.000360228266799822
+9 0.000116148607048672
+10 0.00160912494175136
+11 0.00011991318751825
+12 0.00011675244604703
+13 0.000110763518023305
+14 0.000121986551675946
+15 0.000120944947411772
+16 0.000142816759762354
+17 0.000116108880320098
+18 0.0011836439371109
+19 0.00011172890663147
+20 0.000120780496217776
+21 0.000117374896944966
+22 0.000120603814139031
+23 0.000117380281153601
+24 0.000229717014008202
+25 0.000111156499770004
+26 0.000111615598143544
+27 0.000135575057356618
+28 0.000116246483230498
+29 0.00012402844731696
+30 0.00306410458870232
+31 0.000116472423542291
+32 0.000143111756187864
+33 0.000112600981083233
+34 0.000277221028227359
+35 0.000121630422654562
+36 0.00012010083446512
+37 0.000126943326904438
+38 0.000113532521936577
+39 0.000129639010992832
+40 0.000197729881620035
+41 0.000117037445306778
+42 0.000124330224934965
+43 0.000113675829197746
+44 0.000118548530736007
+45 0.000128313302411698
+46 0.000114045687951148
+47 0.000124041733215563
+48 0.000117369723739102
+49 0.000110773187770974
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000141238619107753
+1 0.00014757584722247
+2 0.000145903715747409
+3 0.000143157507409342
+4 0.000128574931295589
+5 0.000116057773993816
+6 0.000137035764055327
+7 0.000136968097649515
+8 0.000105307379271835
+9 0.000103437043435406
+10 0.00011327084939694
+11 9.38705270527862e-05
+12 0.000119314237963408
+13 0.000159485993208364
+14 0.000125352162285708
+15 0.000108305262983777
+16 0.000133220135467127
+17 0.000103215475974139
+18 0.000113870206405409
+19 0.00014103832654655
+20 9.35151765588671e-05
+21 0.00104372680652887
+22 0.000100084464065731
+23 0.00011160655412823
+24 0.000131560766021721
+25 0.000134218251332641
+26 0.000167198595590889
+27 0.000214077110285871
+28 0.00167262449394912
+29 0.000152753462316468
+30 0.000110644636151846
+31 0.000113506990601309
+32 0.000112602443550713
+33 0.000122905286843888
+34 0.00017716184083838
+35 0.000113224661618005
+36 8.53120218380354e-05
+37 0.000138356306706555
+38 0.000116199931653682
+39 0.000112442648969591
+40 0.000119461641588714
+41 0.000148267645272426
+42 0.000130688436911441
+43 0.00010667373862816
+44 0.000105888058897108
+45 0.000120453769341111
+46 0.000113086753117386
+47 0.000107601459603757
+48 0.000102526835689787
+49 0.000159695773618296
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_UWF/Scenario = 5, Layers = 160, Epochs = 50, LR = 0.0066132505409897905, Learning_Process.pdf b/models_UWF/Scenario = 5, Layers = 160, Epochs = 50, LR = 0.0066132505409897905, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..440c278e945e017ae764eb0135d1a5e40c9a468c
Binary files /dev/null and b/models_UWF/Scenario = 5, Layers = 160, Epochs = 50, LR = 0.0066132505409897905, Learning_Process.pdf differ
diff --git a/models_UWF/Scenario = 5, Layers = 160, Epochs = 50, LR = 0.0066132505409897905, Learning_Process.tex b/models_UWF/Scenario = 5, Layers = 160, Epochs = 50, LR = 0.0066132505409897905, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..029e2fc2b6f52cece2296b387c117bc9d766e23f
--- /dev/null
+++ b/models_UWF/Scenario = 5, Layers = 160, Epochs = 50, LR = 0.0066132505409897905, Learning_Process.tex	
@@ -0,0 +1,258 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+unbounded coords=jump,
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=4.34802467390479e-06, ymax=0.0132949737174119,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00011349143460393
+1 5.11021680722479e-05
+2 0.00923124793916941
+3 6.29264759481885e-05
+4 0.00182711367961019
+5 nan
+6 nan
+7 nan
+8 nan
+9 nan
+10 nan
+11 nan
+12 nan
+13 nan
+14 nan
+15 nan
+16 nan
+17 nan
+18 nan
+19 nan
+20 nan
+21 nan
+22 nan
+23 nan
+24 nan
+25 nan
+26 nan
+27 nan
+28 nan
+29 nan
+30 nan
+31 nan
+32 nan
+33 nan
+34 nan
+35 nan
+36 nan
+37 nan
+38 nan
+39 nan
+40 nan
+41 nan
+42 nan
+43 nan
+44 nan
+45 nan
+46 nan
+47 nan
+48 nan
+49 nan
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000160591414896771
+1 6.26208657195093e-06
+2 0.00183168461080641
+3 7.09421801730059e-05
+4 0.000963443890213966
+5 nan
+6 nan
+7 nan
+8 nan
+9 nan
+10 nan
+11 nan
+12 nan
+13 nan
+14 nan
+15 nan
+16 nan
+17 nan
+18 nan
+19 nan
+20 nan
+21 nan
+22 nan
+23 nan
+24 nan
+25 nan
+26 nan
+27 nan
+28 nan
+29 nan
+30 nan
+31 nan
+32 nan
+33 nan
+34 nan
+35 nan
+36 nan
+37 nan
+38 nan
+39 nan
+40 nan
+41 nan
+42 nan
+43 nan
+44 nan
+45 nan
+46 nan
+47 nan
+48 nan
+49 nan
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000113729867734946
+1 0.000121947770821862
+2 0.000118369236588478
+3 0.0001172109041363
+4 0.00302527262829244
+5 0.000115296919830143
+6 0.000115227121568751
+7 0.000129495281726122
+8 0.000114419373858254
+9 0.000119522272143513
+10 0.000121034056064673
+11 0.000117488620162476
+12 0.000116069262730889
+13 0.000115711583930533
+14 0.000113848393084481
+15 0.000118150150228757
+16 0.000119702854135539
+17 0.000124558515381068
+18 0.000126964660012163
+19 0.000117609299195465
+20 0.000114188427687623
+21 0.000121704128105193
+22 0.000119095544505399
+23 0.000116858202090953
+24 0.000112593552330509
+25 0.000118036346975714
+26 0.000117024304927327
+27 0.000116631315904669
+28 0.000119484757306054
+29 0.000112165856990032
+30 0.000117882758786436
+31 0.000114201655378565
+32 0.000124703146866523
+33 0.00011784685193561
+34 0.000118346673843917
+35 0.000115681090392172
+36 0.000118016250780784
+37 0.000145369587698951
+38 0.000115318784082774
+39 0.000122064499009866
+40 0.000114950496936217
+41 0.000116967588837724
+42 0.000136544913402759
+43 0.000118187912448775
+44 0.000115062146505807
+45 0.000128257714095525
+46 0.000120152762974612
+47 0.000119216580060311
+48 0.000116367620648816
+49 0.000125818274682388
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000137577910209075
+1 0.000124043261166662
+2 0.000114384623884689
+3 0.000117587696877308
+4 0.000131988344946876
+5 0.000137213879497722
+6 0.00017686550563667
+7 0.000148660998092964
+8 0.000104316975921392
+9 9.69409520621412e-05
+10 0.000129518448375165
+11 0.000111586065031588
+12 0.000110427128674928
+13 0.00014375509636011
+14 0.000130032611195929
+15 0.000123099860502407
+16 0.000110755499918014
+17 0.000128165047499351
+18 0.000115133218059782
+19 0.00012040317960782
+20 0.000140160074806772
+21 0.000127879582578316
+22 0.000154111956362613
+23 0.000123917561722919
+24 0.00015137653099373
+25 0.000104571103292983
+26 0.000115862385428045
+27 0.000161604679306038
+28 0.0001161763939308
+29 0.000151834334246814
+30 0.000131356864585541
+31 0.000155268571688794
+32 0.000103595833934378
+33 0.000118822514195926
+34 9.45008214330301e-05
+35 0.000114782385935541
+36 9.60295801633038e-05
+37 0.00013263507571537
+38 0.000110697328636888
+39 0.000114337963168509
+40 0.000116567061922979
+41 0.000133255321998149
+42 0.000119714954053052
+43 0.000124737183796242
+44 0.000130857704789378
+45 0.000108639498648699
+46 0.000161815289175138
+47 0.000124976941151544
+48 0.000147474114783108
+49 0.000116719973448198
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_UWF/Scenario = 6, Layers = 160, Epochs = 50, LR = 0.002882780391091506, Learning_Process.pdf b/models_UWF/Scenario = 6, Layers = 160, Epochs = 50, LR = 0.002882780391091506, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..baffaf750b13c23d664205b8c2efe661564d0497
Binary files /dev/null and b/models_UWF/Scenario = 6, Layers = 160, Epochs = 50, LR = 0.002882780391091506, Learning_Process.pdf differ
diff --git a/models_UWF/Scenario = 6, Layers = 160, Epochs = 50, LR = 0.002882780391091506, Learning_Process.tex b/models_UWF/Scenario = 6, Layers = 160, Epochs = 50, LR = 0.002882780391091506, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..dd11f0cfabe9fd4b18ca9f7bece0f1b66bc6b29c
--- /dev/null
+++ b/models_UWF/Scenario = 6, Layers = 160, Epochs = 50, LR = 0.002882780391091506, Learning_Process.tex	
@@ -0,0 +1,262 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.91,0.5)},
+  anchor=east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.92677059499183e-06, ymax=0.000429243474743508,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 9.12087562028319e-05
+1 4.15107460867148e-05
+2 1.45435897138668e-05
+3 9.58851069299271e-06
+4 6.17518435319653e-06
+5 5.52168285139487e-06
+6 4.26380893259193e-06
+7 3.59706223207468e-06
+8 3.20545495924307e-06
+9 5.55344058739138e-06
+10 5.73947681914433e-06
+11 5.02219882037025e-06
+12 4.67607424070593e-06
+13 4.92903700433089e-06
+14 4.65140192318358e-06
+15 4.54863584309351e-06
+16 4.33445620728889e-06
+17 4.32252591053839e-06
+18 4.34332832810469e-06
+19 3.95227834815159e-06
+20 4.0988174987433e-06
+21 3.87767522624927e-06
+22 3.87942827728693e-06
+23 3.70221096090972e-06
+24 3.55661109097127e-06
+25 3.61517641067621e-06
+26 3.78496747543977e-06
+27 3.5171624404029e-06
+28 3.67617667507147e-06
+29 3.3626095046202e-06
+30 3.32910417455423e-06
+31 3.51868879988615e-06
+32 3.16994214699662e-06
+33 3.09836445921974e-06
+34 3.23052063322393e-06
+35 3.70421662410081e-06
+36 2.93179323307413e-06
+37 2.94890560326166e-06
+38 4.31856096838601e-06
+39 4.8487549975107e-06
+40 5.84902818445698e-06
+41 4.79770324091078e-06
+42 4.77208732263534e-06
+43 4.65638640889665e-06
+44 4.63286733065615e-06
+45 4.64163485958125e-06
+46 4.61549325336819e-06
+47 4.54806695415755e-06
+48 4.74150238005677e-06
+49 4.367265773908e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000119816373626236
+1 3.93703921872657e-05
+2 2.75742913800059e-05
+3 8.10652181826299e-06
+4 6.285024483077e-06
+5 6.06640924161184e-06
+6 4.01202714783722e-06
+7 3.77590913558379e-06
+8 3.86651299777441e-06
+9 6.68417624183348e-06
+10 5.57202793061151e-06
+11 6.88743466525921e-06
+12 7.96577569417423e-06
+13 4.48433775090962e-06
+14 5.15341798745794e-06
+15 5.02964758197777e-06
+16 5.66678409086308e-06
+17 5.4812499001855e-06
+18 4.74741136713419e-06
+19 5.60007720196154e-06
+20 5.5579912441317e-06
+21 4.24429754275479e-06
+22 6.12429585089558e-06
+23 4.24416657551774e-06
+24 4.64360346086323e-06
+25 3.65535061064293e-06
+26 3.64984111911326e-06
+27 3.0890853395249e-06
+28 3.40936571774364e-06
+29 3.67708685189427e-06
+30 3.57226531377819e-06
+31 2.90264620161906e-06
+32 3.35210279445164e-06
+33 2.46349418375758e-06
+34 2.7923838388233e-06
+35 3.03125079881283e-06
+36 2.92884010377747e-06
+37 2.87333205051254e-06
+38 5.94087805438903e-06
+39 7.31842465029331e-06
+40 6.34494153928244e-06
+41 7.66912035032874e-06
+42 5.47436729902984e-06
+43 6.78038441037643e-06
+44 6.03232911089435e-06
+45 5.49634432900348e-06
+46 5.25612904311856e-06
+47 5.81352014705772e-06
+48 4.90162119604065e-06
+49 4.74328044219874e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 9.26598295336589e-05
+1 9.14880511118099e-05
+2 0.000101116202131379
+3 9.11148090381175e-05
+4 9.0326699137222e-05
+5 8.984531450551e-05
+6 9.08333095139824e-05
+7 9.22052859095857e-05
+8 9.03149484656751e-05
+9 9.2513786512427e-05
+10 8.93582327989861e-05
+11 9.28652007132769e-05
+12 8.72661476023495e-05
+13 9.31813483475707e-05
+14 9.33224146137945e-05
+15 9.2554691946134e-05
+16 9.25235071917996e-05
+17 8.85835979715921e-05
+18 9.16164790396579e-05
+19 9.44518542382866e-05
+20 8.88053109520115e-05
+21 8.96953497431241e-05
+22 8.76985504874028e-05
+23 8.90570008778013e-05
+24 9.09788213903084e-05
+25 8.90664596226998e-05
+26 8.76533376867883e-05
+27 9.37761942623183e-05
+28 8.99681253940798e-05
+29 9.01889507076703e-05
+30 8.9467030193191e-05
+31 8.97024074220099e-05
+32 9.03242398635484e-05
+33 9.25741260289215e-05
+34 8.95120610948652e-05
+35 9.06528730411083e-05
+36 8.90671799425036e-05
+37 8.90423762029968e-05
+38 9.25249987631105e-05
+39 9.41292091738433e-05
+40 9.368741302751e-05
+41 9.25918138818815e-05
+42 8.99478181963786e-05
+43 9.33741976041347e-05
+44 8.88023641891778e-05
+45 8.70719377417117e-05
+46 8.88669674168341e-05
+47 9.21130631468259e-05
+48 8.89391376404092e-05
+49 9.23711195355281e-05
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 8.98560610949062e-05
+1 7.18687078915536e-05
+2 0.000105761202576105
+3 0.000335723831085488
+4 0.000107881765870843
+5 0.000103928083262872
+6 0.00010805807687575
+7 9.07056237338111e-05
+8 0.00013018783647567
+9 0.000106986241007689
+10 9.04445114429109e-05
+11 8.29267082735896e-05
+12 0.000124639002024196
+13 8.2080478023272e-05
+14 6.88106811139733e-05
+15 9.43109262152575e-05
+16 9.24538398976438e-05
+17 0.000119282594823744
+18 8.57768682180904e-05
+19 7.29517851141281e-05
+20 0.000111588604340795
+21 0.000123700869153254
+22 0.000131380264065228
+23 0.000125433623907156
+24 9.87184466794133e-05
+25 0.000124168262118474
+26 0.000128585452330299
+27 7.81964627094567e-05
+28 0.000111517088953406
+29 0.00010959968494717
+30 0.000110406057501677
+31 0.000104825710877776
+32 0.000108478918264154
+33 9.39992460189387e-05
+34 0.000109547705505975
+35 0.000107307489088271
+36 0.000116464056191035
+37 0.000114304595626891
+38 7.41877811378799e-05
+39 7.19547751941718e-05
+40 8.3116021414753e-05
+41 8.51814766065218e-05
+42 0.000111030509287957
+43 8.50452124723233e-05
+44 0.000123117686598562
+45 0.00011992462532362
+46 0.00011652109969873
+47 0.000124022597447038
+48 0.000108708489278797
+49 8.74508332344703e-05
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_UWF/Scenario = 6, Layers = 160, Epochs = 50, LR = 0.004383483510388469, Learning_Process.pdf b/models_UWF/Scenario = 6, Layers = 160, Epochs = 50, LR = 0.004383483510388469, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..4bf364f141c3699b0eeb990b9ef2dc898cac72dd
Binary files /dev/null and b/models_UWF/Scenario = 6, Layers = 160, Epochs = 50, LR = 0.004383483510388469, Learning_Process.pdf differ
diff --git a/models_UWF/Scenario = 6, Layers = 160, Epochs = 50, LR = 0.004383483510388469, Learning_Process.tex b/models_UWF/Scenario = 6, Layers = 160, Epochs = 50, LR = 0.004383483510388469, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..bb11060cad9af331e0def7be6e24a56993de9c9f
--- /dev/null
+++ b/models_UWF/Scenario = 6, Layers = 160, Epochs = 50, LR = 0.004383483510388469, Learning_Process.tex	
@@ -0,0 +1,258 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=5.45963084403228e-07, ymax=0.0224954041017904,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000115734779683407
+1 5.11814432684332e-05
+2 2.91439137072302e-05
+3 1.99822370632319e-05
+4 1.53909859363921e-05
+5 1.33031362565816e-05
+6 1.12856832856778e-05
+7 9.73623355093878e-06
+8 9.1126021288801e-06
+9 0.000100385783298407
+10 0.000721995776984841
+11 5.95158599026036e-06
+12 5.73397301195655e-06
+13 5.1028646339546e-06
+14 6.14763921475969e-05
+15 3.96539644498262e-06
+16 4.23130495619262e-06
+17 5.12203087055241e-06
+18 0.00700878165662289
+19 3.49071910932253e-06
+20 0.0126778539270163
+21 7.52618943806738e-05
+22 2.15723375731613e-05
+23 2.82572341347986e-06
+24 2.74675289801962e-06
+25 2.92042977889651e-06
+26 2.51320625466178e-06
+27 0.00340239075012505
+28 2.3709528704785e-06
+29 2.34432695833675e-06
+30 2.15974114325945e-06
+31 2.59590274254151e-06
+32 2.23322126657877e-06
+33 3.58542297362874e-06
+34 2.31500575864629e-06
+35 1.97238568944158e-06
+36 2.05464880309592e-06
+37 1.77970593995269e-06
+38 1.77924812305719e-06
+39 2.36842720369168e-06
+40 1.88982426152506e-06
+41 1.74234253336181e-06
+42 1.68176484294236e-06
+43 1.62191736308159e-06
+44 1.69622080647969e-06
+45 1.59495266416343e-06
+46 1.52620100379863e-06
+47 1.77473123130767e-06
+48 1.57646070420014e-06
+49 2.04160755856719e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000128036845126189
+1 6.3861021772027e-05
+2 4.42795935668983e-05
+3 2.36594987654826e-05
+4 2.46482268266845e-05
+5 1.35734544528532e-05
+6 1.3482861504599e-05
+7 9.29526049731066e-06
+8 9.13688199943863e-06
+9 8.86731777427485e-06
+10 8.4743924162467e-06
+11 7.48688535168185e-06
+12 5.39320126335951e-06
+13 6.23091045781621e-06
+14 6.39364589005709e-06
+15 5.70495058127563e-06
+16 4.05599212172092e-06
+17 3.42790622198663e-06
+18 4.35394758824259e-06
+19 3.14914973387204e-06
+20 3.03609135698935e-06
+21 3.70661359738733e-06
+22 2.46886202148744e-06
+23 3.13246573568904e-06
+24 2.91402920993278e-06
+25 2.24570953832881e-06
+26 2.35465813602787e-06
+27 2.42790429183515e-06
+28 2.440819343974e-06
+29 2.0775726170541e-06
+30 1.65873632340663e-06
+31 2.76253285846906e-06
+32 2.03765262085653e-06
+33 1.97276540347957e-06
+34 1.44214334341086e-06
+35 2.05088849725144e-06
+36 1.39652900088549e-06
+37 1.84368514055677e-06
+38 1.6641337197143e-06
+39 1.50543871768605e-06
+40 1.3882554412703e-06
+41 1.35946208956739e-06
+42 1.38311145292391e-06
+43 1.14544207008294e-06
+44 1.28737144677871e-06
+45 1.1533089718796e-06
+46 2.10073812922928e-06
+47 1.07520395431493e-06
+48 8.84978760495869e-07
+49 9.11774066025828e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000118858966743574
+1 0.000123318721307442
+2 0.000123609832371585
+3 0.000116816256195307
+4 0.000118119482067414
+5 0.000401841476559639
+6 0.000114448797830846
+7 0.00011974130757153
+8 0.000361397949745879
+9 0.000158926355652511
+10 0.000121247772767674
+11 0.000115723618364427
+12 0.000117511008284055
+13 0.000145531579619274
+14 0.000115203372843098
+15 0.00013406180369202
+16 0.000114359987492207
+17 0.00011750611156458
+18 0.000112842535600066
+19 0.000125426828162745
+20 0.000169904931681231
+21 0.000115341113996692
+22 0.000125097692944109
+23 0.000113273556053173
+24 0.000124529920867644
+25 0.000122786106658168
+26 0.0001177646627184
+27 0.000111893859866541
+28 0.000129146268591285
+29 0.000114956455945503
+30 0.000118958188977558
+31 0.000117447729280684
+32 0.000113944719487336
+33 0.000117355753900483
+34 0.000114456648589112
+35 0.000277142447885126
+36 0.0138779152184725
+37 0.000221836162381805
+38 0.000117864939966239
+39 0.000118969532195479
+40 0.000121449680591468
+41 0.000322942243656144
+42 0.000119572760013398
+43 0.00011334111331962
+44 0.000119267810077872
+45 0.000117366435006261
+46 0.000136122034746222
+47 0.000116400384285953
+48 0.000127552149933763
+49 0.000163495220476761
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000217082488234155
+1 0.000116581759357359
+2 0.000130784654174931
+3 0.000108561966044363
+4 0.000148479637573473
+5 0.000146339458297007
+6 0.000119215015729424
+7 0.000127446372061968
+8 0.00186755135655403
+9 0.000103602826129645
+10 9.57357551669702e-05
+11 0.000138063172926195
+12 0.000109846987470519
+13 0.000121893383038696
+14 0.000148805178469047
+15 0.000572866760194302
+16 0.000124369355035014
+17 0.000137117458507419
+18 0.000144736797665246
+19 0.000118303301860578
+20 0.000114630056486931
+21 0.000110498476715293
+22 9.90071566775441e-05
+23 0.000117851726827212
+24 0.000152204636833631
+25 9.22089020605199e-05
+26 0.000104259655927308
+27 0.000156493959366344
+28 0.000124824626254849
+29 0.000152169421198778
+30 0.000121113924251404
+31 0.000118724899948575
+32 0.000137702008942142
+33 0.000121568467875477
+34 0.000128235420561396
+35 0.000123862089822069
+36 0.000111735040263738
+37 0.000164552955538966
+38 0.000116487921332009
+39 0.000129310166812502
+40 0.000119461285066791
+41 0.000127280247397721
+42 0.000130348766106181
+43 0.000130073560285382
+44 0.000127099105156958
+45 0.000108617881778628
+46 0.000102515790786128
+47 0.000114495531306602
+48 0.000113957074063364
+49 0.000121251410746481
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_UWF/Scenario = 6, Layers = 160, Epochs = 50, LR = 0.0070126007247308005, Learning_Process.pdf b/models_UWF/Scenario = 6, Layers = 160, Epochs = 50, LR = 0.0070126007247308005, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..37e72f68a60930c66632b1f8d2b0a9be0e29adf5
Binary files /dev/null and b/models_UWF/Scenario = 6, Layers = 160, Epochs = 50, LR = 0.0070126007247308005, Learning_Process.pdf differ
diff --git a/models_UWF/Scenario = 6, Layers = 160, Epochs = 50, LR = 0.0070126007247308005, Learning_Process.tex b/models_UWF/Scenario = 6, Layers = 160, Epochs = 50, LR = 0.0070126007247308005, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..eac6f5ce9967d8174bcb06d10b4f228119644f48
--- /dev/null
+++ b/models_UWF/Scenario = 6, Layers = 160, Epochs = 50, LR = 0.0070126007247308005, Learning_Process.tex	
@@ -0,0 +1,259 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=7.59394135848273e-08, ymax=0.0264512025763427,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00013286541798152
+1 3.70765483239666e-05
+2 8.05461695563281e-06
+3 6.78973901813151e-06
+4 2.23034885493689e-06
+5 1.76283356267959e-06
+6 1.51324013586418e-06
+7 1.33050514250499e-06
+8 1.1492849125716e-06
+9 9.9932151442772e-07
+10 9.10509641016688e-07
+11 1.62413448379084e-06
+12 1.34920378513925e-06
+13 1.04792172805901e-06
+14 9.34656441131665e-07
+15 1.16751664336334e-06
+16 7.57532802708738e-07
+17 7.02211877978698e-07
+18 6.86319594933593e-07
+19 6.11250527526863e-07
+20 6.03856904035638e-07
+21 5.67802260320605e-07
+22 5.3776136610395e-07
+23 5.18462911713868e-07
+24 5.12722351686534e-07
+25 4.82707264382043e-07
+26 5.08425102907495e-07
+27 4.55406677701831e-07
+28 4.51413200153183e-07
+29 4.14779464108506e-07
+30 4.53233354846816e-07
+31 4.00655977728093e-07
+32 0.0113710667937994
+33 3.77870151169191e-07
+34 3.87729983231111e-07
+35 4.24419397404563e-07
+36 3.43465956120781e-07
+37 3.4106687962776e-07
+38 3.52069207565364e-07
+39 3.30839100115554e-07
+40 3.15984294729788e-07
+41 3.73653080032454e-07
+42 3.11746163106363e-07
+43 3.04922451732637e-07
+44 3.08899728906908e-07
+45 2.69242409558501e-05
+46 2.79523959534345e-07
+47 2.84152378071667e-07
+48 2.80640875871541e-07
+49 2.63035985881288e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000121160388516728
+1 2.77348626696039e-05
+2 8.5695528468932e-06
+3 4.3676259338099e-06
+4 2.80372773886484e-06
+5 1.68581937032286e-06
+6 1.76123398887285e-06
+7 8.95476489404246e-07
+8 1.26247994103323e-06
+9 8.52682774166169e-07
+10 6.46304386009433e-07
+11 1.30853425162059e-06
+12 2.32088177654077e-06
+13 7.06630430613586e-07
+14 7.32481282739172e-07
+15 7.59342754008685e-07
+16 6.84374015236244e-07
+17 5.43869646207895e-07
+18 5.80312814690842e-07
+19 6.50385800327058e-07
+20 3.37005531036993e-07
+21 4.96335189836827e-07
+22 5.16866350608325e-07
+23 4.1155234953294e-07
+24 4.08495282044896e-07
+25 3.63543222192675e-07
+26 3.03229427345286e-07
+27 3.32883558940011e-07
+28 3.17574290420453e-07
+29 3.79500193048443e-07
+30 2.2644694297469e-07
+31 3.35025561071234e-07
+32 2.3168023233211e-07
+33 2.36183367974263e-07
+34 2.26452854690251e-07
+35 2.49735251145466e-07
+36 2.6197704983133e-07
+37 2.56212217664142e-07
+38 2.022077296715e-07
+39 2.42130028027532e-07
+40 2.4078886440293e-07
+41 2.29846818911028e-07
+42 1.82839855256134e-07
+43 2.65397687826407e-07
+44 1.35636113895998e-07
+45 2.09336235457158e-07
+46 1.96499584603771e-07
+47 2.03938824938632e-07
+48 1.75854140138654e-07
+49 2.37610819908696e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00944742746651173
+1 0.000156234949827194
+2 0.000140548756462522
+3 0.00012726552085951
+4 0.00012241151125636
+5 0.00225916621275246
+6 0.0146414218470454
+7 0.000124319005408324
+8 0.00013191974721849
+9 0.0148093951866031
+10 0.00202467874623835
+11 0.000233404411119409
+12 0.000145577971125022
+13 0.0144600383937359
+14 0.000280312669929117
+15 0.000131394015625119
+16 0.0126727959141135
+17 0.0001244974846486
+18 0.00409160973504186
+19 0.000152803841046989
+20 0.000140071162604727
+21 0.000130962769617327
+22 0.000123739329865202
+23 0.000147271130117588
+24 0.0103310961276293
+25 0.00931710936129093
+26 0.00948541983962059
+27 0.000179858165211044
+28 0.00121728959493339
+29 0.000125761682284065
+30 0.00015631175483577
+31 0.000149644009070471
+32 0.000125389895401895
+33 0.000153196291648783
+34 0.000125517282867804
+35 0.0148006491363049
+36 0.000143245822982863
+37 0.000365459942258894
+38 0.000122632962302305
+39 0.000123053643619642
+40 0.000130004031234421
+41 0.0104552991688251
+42 0.0146470181643963
+43 0.000218619592487812
+44 0.000124823869555257
+45 0.000134284811792895
+46 0.0001540744851809
+47 0.0137306610122323
+48 0.000206302109290846
+49 0.000134744492243044
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000166520170751028
+1 0.000138130882987753
+2 0.000149913932546042
+3 0.00014495852519758
+4 0.000164851953741163
+5 0.000154837587615475
+6 0.00015583228378091
+7 0.000154768378706649
+8 0.000134721965878271
+9 0.000150986190419644
+10 0.000133302746689878
+11 0.000162301861564629
+12 0.000123446559882723
+13 0.000124488986330107
+14 0.000129434425616637
+15 0.000247218122240156
+16 0.000154337234562263
+17 0.000198744921362959
+18 0.000143918805406429
+19 0.000152711436385289
+20 0.00012864415475633
+21 0.000128796033095568
+22 0.000143207915243693
+23 0.000139095238409936
+24 0.000136943781399168
+25 0.000170647152117454
+26 0.000141910844831727
+27 0.000127152350614779
+28 0.000145901431096718
+29 0.000145339072332717
+30 0.000135290014441125
+31 0.000241792600718327
+32 0.000354455056367442
+33 0.000137481300043873
+34 0.000207739372854121
+35 0.000137032533530146
+36 0.00014866421406623
+37 0.000221144175156951
+38 0.000171970677911304
+39 0.000155432571773417
+40 0.000138801595312543
+41 0.000134303074446507
+42 0.000129103937069885
+43 0.000124927784781903
+44 0.000152069376781583
+45 0.00013242983550299
+46 0.00013513355224859
+47 0.000172197658685036
+48 0.000127731385873631
+49 0.000123995749163441
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.0056784860186114006, Learning_Process.pdf b/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.0056784860186114006, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..2a2a5512810ac2bf5220ee68dc6458a4ed418d4b
Binary files /dev/null and b/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.0056784860186114006, Learning_Process.pdf differ
diff --git a/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.0056784860186114006, Learning_Process.tex b/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.0056784860186114006, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..e2d7230b7dafe51a59e0d6820217fc51151c470a
--- /dev/null
+++ b/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.0056784860186114006, Learning_Process.tex	
@@ -0,0 +1,266 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.03,0.97)},
+  anchor=north west,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=4.26988716858743e-08, ymax=0.0284567933021984,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 8.51253280416131e-05
+1 2.73900059255539e-05
+2 3.42910516337724e-06
+3 1.59047624492814e-06
+4 1.08908261609031e-06
+5 8.2882098695336e-07
+6 7.0523759632124e-07
+7 5.88244290611328e-07
+8 5.25635812209657e-07
+9 4.8725462420407e-07
+10 4.50976642696332e-07
+11 3.96580276174063e-07
+12 4.27716457807037e-07
+13 3.96212357145487e-07
+14 3.40500832862745e-07
+15 3.25942181689243e-07
+16 2.97797669190913e-07
+17 2.68744003051324e-07
+18 2.73906209713459e-07
+19 2.64319368170618e-07
+20 2.72561692327145e-07
+21 2.43752339201819e-07
+22 2.92420594405485e-07
+23 2.19759954234178e-07
+24 2.186788066183e-07
+25 2.13039228924572e-07
+26 2.04647079726783e-07
+27 1.9789604266407e-07
+28 1.98343656165889e-07
+29 2.19375522192422e-07
+30 1.85800146823567e-07
+31 1.79900851549064e-07
+32 1.7994544521116e-07
+33 1.72581479773726e-07
+34 1.76388653017057e-07
+35 1.69391910276318e-07
+36 1.55388093503461e-07
+37 1.56361792846837e-07
+38 1.56520471250587e-07
+39 1.44523568224031e-07
+40 1.91302675034422e-07
+41 1.86074089469912e-07
+42 1.6225759225108e-07
+43 1.6342873720987e-07
+44 1.57981759230097e-07
+45 1.44232828347413e-07
+46 1.45731178236019e-07
+47 1.38128555704498e-07
+48 1.33101508481559e-07
+49 1.25434667097579e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000100649267551489
+1 4.72032588731963e-05
+2 4.32122078564134e-06
+3 1.89379386483779e-06
+4 8.22796209831722e-07
+5 8.45074737299001e-07
+6 6.8502339445331e-07
+7 5.11114535584056e-07
+8 5.45018792763585e-07
+9 3.75834105170725e-07
+10 4.47564815431178e-07
+11 2.92268879320545e-07
+12 3.93833317957615e-07
+13 3.06639634573003e-07
+14 2.96891812467948e-07
+15 1.95179794104661e-07
+16 2.39914498934013e-07
+17 1.96454678302871e-07
+18 2.1642964043167e-07
+19 1.80976670094424e-07
+20 1.36586876919864e-07
+21 1.39044425395696e-06
+22 1.67960010344359e-07
+23 1.59197327320726e-07
+24 1.39981835900471e-07
+25 1.50627798234382e-07
+26 1.81603041937706e-07
+27 1.4000582382323e-07
+28 1.22010902714464e-07
+29 1.34835246967668e-07
+30 1.22385742429287e-07
+31 1.37499441166256e-07
+32 1.17746246530714e-07
+33 1.97531974777121e-07
+34 1.09243750046062e-07
+35 1.03246499350007e-07
+36 1.18436325635685e-07
+37 9.59039070380641e-08
+38 1.21164745792157e-07
+39 1.23496917581178e-07
+40 2.29895292136462e-07
+41 1.46563820635492e-07
+42 1.7279107566992e-07
+43 8.69547847059948e-08
+44 1.42480814702139e-07
+45 7.85476501619087e-08
+46 1.52829869648485e-07
+47 7.95140309151066e-08
+48 1.01114473238795e-07
+49 1.19549937949159e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000164352895808406
+1 8.40228967717849e-05
+2 9.25387721508741e-05
+3 8.77241109265015e-05
+4 8.86283232830465e-05
+5 8.91584131750278e-05
+6 8.72741875355132e-05
+7 8.49911230034195e-05
+8 8.82842505234294e-05
+9 8.95370321813971e-05
+10 8.9609129645396e-05
+11 8.73971366672777e-05
+12 8.74344623298384e-05
+13 0.000227765893214382
+14 8.79671060829423e-05
+15 8.83957400219515e-05
+16 9.91252454696223e-05
+17 9.81687699095346e-05
+18 8.90044902916998e-05
+19 0.000595852907281369
+20 8.732177229831e-05
+21 8.62657761899754e-05
+22 9.99042604235001e-05
+23 8.71340453159064e-05
+24 8.78633509273641e-05
+25 9.42769183893688e-05
+26 8.82066597114317e-05
+27 8.84057590155862e-05
+28 8.8195942225866e-05
+29 0.0154692465439439
+30 8.94680197234266e-05
+31 8.99230362847447e-05
+32 8.5774707258679e-05
+33 9.22251638257876e-05
+34 8.5896099335514e-05
+35 0.000106953957583755
+36 0.000112747104139999
+37 8.79131694091484e-05
+38 9.10582020878792e-05
+39 0.0128637691959739
+40 9.07372086658143e-05
+41 8.52467928780243e-05
+42 8.9711946202442e-05
+43 8.83577376953326e-05
+44 8.61280568642542e-05
+45 0.000106507213786244
+46 8.82751628523692e-05
+47 9.09565278561786e-05
+48 8.52920056786388e-05
+49 8.74747202033177e-05
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 7.46369260014035e-05
+1 0.00010455275332788
+2 0.000100135337561369
+3 9.79967662715353e-05
+4 0.000104579979961272
+5 0.000100541008578148
+6 9.89262116490863e-05
+7 0.000101867066405248
+8 9.98502364382148e-05
+9 0.000100672688859049
+10 8.4565079305321e-05
+11 9.2545866209548e-05
+12 0.000105951679870486
+13 7.95682644820772e-05
+14 0.00011361128417775
+15 0.000116608796815854
+16 8.7789107055869e-05
+17 8.36967374198139e-05
+18 0.000108252817881294
+19 7.85116935730912e-05
+20 9.25322892726399e-05
+21 7.86801174399443e-05
+22 0.000103542326542083
+23 0.000100310870038811
+24 9.18635414564051e-05
+25 8.66790433065034e-05
+26 0.000108832427940797
+27 0.000100995413959026
+28 7.71911581978202e-05
+29 7.75824810261838e-05
+30 7.49739119783044e-05
+31 8.98842336027883e-05
+32 0.000110967099317349
+33 0.000108993743197061
+34 0.000118205694889184
+35 9.48676388361491e-05
+36 9.14489719434641e-05
+37 9.1575100668706e-05
+38 8.4145474829711e-05
+39 9.66241204878315e-05
+40 8.60297586768866e-05
+41 0.000109545027953573
+42 9.85172955552116e-05
+43 0.000106390776636545
+44 0.000100692690466531
+45 0.000100618017313536
+46 8.37214683997445e-05
+47 8.01493224571459e-05
+48 8.03343573352322e-05
+49 0.000117190938908607
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.0061277133082689, Learning_Process.pdf b/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.0061277133082689, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..4705d4223567876a844ff9fddd5632a1d34564e4
Binary files /dev/null and b/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.0061277133082689, Learning_Process.pdf differ
diff --git a/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.0061277133082689, Learning_Process.tex b/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.0061277133082689, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..ed11a521ebab63cf9194189b0cf00bb53e07e67d
--- /dev/null
+++ b/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.0061277133082689, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.97,0.03)},
+  anchor=south east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+unbounded coords=jump,
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=8.13006668693971e-07, ymax=0.000237777722754591,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 9.80455733952112e-05
+1 2.71857406914933e-05
+2 4.31210492024547e-06
+3 1.87641774118674e-06
+4 1.43430440857628e-06
+5 nan
+6 nan
+7 nan
+8 nan
+9 nan
+10 nan
+11 nan
+12 nan
+13 nan
+14 nan
+15 nan
+16 nan
+17 nan
+18 nan
+19 nan
+20 nan
+21 nan
+22 nan
+23 nan
+24 nan
+25 nan
+26 nan
+27 nan
+28 nan
+29 nan
+30 nan
+31 nan
+32 nan
+33 nan
+34 nan
+35 nan
+36 nan
+37 nan
+38 nan
+39 nan
+40 nan
+41 nan
+42 nan
+43 nan
+44 nan
+45 nan
+46 nan
+47 nan
+48 nan
+49 nan
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000111385183117818
+1 1.955916195584e-05
+2 7.29886960471049e-06
+3 1.81891698503023e-06
+4 1.05241861092509e-06
+5 nan
+6 nan
+7 nan
+8 nan
+9 nan
+10 nan
+11 nan
+12 nan
+13 nan
+14 nan
+15 nan
+16 nan
+17 nan
+18 nan
+19 nan
+20 nan
+21 nan
+22 nan
+23 nan
+24 nan
+25 nan
+26 nan
+27 nan
+28 nan
+29 nan
+30 nan
+31 nan
+32 nan
+33 nan
+34 nan
+35 nan
+36 nan
+37 nan
+38 nan
+39 nan
+40 nan
+41 nan
+42 nan
+43 nan
+44 nan
+45 nan
+46 nan
+47 nan
+48 nan
+49 nan
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 9.72996713244356e-05
+1 9.71058689174242e-05
+2 9.01204839465208e-05
+3 9.34492854867131e-05
+4 9.6844756626524e-05
+5 9.11265960894525e-05
+6 0.000120885320939124
+7 0.0001026355457725
+8 0.000100469733297359
+9 9.52660120674409e-05
+10 9.17321085580625e-05
+11 9.59424505708739e-05
+12 9.9591190519277e-05
+13 0.000110014632809907
+14 9.61705009103753e-05
+15 0.000101516649010591
+16 0.000101885656476952
+17 0.0001489757996751
+18 0.00010007266246248
+19 9.50596950133331e-05
+20 9.89327818388119e-05
+21 9.65222643571906e-05
+22 0.000104710263258312
+23 9.79312171693891e-05
+24 9.43101986194961e-05
+25 9.83751815510914e-05
+26 9.59848985075951e-05
+27 9.97899769572541e-05
+28 0.000146185091580264
+29 0.00010209243191639
+30 0.00011915183858946
+31 9.33761839405634e-05
+32 0.000107489053334575
+33 9.58935415837914e-05
+34 9.36775395530276e-05
+35 9.23064799280837e-05
+36 9.84959915513173e-05
+37 0.000101729652669746
+38 0.000105079532659147
+39 0.000108404441562016
+40 0.000106625964690465
+41 9.4411960162688e-05
+42 0.000129720006952994
+43 0.000101626719697379
+44 9.70531764323823e-05
+45 9.7806507255882e-05
+46 0.000100105287856422
+47 9.5927098300308e-05
+48 9.33078481466509e-05
+49 9.7537187684793e-05
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000110904096800368
+1 9.66993466136046e-05
+2 0.000165011500939727
+3 0.000129775100504048
+4 9.82341007329524e-05
+5 0.00013625573774334
+6 0.000109435175545514
+7 0.000110695291368756
+8 0.000183686293894425
+9 0.000106705469079316
+10 0.000137754832394421
+11 0.000104563972854521
+12 9.36636934056878e-05
+13 8.93285032361746e-05
+14 0.000156964102643542
+15 8.99194128578529e-05
+16 8.46457332954742e-05
+17 0.000109450731542893
+18 9.26251013879664e-05
+19 0.000121383382065687
+20 9.1132300440222e-05
+21 9.18848818400875e-05
+22 0.000101657504274044
+23 0.000127120554680005
+24 0.000128201776533388
+25 0.000116908980999142
+26 0.000108097679913044
+27 0.000105481180071365
+28 9.5253657491412e-05
+29 8.36640392662957e-05
+30 0.000116324743430596
+31 0.000132718661916442
+32 0.000105515508039389
+33 0.000103266516816802
+34 0.000115466515126172
+35 0.000130957923829556
+36 9.0358778834343e-05
+37 0.000102757665445097
+38 9.28991503315046e-05
+39 8.87796995812096e-05
+40 0.000115687864308711
+41 0.000115578273835126
+42 0.000120564051030669
+43 9.7124335297849e-05
+44 8.84913388290443e-05
+45 9.36810247367248e-05
+46 0.000127710969536565
+47 9.47447188082151e-05
+48 0.000126901228213683
+49 9.84983271337114e-05
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.0063499566502621205, Learning_Process.pdf b/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.0063499566502621205, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..e0861a1552cbef141e4aa477050923a74ff12f5c
Binary files /dev/null and b/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.0063499566502621205, Learning_Process.pdf differ
diff --git a/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.0063499566502621205, Learning_Process.tex b/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.0063499566502621205, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..d546b76ad9c0b6934fa685fe58c73cafe88b8b34
--- /dev/null
+++ b/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.0063499566502621205, Learning_Process.tex	
@@ -0,0 +1,266 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.97,0.03)},
+  anchor=south east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+unbounded coords=jump,
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=7.38654598901851e-07, ymax=0.0782019390970505,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000156470778165385
+1 2.44207640207605e-05
+2 3.68092969438294e-06
+3 1.97022836800897e-06
+4 1.27228065593954e-06
+5 nan
+6 nan
+7 nan
+8 nan
+9 nan
+10 nan
+11 nan
+12 nan
+13 nan
+14 nan
+15 nan
+16 nan
+17 nan
+18 nan
+19 nan
+20 nan
+21 nan
+22 nan
+23 nan
+24 nan
+25 nan
+26 nan
+27 nan
+28 nan
+29 nan
+30 nan
+31 nan
+32 nan
+33 nan
+34 nan
+35 nan
+36 nan
+37 nan
+38 nan
+39 nan
+40 nan
+41 nan
+42 nan
+43 nan
+44 nan
+45 nan
+46 nan
+47 nan
+48 nan
+49 nan
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000157499773195013
+1 3.29107970173936e-05
+2 7.28775512470747e-06
+3 1.72492980254901e-06
+4 1.2497994248406e-06
+5 nan
+6 nan
+7 nan
+8 nan
+9 nan
+10 nan
+11 nan
+12 nan
+13 nan
+14 nan
+15 nan
+16 nan
+17 nan
+18 nan
+19 nan
+20 nan
+21 nan
+22 nan
+23 nan
+24 nan
+25 nan
+26 nan
+27 nan
+28 nan
+29 nan
+30 nan
+31 nan
+32 nan
+33 nan
+34 nan
+35 nan
+36 nan
+37 nan
+38 nan
+39 nan
+40 nan
+41 nan
+42 nan
+43 nan
+44 nan
+45 nan
+46 nan
+47 nan
+48 nan
+49 nan
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000129685271531343
+1 0.000141486700158566
+2 0.000173594147781841
+3 0.000127745341160335
+4 0.000123597536003217
+5 0.000132838089484721
+6 0.00012442676234059
+7 0.000122205645311624
+8 0.000125563587062061
+9 0.0030697847250849
+10 0.000125795413623564
+11 0.000127772495034151
+12 0.00012827487080358
+13 0.000120132790470961
+14 0.000121715980640147
+15 0.000123105550301261
+16 0.000128137762658298
+17 0.00012493904796429
+18 0.000125044360174797
+19 0.000125024351291358
+20 0.000125835969811305
+21 0.000529615441337228
+22 0.000125735503388569
+23 0.000128013503854163
+24 0.000124813639558852
+25 0.000123927486129105
+26 0.00625578500330448
+27 0.000122598328744061
+28 0.000137099690618925
+29 0.000118482821562793
+30 0.00012872600927949
+31 0.000124732425319962
+32 0.000126786952023394
+33 0.000123690362670459
+34 0.000123123027151451
+35 0.000123629331937991
+36 0.00017384767124895
+37 0.000122188619570807
+38 0.000124295635032468
+39 0.000123772042570636
+40 0.000122925688629039
+41 0.000123707810416818
+42 0.000126516315503977
+43 0.000148226929013617
+44 0.000117207382572815
+45 0.00013266499445308
+46 0.000124576399684884
+47 0.000119014628580771
+48 0.000179307098733261
+49 0.000126986997202039
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000129579901113175
+1 0.000143573750392534
+2 0.000150112304254435
+3 0.000113076814159285
+4 0.000119856384117156
+5 0.000116789502499159
+6 0.0462187938392162
+7 0.000164456534548663
+8 0.000159653325681575
+9 0.000138454721309245
+10 0.000142089600558393
+11 0.000130599713884294
+12 0.000118587238830514
+13 0.000214470230275765
+14 0.000144130186527036
+15 0.000154500143253244
+16 0.000128906787722372
+17 0.000136867660330608
+18 0.000171096646226943
+19 0.000113060828880407
+20 0.000135115682496689
+21 0.000166461148182862
+22 0.000147976257721893
+23 0.000146818681969307
+24 0.000123680685646832
+25 0.000131072592921555
+26 0.00017418249626644
+27 0.000127901716041379
+28 0.000118369775009342
+29 0.000188989011803642
+30 0.000110228953417391
+31 0.000110287292045541
+32 0.000206908327527344
+33 0.000137600509333424
+34 0.000127016028272919
+35 0.000131956883706152
+36 0.000140591466333717
+37 0.00014231943350751
+38 0.000146434831549414
+39 0.000131968132336624
+40 0.000154048539116047
+41 0.00014802512305323
+42 0.000133749621454626
+43 0.000119291122246068
+44 0.000169849707162939
+45 0.000142343793413602
+46 0.000135806039907038
+47 0.000172581334481947
+48 0.000116271759907249
+49 0.000161006610142067
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.007662120211347782, Learning_Process.pdf b/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.007662120211347782, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..7e9392ce88c8beaedce2d7ca9cdd7ae2c62ccf4b
Binary files /dev/null and b/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.007662120211347782, Learning_Process.pdf differ
diff --git a/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.007662120211347782, Learning_Process.tex b/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.007662120211347782, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..615ccc522d91c7142633abd2e82307820940e650
--- /dev/null
+++ b/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.007662120211347782, Learning_Process.tex	
@@ -0,0 +1,263 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.97,0.03)},
+  anchor=south east,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+unbounded coords=jump,
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.94761684493466e-06, ymax=0.000331831538606447,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000103870530438144
+1 2.21878581214696e-05
+2 2.70156442638836e-06
+3 1.76442717929604e-05
+4 nan
+5 nan
+6 nan
+7 nan
+8 nan
+9 nan
+10 nan
+11 nan
+12 nan
+13 nan
+14 nan
+15 nan
+16 nan
+17 nan
+18 nan
+19 nan
+20 nan
+21 nan
+22 nan
+23 nan
+24 nan
+25 nan
+26 nan
+27 nan
+28 nan
+29 nan
+30 nan
+31 nan
+32 nan
+33 nan
+34 nan
+35 nan
+36 nan
+37 nan
+38 nan
+39 nan
+40 nan
+41 nan
+42 nan
+43 nan
+44 nan
+45 nan
+46 nan
+47 nan
+48 nan
+49 nan
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.00015596165030729
+1 2.43650247284677e-05
+2 2.46127524405892e-06
+3 2.4599792141089e-06
+4 nan
+5 nan
+6 nan
+7 nan
+8 nan
+9 nan
+10 nan
+11 nan
+12 nan
+13 nan
+14 nan
+15 nan
+16 nan
+17 nan
+18 nan
+19 nan
+20 nan
+21 nan
+22 nan
+23 nan
+24 nan
+25 nan
+26 nan
+27 nan
+28 nan
+29 nan
+30 nan
+31 nan
+32 nan
+33 nan
+34 nan
+35 nan
+36 nan
+37 nan
+38 nan
+39 nan
+40 nan
+41 nan
+42 nan
+43 nan
+44 nan
+45 nan
+46 nan
+47 nan
+48 nan
+49 nan
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00010380802268628
+1 0.000109118249383755
+2 0.000104401355201844
+3 0.00010708407353377
+4 0.000109905246063136
+5 0.000101951613032725
+6 0.000106780193164013
+7 0.000104318860394415
+8 0.000104463040770497
+9 0.000103110367490444
+10 0.000108428022940643
+11 0.000109880231320858
+12 0.000106427345599514
+13 0.000104276659840252
+14 0.000105096274637617
+15 0.000126411585370079
+16 0.000112153356894851
+17 0.000105193532363046
+18 0.000102951496955939
+19 0.000137903436552733
+20 0.000104388658655807
+21 0.00010537094931351
+22 0.000107632411527447
+23 0.000104899758298416
+24 0.000103368052805308
+25 0.000101660538348369
+26 0.00010539336653892
+27 0.000109734202851541
+28 0.000104829385236371
+29 0.000106401239463594
+30 0.000107347696030047
+31 0.000103072226920631
+32 0.000103045174910221
+33 0.000112482041004114
+34 0.000103207305073738
+35 0.000102530691947322
+36 0.000111353481770493
+37 0.00010312745871488
+38 0.000106044259155169
+39 0.000107545856735669
+40 0.000105316867120564
+41 0.000103063059214037
+42 0.000112319561594632
+43 0.000106030209281016
+44 0.000121059623779729
+45 0.000104418308183085
+46 0.000109686952782795
+47 0.000109915250504855
+48 0.000107212530565448
+49 0.000103101127024274
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000107358049717732
+1 0.00012588786194101
+2 0.000126281753182411
+3 0.000113854359369725
+4 7.99557456048205e-05
+5 0.000135110225528479
+6 0.000118271054816432
+7 0.000114452224806882
+8 0.000101813442597631
+9 0.000115864466351923
+10 0.00011586066102609
+11 0.000120531323773321
+12 0.000118329618999269
+13 0.00011546505993465
+14 0.000112974274088629
+15 0.000115145252493676
+16 0.000129796491819434
+17 0.000138653384055942
+18 0.000148324048495851
+19 0.000120009201054927
+20 9.66191219049506e-05
+21 0.000100951467175037
+22 0.000103953781945165
+23 0.000118394127639476
+24 0.000111799126898404
+25 0.000137651964905672
+26 9.44153507589363e-05
+27 0.000139786439831369
+28 0.000262717949226499
+29 0.000102898971817922
+30 0.000110306536953431
+31 0.000132548841065727
+32 0.000130283835460432
+33 0.000100744189694524
+34 0.000123000092571601
+35 0.000124376354506239
+36 0.000122487530461513
+37 0.000123377409181558
+38 0.000123965612147003
+39 0.000123051446280442
+40 0.000104084356280509
+41 0.00010513167217141
+42 7.64430587878451e-05
+43 0.000120010976388585
+44 0.000113616304588504
+45 0.000105119244835805
+46 9.46459622355178e-05
+47 0.000115740862383973
+48 0.000143255922012031
+49 0.000165633216965944
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.007910184934850274, Learning_Process.pdf b/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.007910184934850274, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..8e6156f9f40cf6824c01a074131c3c0b6f491544
Binary files /dev/null and b/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.007910184934850274, Learning_Process.pdf differ
diff --git a/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.007910184934850274, Learning_Process.tex b/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.007910184934850274, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..a2eb3388e115e41ed374dcc93bf0f2488f75fd6b
--- /dev/null
+++ b/models_UWF/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.007910184934850274, Learning_Process.tex	
@@ -0,0 +1,266 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.5,0.91)},
+  anchor=north,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=4.47413527347536e-08, ymax=0.0254804240940598,
+ymode=log,
+ytick style={color=black},
+ytick={1e-09,1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-9}}\),
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000117979492642917
+1 2.28236076509347e-05
+2 2.26048450713279e-06
+3 1.1707512612702e-06
+4 8.48019453769666e-07
+5 7.05078150531335e-07
+6 6.13298709595256e-07
+7 5.59182069537201e-07
+8 4.67484198907187e-07
+9 4.28826183451747e-07
+10 3.99988095978188e-07
+11 3.8553054082513e-07
+12 3.59736930022336e-07
+13 3.52918647195111e-07
+14 3.0192691724551e-07
+15 2.90156634719096e-07
+16 2.7620049536381e-07
+17 2.50387159894672e-07
+18 2.4739983928157e-07
+19 2.29991044875533e-07
+20 2.31030753639061e-07
+21 2.26016837245879e-07
+22 2.23137050170408e-07
+23 2.18269178731134e-07
+24 2.05015126653052e-07
+25 2.12772505392422e-07
+26 1.98724038114051e-07
+27 1.87685515129488e-07
+28 1.80950607386876e-07
+29 1.69402724736756e-07
+30 1.64907419275551e-07
+31 1.66395096812266e-07
+32 1.82866912723512e-07
+33 1.55573331994674e-07
+34 1.53285498072364e-07
+35 1.53950082903975e-07
+36 1.48722577364424e-07
+37 1.43402075991617e-07
+38 1.47096955060988e-07
+39 1.44035041671486e-07
+40 1.38118480208504e-07
+41 1.31531024294418e-07
+42 1.39404491505957e-07
+43 1.38189662379773e-07
+44 1.29861746245297e-07
+45 1.2825658757265e-07
+46 1.31449652940319e-07
+47 1.28108055719167e-07
+48 1.22967520610473e-07
+49 1.26119161336646e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 9.41416656132787e-05
+1 2.23745428229449e-05
+2 3.98891961594927e-06
+3 1.54294866661076e-06
+4 1.05115157111868e-06
+5 1.08801066289743e-06
+6 5.03954140640417e-07
+7 4.08034708243576e-07
+8 4.60490554132775e-07
+9 5.22656307566649e-07
+10 3.54060432528058e-07
+11 2.48784743916985e-07
+12 3.2539992389502e-07
+13 5.33126637947134e-07
+14 2.55947924188149e-07
+15 9.33516389522993e-07
+16 2.30092794595294e-07
+17 3.21751230103473e-07
+18 1.78847770371249e-07
+19 3.02443936561758e-07
+20 2.50659326184177e-07
+21 2.08831679060495e-07
+22 1.7522086181998e-07
+23 1.41291209843075e-07
+24 1.90105652109196e-07
+25 1.53372241129546e-07
+26 1.52811097109407e-07
+27 1.62569065764728e-07
+28 1.34951619656931e-07
+29 1.39746163085874e-07
+30 2.2409521704958e-07
+31 1.57048063442744e-07
+32 1.26111672216211e-07
+33 2.09546712426345e-07
+34 1.32637254068868e-07
+35 1.0777510084381e-07
+36 1.58385958570761e-07
+37 1.52842332568071e-07
+38 1.3091569428525e-07
+39 1.2168726470918e-07
+40 1.66405271784242e-07
+41 1.47074501910538e-07
+42 9.91972726183121e-08
+43 1.03715194654797e-07
+44 1.06783147657552e-07
+45 8.94476599455629e-08
+46 8.17189231838711e-08
+47 9.37336750439499e-08
+48 9.85776793527293e-08
+49 1.22047126183134e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000133849956910126
+1 0.0011209303047508
+2 0.000232943624723703
+3 0.000104100101452786
+4 0.00010430566908326
+5 0.000158492039190605
+6 0.00010248864418827
+7 0.000100441131507978
+8 0.000126388971693814
+9 0.000102081670775078
+10 0.000112560766865499
+11 0.000107686697447207
+12 0.00010449301043991
+13 0.000453788990853354
+14 0.000122933488455601
+15 0.000120911427075043
+16 0.000233177241170779
+17 0.000109603330201935
+18 0.000152188731590286
+19 0.000113059300929308
+20 0.000104085236671381
+21 0.000124309284728952
+22 0.000118291420221794
+23 0.000107752370240632
+24 0.000118149633635767
+25 0.000108643005660269
+26 0.000103933169157244
+27 0.000116019560664427
+28 0.000124616693938151
+29 0.000110994231363293
+30 0.000119004980660975
+31 0.00010908386320807
+32 0.000111080647911876
+33 0.000156370660988614
+34 0.000186894918442704
+35 0.0139506077393889
+36 0.000243504269747064
+37 0.0130257038399577
+38 0.000104408711194992
+39 0.000107571053376887
+40 0.000118709867820144
+41 0.000128778658108786
+42 0.000105907543911599
+43 0.000290591735392809
+44 0.000215129170101136
+45 0.000147714526974596
+46 0.000112893045297824
+47 0.000115780938358512
+48 0.000118791249406058
+49 0.0116736795753241
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000179080612724647
+1 0.00299327238462865
+2 0.000206228840397671
+3 0.000132219545776024
+4 0.000137009876198135
+5 0.000128096959087998
+6 0.00011467873264337
+7 0.000159869872732088
+8 0.000113709618744906
+9 0.000143182565807365
+10 0.000115402719529811
+11 0.000111403525806963
+12 0.000123583828099072
+13 0.000116637165774591
+14 0.000147424972965382
+15 0.00011552150681382
+16 0.000126553917652927
+17 9.69011962297373e-05
+18 0.000106906358269043
+19 0.000114843969640788
+20 0.000134866029839031
+21 0.00011200453445781
+22 0.000124380021588877
+23 0.00078711798414588
+24 9.59064927883446e-05
+25 0.000105842249467969
+26 0.000153230081195943
+27 0.000126948463730514
+28 0.000261807785136625
+29 0.000120412456453778
+30 0.000131317880004644
+31 0.000156433539814316
+32 0.000136217509862036
+33 0.000102804391644895
+34 0.000125811158795841
+35 0.000118014555482659
+36 0.000116049326607026
+37 0.000138816525577568
+38 0.000117720330308657
+39 0.000113201676867902
+40 9.48622619034722e-05
+41 0.000110905872134026
+42 0.000116269176942296
+43 0.000144753197673708
+44 8.86310372152366e-05
+45 0.000153040266013704
+46 0.000145738158607855
+47 0.000110330736788455
+48 0.000112149995402433
+49 0.0001165396097349
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_UWF/without_hyper/Scenario = 0, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.pdf b/models_UWF/without_hyper/Scenario = 0, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..6bc27fb9c48dbdcc2f5712b4361da3491b591501
Binary files /dev/null and b/models_UWF/without_hyper/Scenario = 0, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.pdf differ
diff --git a/models_UWF/without_hyper/Scenario = 0, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.tex b/models_UWF/without_hyper/Scenario = 0, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..d18b0f0d26ebbbabd34e4ac77041ec407b35e572
--- /dev/null
+++ b/models_UWF/without_hyper/Scenario = 0, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.tex	
@@ -0,0 +1,257 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.13394664622616e-05, ymax=0.161938808815307,
+ymode=log,
+ytick style={color=black},
+ytick={1e-06,1e-05,0.0001,0.001,0.01,0.1,1,10},
+yticklabels={
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\),
+  \(\displaystyle {10^{1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000115964649012312
+1 0.000106160565337632
+2 7.4514202424325e-05
+3 5.52686251467094e-05
+4 6.47887063678354e-05
+5 4.38010902144015e-05
+6 3.23934727930464e-05
+7 2.78183033515234e-05
+8 3.57124663423747e-05
+9 3.53135837940499e-05
+10 3.40799015248194e-05
+11 3.13175551127642e-05
+12 3.11450057779439e-05
+13 3.30704897351097e-05
+14 3.04046770907007e-05
+15 2.96264006465208e-05
+16 5.87791255384218e-05
+17 5.6647138990229e-05
+18 0.0146533735096455
+19 2.88673472823575e-05
+20 2.93554567178944e-05
+21 2.82165401586099e-05
+22 2.787177436403e-05
+23 3.11427174892742e-05
+24 2.85501137113897e-05
+25 3.01203654089477e-05
+26 2.84152793028625e-05
+27 2.73057776212227e-05
+28 2.64660557149909e-05
+29 2.9429202186293e-05
+30 2.62424036918674e-05
+31 2.8169297365821e-05
+32 5.54843718418851e-05
+33 4.05666069127619e-05
+34 2.75754628091818e-05
+35 2.71147255261894e-05
+36 2.93161992885871e-05
+37 2.23202241613762e-05
+38 6.3687919464428e-05
+39 3.87190993933473e-05
+40 2.34123890550109e-05
+41 2.28933477046667e-05
+42 2.15512700378895e-05
+43 2.40790013776859e-05
+44 2.48580217885319e-05
+45 2.92275672109099e-05
+46 2.18897512240801e-05
+47 2.32488600886427e-05
+48 2.91028009087313e-05
+49 2.16724984056782e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000119965603516903
+1 0.000101332203485072
+2 6.76928320899606e-05
+3 6.92283501848578e-05
+4 6.13137017353438e-05
+5 3.69310146197677e-05
+6 4.69658516522031e-05
+7 3.3255073503824e-05
+8 2.56295552389929e-05
+9 2.45451210503234e-05
+10 4.22778066422325e-05
+11 2.65813923761016e-05
+12 2.23145234485855e-05
+13 8.61937660374679e-05
+14 3.43234569299966e-05
+15 2.67034629359841e-05
+16 2.29790675803088e-05
+17 2.527412470954e-05
+18 3.0333951144712e-05
+19 4.13999114243779e-05
+20 4.60761657450348e-05
+21 6.34397874819115e-05
+22 3.28440728480928e-05
+23 2.81884076684946e-05
+24 0.10483306646347
+25 3.2550346077187e-05
+26 6.62766105961055e-05
+27 3.55897900590207e-05
+28 3.84878294426017e-05
+29 3.16521618515253e-05
+30 4.70157174277119e-05
+31 2.27859763981542e-05
+32 2.39355322264601e-05
+33 3.09546412609052e-05
+34 2.7367514121579e-05
+35 3.2791547710076e-05
+36 0.000126061495393515
+37 3.74597329937387e-05
+38 2.36853138630977e-05
+39 3.31944938807283e-05
+40 2.21443497139262e-05
+41 4.30283471359871e-05
+42 2.20024030568311e-05
+43 2.08455585379852e-05
+44 3.03072501992574e-05
+45 2.1999707314535e-05
+46 2.23901915887836e-05
+47 2.24012856051559e-05
+48 1.75164168467745e-05
+49 3.0965751648182e-05
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00232795067131519
+1 0.000121869074064307
+2 0.000120698474347591
+3 0.000135069276439026
+4 0.0124339954927564
+5 0.000153945249621756
+6 0.000118231007945724
+7 0.000122039848065469
+8 0.000140186384669505
+9 0.00012726680142805
+10 0.000174994856934063
+11 0.000118236494017765
+12 0.000121040582598653
+13 0.000119276381155942
+14 0.000180863629793748
+15 0.00012022288137814
+16 0.000117313240480144
+17 0.00351618696004152
+18 0.000130253116367385
+19 0.00012056008563377
+20 0.000164105353178456
+21 0.0109988208860159
+22 0.000125871316413395
+23 0.000133313849801198
+24 0.000120252356282435
+25 0.000160284704179503
+26 0.000125728212879039
+27 0.000121358069009148
+28 0.000733525725081563
+29 0.000154539637151174
+30 0.000126869344967417
+31 0.000736654968932271
+32 0.000129571038996801
+33 0.000122085199109279
+34 0.000125906270113774
+35 0.000116696552140638
+36 0.000130216154502705
+37 0.000120131124276668
+38 0.000999922631308436
+39 0.000127725084894337
+40 0.000121914374176413
+41 0.000124539728858508
+42 0.000120200413221028
+43 0.000201997492695227
+44 0.000120335920655634
+45 0.000125129503430799
+46 0.000128802537801675
+47 0.000120474636787549
+48 0.00011976600944763
+49 0.00018517866556067
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000129062638734467
+1 0.000145741840242408
+2 0.000148645412991755
+3 0.000185903554665856
+4 9.62841222644784e-05
+5 0.00011643586185528
+6 0.000125509759527631
+7 0.000164188357302919
+8 0.000113728274300229
+9 0.000184246688149869
+10 0.000108123131212778
+11 0.000156331152538769
+12 0.000132504908833653
+13 0.00010812053369591
+14 0.000102231824712362
+15 0.000158902883413248
+16 0.000109439031803049
+17 0.000112151916255243
+18 0.000105350838566665
+19 0.000150613894220442
+20 0.000124783167848364
+21 0.000110051209048834
+22 0.000146668040542863
+23 0.00042110844515264
+24 0.000153782195411623
+25 0.000121453274914529
+26 0.000192303283256479
+27 0.000158814698806964
+28 0.000107618201582227
+29 0.00013192389451433
+30 0.000138851260999218
+31 0.000123196819913574
+32 0.000149802639498375
+33 0.000124568658065982
+34 8.8295120804105e-05
+35 0.000161883814143948
+36 0.000107056694105268
+37 0.000165244477102533
+38 0.000120437529403716
+39 0.000129807071061805
+40 0.000140801450470462
+41 0.000128936153487302
+42 0.000151907806866802
+43 0.000133040055516176
+44 0.000141951051773503
+45 0.000136660790303722
+46 0.000119454423838761
+47 0.000174097032868303
+48 0.000137830531457439
+49 0.000133577806991525
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_UWF/without_hyper/Scenario = 1, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.pdf b/models_UWF/without_hyper/Scenario = 1, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..827f1ede9097f25a93842777cfd77779c29f2f9d
Binary files /dev/null and b/models_UWF/without_hyper/Scenario = 1, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.pdf differ
diff --git a/models_UWF/without_hyper/Scenario = 1, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.tex b/models_UWF/without_hyper/Scenario = 1, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..a33a044402fa0e624355c8ef96561cbc5d4cc774
--- /dev/null
+++ b/models_UWF/without_hyper/Scenario = 1, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.03,0.97)},
+  anchor=north west,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.77265045649501e-06, ymax=0.0217257085799638,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000116249197162688
+1 0.000104777733213268
+2 6.16174802416936e-05
+3 5.35397994099185e-05
+4 4.22738339693751e-05
+5 4.02698206016794e-05
+6 3.1009447411634e-05
+7 3.72181639249902e-05
+8 2.38204429479083e-05
+9 2.01366219698684e-05
+10 1.8768372683553e-05
+11 2.01797083718702e-05
+12 1.48041463035042e-05
+13 1.4403810382646e-05
+14 0.00846845842897892
+15 1.27274661281263e-05
+16 4.39258001279086e-05
+17 1.06620564110926e-05
+18 1.03143329397426e-05
+19 1.32283394123078e-05
+20 8.70245912665268e-06
+21 7.9739720604266e-06
+22 7.91216280049412e-06
+23 7.81663038651459e-06
+24 7.15070973456022e-06
+25 7.19865693099564e-06
+26 6.38139272268745e-06
+27 6.38953406451037e-06
+28 7.23988569006906e-06
+29 0.01416249666363
+30 5.43188207302592e-06
+31 5.12640826855204e-06
+32 5.32065496372525e-06
+33 5.13297209181474e-06
+34 5.40986866326421e-06
+35 0.00397870503365993
+36 4.45748082711361e-06
+37 4.19193565903697e-06
+38 4.29415240432718e-06
+39 4.04746242566034e-06
+40 4.57452460977947e-06
+41 4.86139288113918e-06
+42 5.43156011190149e-06
+43 3.66582253263914e-06
+44 3.54837652594142e-06
+45 3.25559403790976e-06
+46 3.63603157893522e-06
+47 3.86781039196649e-06
+48 3.25598648487357e-06
+49 2.61864806816448e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000112263674964197
+1 8.04891242296435e-05
+2 8.31869256217033e-05
+3 5.98654623900075e-05
+4 4.89498270326294e-05
+5 3.72918257198762e-05
+6 3.3739663194865e-05
+7 2.4729093638598e-05
+8 2.31083031394519e-05
+9 2.10517519008135e-05
+10 1.91858325706562e-05
+11 2.23716870095814e-05
+12 2.35791285376763e-05
+13 1.72630680026487e-05
+14 1.55992747750133e-05
+15 1.44481573443045e-05
+16 1.11354383989237e-05
+17 1.27217863337137e-05
+18 1.25628239402431e-05
+19 1.01310497484519e-05
+20 9.15393957257038e-06
+21 1.09975608211244e-05
+22 1.18624620881747e-05
+23 6.98091344020213e-06
+24 6.74611374051892e-06
+25 7.77813875174616e-06
+26 7.35434741727659e-06
+27 0.000388607470085844
+28 7.51973493606783e-06
+29 6.748153737135e-06
+30 5.72535964238341e-06
+31 7.17473221811815e-06
+32 4.50263542006724e-06
+33 4.60407500213478e-06
+34 4.90940510644577e-06
+35 4.40480425822898e-06
+36 5.02696912008105e-06
+37 5.87127215112559e-06
+38 2.96681491818163e-06
+39 4.38676352132461e-06
+40 6.17989599049906e-06
+41 5.71354394196533e-06
+42 8.28803877084283e-06
+43 4.08831328968517e-06
+44 3.16428372570954e-06
+45 4.80631888422067e-06
+46 3.29530416820489e-06
+47 3.25893643093877e-06
+48 2.71930070994131e-06
+49 3.02756961900741e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000120269258331973
+1 0.000117629810119979
+2 0.000122440571431071
+3 0.000114334048703313
+4 0.000114169095468242
+5 0.000116113071271684
+6 0.000115084993012715
+7 0.000130586326122284
+8 0.000293938588583842
+9 0.000122917335829698
+10 0.00013070237764623
+11 0.000482346513308585
+12 0.000111455316073261
+13 0.000112260117020924
+14 0.000119041971629485
+15 0.000120722070278134
+16 0.00012233828601893
+17 0.000125074948300608
+18 0.000120170683658216
+19 0.00011924283899134
+20 0.000114032402052544
+21 0.000119969517982099
+22 0.000120646553114057
+23 0.000115742535854224
+24 0.000115109338366892
+25 0.00161717541050166
+26 0.00751296384260058
+27 0.000110919230792206
+28 0.00012136172153987
+29 0.000134457382955588
+30 0.000120748292829376
+31 0.000121317578305025
+32 0.000110163149656728
+33 0.00011455421190476
+34 0.000116186180093791
+35 0.000116979601443745
+36 0.000121848745038733
+37 0.000116133829578757
+38 0.000113216083263978
+39 0.000117256036901381
+40 0.000131090360810049
+41 0.000154755791299976
+42 0.000118435942567885
+43 0.000119846772577148
+44 0.000113804286229424
+45 0.000124071579193696
+46 0.000145310332300141
+47 0.000177828187588602
+48 0.000121933335321955
+49 0.000113341317046434
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000106313964352012
+1 0.000105647886812221
+2 0.000103366750408895
+3 0.000113759066152852
+4 0.000132218236103654
+5 0.000128917745314538
+6 9.70740729826503e-05
+7 0.000144520294270478
+8 0.00013117839989718
+9 0.000100422148534562
+10 0.000251530116656795
+11 0.000114149901492056
+12 0.000155831527081318
+13 0.000131669556139968
+14 0.000102509882708546
+15 0.000113139096356463
+16 0.000115782873763237
+17 0.000102498932392336
+18 0.000134782283566892
+19 0.000123556092148647
+20 0.000126511658891104
+21 0.000114194604975637
+22 0.000122136902064085
+23 0.000116400944534689
+24 0.000121366094390396
+25 7.6622687629424e-05
+26 0.000139483527163975
+27 0.000126818413264118
+28 0.000112633853859734
+29 0.000108447231468745
+30 0.000130197833641432
+31 0.000123179153888486
+32 0.000150192689034157
+33 0.000118637071864214
+34 0.000123824764159508
+35 8.92329844646156e-05
+36 0.000178371163201518
+37 0.000124380996567197
+38 0.000136194779770449
+39 0.000112504290882498
+40 0.000124128026072867
+41 0.000127703809994273
+42 9.60812903940678e-05
+43 0.000133860929054208
+44 9.82828350970522e-05
+45 0.000132986911921762
+46 0.00011109155457234
+47 0.000109223496110644
+48 0.000132101107737981
+49 0.000131110078655183
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_UWF/without_hyper/Scenario = 2, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.pdf b/models_UWF/without_hyper/Scenario = 2, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..3951c6d72f3c6fe0908df5477fdd7a13c74a248f
Binary files /dev/null and b/models_UWF/without_hyper/Scenario = 2, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.pdf differ
diff --git a/models_UWF/without_hyper/Scenario = 2, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.tex b/models_UWF/without_hyper/Scenario = 2, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..0164225a0135bb7e0eecc82125cbfc582dcaa2fc
--- /dev/null
+++ b/models_UWF/without_hyper/Scenario = 2, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.tex	
@@ -0,0 +1,265 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.03,0.97)},
+  anchor=north west,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.37307878496665e-06, ymax=0.177846155019824,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1,10},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\),
+  \(\displaystyle {10^{1}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000100550205388572
+1 5.51480588910636e-05
+2 3.5376513551455e-05
+3 2.45903993345564e-05
+4 1.96682776731905e-05
+5 2.25053372560069e-05
+6 1.78705213329522e-05
+7 1.38656941999216e-05
+8 2.33041700994363e-05
+9 1.75389577634633e-05
+10 1.20915501611307e-05
+11 1.22163710329914e-05
+12 3.94555172533728e-05
+13 9.94717083813157e-06
+14 8.66588470671559e-06
+15 8.12911912362324e-06
+16 8.36843628349015e-06
+17 4.37713715655264e-05
+18 7.10201402398525e-06
+19 8.66146274347557e-06
+20 6.56404654364451e-06
+21 6.46528542347369e-06
+22 6.1509813349403e-06
+23 7.15849364496535e-06
+24 6.78525930197793e-06
+25 6.03655644226819e-06
+26 7.20456819180981e-06
+27 6.27475947112544e-06
+28 5.21144374943106e-06
+29 5.08226366946474e-06
+30 5.34771334059769e-06
+31 5.64463289265404e-06
+32 5.18060278409394e-06
+33 6.93121137373964e-06
+34 4.74545822726213e-06
+35 4.78483070764923e-06
+36 7.58898931962904e-06
+37 7.7153699749033e-06
+38 7.95855885371566e-06
+39 4.45058958575828e-06
+40 4.64240429209895e-06
+41 4.50455945610884e-06
+42 0.000109414861071855
+43 7.1724243753124e-06
+44 6.40393318462884e-06
+45 6.23621372142225e-06
+46 6.10479764873162e-06
+47 6.92588446327136e-06
+48 5.43964370081085e-06
+49 5.19705054102815e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000120791839435697
+1 6.97270734235644e-05
+2 3.00260344374692e-05
+3 2.56979237747146e-05
+4 7.61366973165423e-05
+5 2.01856510102516e-05
+6 1.7695394490147e-05
+7 1.28419051179662e-05
+8 1.4239049050957e-05
+9 1.02809890449862e-05
+10 9.40511290536961e-06
+11 9.17238776310114e-06
+12 1.02190724646789e-05
+13 1.52930533658946e-05
+14 8.76629474078072e-06
+15 4.00103817810304e-05
+16 7.77208060753765e-06
+17 1.29295967781218e-05
+18 1.09010425148881e-05
+19 5.81508083996596e-06
+20 6.4081177697517e-06
+21 5.60884700462339e-06
+22 6.61514650346362e-06
+23 5.13239729116322e-06
+24 3.91138337363373e-06
+25 3.8252628655755e-06
+26 4.53538950750954e-06
+27 6.18455396761419e-06
+28 1.11798572106636e-05
+29 4.6780855882389e-06
+30 5.49044807485188e-06
+31 3.70292764273472e-06
+32 5.24500364917913e-06
+33 3.88661010219948e-06
+34 3.4318647976761e-06
+35 3.57546377927065e-06
+36 2.76254536402121e-06
+37 3.40951532962208e-06
+38 2.6036304916488e-06
+39 3.45822490999126e-06
+40 2.34463345805125e-06
+41 2.62418188867741e-06
+42 1.0984908840328e-05
+43 7.6518654168467e-06
+44 6.64355184198939e-06
+45 5.13065879204078e-06
+46 4.27781515099923e-06
+47 5.18121805725968e-06
+48 4.84617430629442e-06
+49 4.89258400193648e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.00010484314407222
+1 0.000107949126686435
+2 0.000103496546216775
+3 0.00010804993507918
+4 0.000110162152850535
+5 0.000296750164125115
+6 0.00010558851499809
+7 0.000139229741762392
+8 0.000106780855276156
+9 0.000106322971987538
+10 0.000102692516520619
+11 0.000109833126771264
+12 0.00010538525384618
+13 0.000106810737634078
+14 0.000102086036349647
+15 0.000116774193884339
+16 0.000119435600936413
+17 0.000102182850241661
+18 0.000102641686680727
+19 0.00530683295801282
+20 0.000103274374851026
+21 0.000103942598798312
+22 0.000103939244581852
+23 0.000104276216006838
+24 0.000110928223875817
+25 0.000103578386188019
+26 0.000103336431493517
+27 0.000105195016658399
+28 0.000104166712844744
+29 0.000104556929727551
+30 0.000103958751424216
+31 0.00010203668352915
+32 0.0128590352833271
+33 0.000113665089884307
+34 0.000115690469101537
+35 0.000104450569779146
+36 0.000209172590984963
+37 0.000118048126751091
+38 0.0001468143746024
+39 0.000105119623185601
+40 0.000103922306152526
+41 0.000104989230749197
+42 0.000103922313428484
+43 0.000509256205987185
+44 0.000105649472970981
+45 0.000173034990439191
+46 0.000102450037957169
+47 0.00010490239947103
+48 0.000103624282928649
+49 0.000105106271803379
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000162609125254676
+1 8.71792071848176e-05
+2 0.000132129905978218
+3 0.000102534242614638
+4 9.55780051299371e-05
+5 0.000103471626061946
+6 0.00011843147512991
+7 0.000143871642649174
+8 9.12305331439711e-05
+9 0.000115696624561679
+10 0.000134690388222225
+11 0.000117837000289001
+12 0.00011143229494337
+13 9.86462255241349e-05
+14 0.000122453842777759
+15 0.000104537131846882
+16 0.000188419173355214
+17 0.000112128611363005
+18 0.000126249200548045
+19 0.000111318797280546
+20 0.000138589079142548
+21 0.000112062720290851
+22 0.000109058710222598
+23 0.000148940816870891
+24 8.78246864886023e-05
+25 0.00011311150592519
+26 0.000116243281809147
+27 0.00012264410906937
+28 0.000129606036352925
+29 0.000117648742161691
+30 9.57143638515845e-05
+31 0.000130468906718306
+32 0.000118919684609864
+33 0.0001254016533494
+34 0.000107390391349327
+35 0.00010970434959745
+36 9.73197384155355e-05
+37 0.000118234478577506
+38 0.000114819522423204
+39 9.58838500082493e-05
+40 0.000119389638712164
+41 9.30892638280056e-05
+42 0.000110404413135257
+43 0.000113703594252001
+44 0.104151368141174
+45 0.000135112306452356
+46 0.000178929112735204
+47 0.000112616180558689
+48 0.000114114074676763
+49 0.000113444977614563
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_UWF/without_hyper/Scenario = 3, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.pdf b/models_UWF/without_hyper/Scenario = 3, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..d2b71704262f6fc88cca0319bdb727d4643467c5
Binary files /dev/null and b/models_UWF/without_hyper/Scenario = 3, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.pdf differ
diff --git a/models_UWF/without_hyper/Scenario = 3, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.tex b/models_UWF/without_hyper/Scenario = 3, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..fef073f45cc7366176c25c4863fa81d44a07f820
--- /dev/null
+++ b/models_UWF/without_hyper/Scenario = 3, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.tex	
@@ -0,0 +1,258 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=8.30356451495163e-07, ymax=0.0234483376377019,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.00011017140786862
+1 4.11059882026166e-05
+2 2.26791598834097e-05
+3 1.79246799234534e-05
+4 1.5320852980949e-05
+5 1.33630046548205e-05
+6 9.5052946562646e-06
+7 7.66472021496156e-06
+8 6.61656895317719e-06
+9 0.0147163737565279
+10 5.08682569488883e-06
+11 6.89014314048109e-06
+12 4.54574956165743e-06
+13 4.62558455183171e-06
+14 4.29807005275507e-06
+15 3.20831509270647e-06
+16 3.78796448785579e-06
+17 3.14419253300002e-06
+18 2.96950793199358e-06
+19 2.8898784876219e-06
+20 3.10484847432235e-06
+21 2.37921130974428e-06
+22 2.31052422350331e-06
+23 4.23871242674068e-05
+24 2.47495540861564e-06
+25 4.16208604292478e-06
+26 1.87935143003415e-06
+27 2.81569600701914e-06
+28 2.99561907013413e-06
+29 1.83097131412069e-06
+30 2.34298590839899e-06
+31 0.00187448516953737
+32 0.00130452052690089
+33 0.00114362325984985
+34 0.00110848690383136
+35 0.000213812745641917
+36 0.000175953828147613
+37 0.000123330348287709
+38 0.000108028660179116
+39 8.94952609087341e-05
+40 8.3952174463775e-05
+41 7.61759874876589e-05
+42 6.94747795932926e-05
+43 5.97251892031636e-05
+44 5.72363132960163e-05
+45 4.79114059999119e-05
+46 4.97014989377931e-05
+47 4.38004644820467e-05
+48 4.24669815402012e-05
+49 3.88910702895373e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 9.25490385270678e-05
+1 5.33596867171582e-05
+2 1.93084251804976e-05
+3 1.55448160512606e-05
+4 1.25676324387314e-05
+5 1.28699921333464e-05
+6 7.57245152271935e-06
+7 6.81047959005809e-06
+8 6.69457676849561e-06
+9 5.67144479646231e-06
+10 3.838911652565e-06
+11 4.25930056735524e-06
+12 3.28157580042898e-06
+13 3.14029966830276e-06
+14 3.49249467035406e-06
+15 3.93286927646841e-06
+16 1.021505886456e-05
+17 2.12089162232587e-06
+18 3.26139775097545e-06
+19 2.53603025157645e-06
+20 2.11525298254855e-06
+21 2.54228211815644e-06
+22 1.61134596510237e-06
+23 1.71185638464522e-06
+24 1.63372749284463e-06
+25 1.61897480666084e-06
+26 1.4033945490155e-06
+27 1.64422237958206e-06
+28 1.93664232028823e-06
+29 1.43909312555479e-06
+30 1.3230486501925e-06
+31 0.000710018270183355
+32 0.000271758821327239
+33 0.000246446783421561
+34 0.000255026272498071
+35 0.000276810955256224
+36 0.000156756999786012
+37 0.000149476327351294
+38 0.00011513374192873
+39 9.80292679741979e-05
+40 8.57639533933252e-05
+41 5.22035370522644e-05
+42 6.24703752691858e-05
+43 5.97249963902868e-05
+44 7.06285718479194e-05
+45 8.5684958321508e-05
+46 4.18876697949599e-05
+47 5.06847063661553e-05
+48 4.34827052231412e-05
+49 4.48781538580079e-05
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000206905984668992
+1 0.000103879472590052
+2 0.000118318079330493
+3 0.000105264494777657
+4 0.000119957672723103
+5 0.000100582859886345
+6 0.000104946513602044
+7 0.00010529812425375
+8 0.000115304595965426
+9 0.00014042342081666
+10 0.000148564169649035
+11 0.000104292754258495
+12 0.000118672374810558
+13 0.000106923791463487
+14 0.000103263271739706
+15 0.000104954779089894
+16 0.000105238294054288
+17 0.000103833881439641
+18 0.000116424649604596
+19 0.00011088097380707
+20 0.000108337342680898
+21 0.000114240865514148
+22 0.000109240827441681
+23 0.000102296020486392
+24 0.000289732008241117
+25 0.000101823032309767
+26 0.000103681690234225
+27 0.000106592997326516
+28 0.000109664819319732
+29 0.000102982463431545
+30 0.000100728902907576
+31 0.000121338045573793
+32 0.000106943414721172
+33 0.00011857563367812
+34 0.000104435559478588
+35 0.000110423032310791
+36 0.000119195072329603
+37 0.000101302670373116
+38 0.000102362369943876
+39 0.000105079387139995
+40 0.000755981716793031
+41 0.000104519625892863
+42 0.000104554841527715
+43 0.00010283276787959
+44 0.000106273328128736
+45 0.000103005295386538
+46 0.000101797762908973
+47 0.00010864141950151
+48 0.000105727842310444
+49 0.000129021689645015
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000119204923976213
+1 0.000120657336083241
+2 0.000108705302409362
+3 0.000146574966493063
+4 0.000117096795293037
+5 0.000127962775877677
+6 0.000119190335681196
+7 0.000159544200869277
+8 0.000106249608506914
+9 0.00011236439604545
+10 0.000105749604699668
+11 0.000126424361951649
+12 9.19119192985818e-05
+13 0.000111535264295526
+14 0.000114964313979726
+15 0.000108208543679211
+16 0.000112283334601671
+17 0.000119772463222034
+18 0.000113725291157607
+19 0.000101854733657092
+20 0.000127379506011494
+21 0.000148780411109328
+22 0.000101492019894067
+23 0.000100914112408645
+24 0.000126960148918442
+25 0.000137646900839172
+26 0.000104842918517534
+27 0.000104761616967153
+28 9.63836064329371e-05
+29 0.00013338343705982
+30 0.000116854433144908
+31 0.000178153422893956
+32 8.89116417965852e-05
+33 0.000183252937858924
+34 0.000126386919873767
+35 0.000117637937364634
+36 9.48547967709601e-05
+37 0.000127650404465385
+38 0.000115260736492928
+39 0.000111453024146613
+40 0.000123388235806488
+41 0.000150240593939088
+42 0.000120371230877936
+43 0.00012029549543513
+44 8.89928996912204e-05
+45 0.000130154177895747
+46 0.000103636462881695
+47 0.000134864647407085
+48 0.000118217023555189
+49 0.000124695201520808
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_UWF/without_hyper/Scenario = 4, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.pdf b/models_UWF/without_hyper/Scenario = 4, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..c5dadb3370a6bfeae3d6ca0359f3f1f311dce25b
Binary files /dev/null and b/models_UWF/without_hyper/Scenario = 4, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.pdf differ
diff --git a/models_UWF/without_hyper/Scenario = 4, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.tex b/models_UWF/without_hyper/Scenario = 4, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..14fab87afaf5488840f0c5273c72affc1b5411cc
--- /dev/null
+++ b/models_UWF/without_hyper/Scenario = 4, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.tex	
@@ -0,0 +1,258 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=5.19130698649686e-07, ymax=0.0168909804103019,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000112962785351556
+1 4.48540376964957e-05
+2 3.64356747013517e-05
+3 2.58560248767026e-05
+4 2.13579842238687e-05
+5 1.74112774402602e-05
+6 1.4716902114742e-05
+7 1.29015252241516e-05
+8 1.25480291899294e-05
+9 9.9248736660229e-06
+10 9.17880970519036e-06
+11 7.65304866945371e-06
+12 9.89140698948177e-06
+13 8.50470587465679e-06
+14 5.72539238419267e-06
+15 5.25426003150642e-06
+16 5.02280590808368e-06
+17 4.95167842018418e-06
+18 4.19963316744543e-06
+19 4.51622054242762e-06
+20 4.47754109700327e-06
+21 3.91919320463785e-06
+22 4.96741358801955e-06
+23 3.47205605066847e-06
+24 3.88669877793291e-06
+25 2.92186609840428e-06
+26 2.98198824566498e-06
+27 2.90055436380499e-06
+28 3.12721545014938e-06
+29 2.63544507106417e-06
+30 2.58395039054449e-06
+31 2.57365741163085e-06
+32 3.64444349543191e-06
+33 2.48862534135696e-06
+34 2.12954569178692e-06
+35 1.91410390470992e-06
+36 1.97989515982044e-06
+37 1.75854495410022e-06
+38 2.37311110140581e-06
+39 1.72470777215494e-06
+40 1.83481017757003e-06
+41 1.5974778762029e-06
+42 2.41492052737158e-05
+43 1.56557496211462e-06
+44 1.85024020993296e-06
+45 1.50920891428541e-06
+46 1.44889315834007e-06
+47 1.44598004681029e-06
+48 1.52251061535935e-06
+49 3.89733122574398e-06
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 9.79704927885905e-05
+1 4.12220251746476e-05
+2 5.53868012502789e-05
+3 2.65078506345162e-05
+4 2.47435182245681e-05
+5 1.53581186168594e-05
+6 1.70738458109554e-05
+7 1.43801589729264e-05
+8 1.31255337691982e-05
+9 7.78157573222416e-06
+10 8.41329165268689e-06
+11 7.70366295910208e-06
+12 8.32178193377331e-06
+13 7.31489717509248e-06
+14 6.14505415796884e-06
+15 5.64179208595306e-06
+16 9.09058144316077e-06
+17 4.19361049353029e-06
+18 4.85428381580277e-06
+19 4.2705137275334e-06
+20 4.97809787702863e-06
+21 3.52773895428982e-06
+22 2.96986331704829e-06
+23 3.0228309242375e-06
+24 3.34979563376692e-06
+25 3.26234339809162e-06
+26 2.9221325803519e-06
+27 3.10721816276782e-06
+28 2.88122487290821e-06
+29 1.83466761427553e-06
+30 1.64603432040167e-06
+31 1.93400114767428e-06
+32 2.46550166593806e-06
+33 1.88306512427516e-06
+34 1.34632125536882e-06
+35 1.94003655451525e-06
+36 1.47169430420035e-06
+37 1.51246365476254e-06
+38 1.34194874590321e-06
+39 1.30329044623068e-06
+40 1.85762326054828e-06
+41 1.98000816453714e-06
+42 1.31961667193536e-06
+43 1.43369834404439e-06
+44 1.27295731999766e-06
+45 1.5204713008643e-06
+46 1.26114775866881e-06
+47 8.32501086733828e-07
+48 9.78654384198308e-07
+49 1.33386754441744e-06
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000169708990142681
+1 0.00482502207159996
+2 0.000103700578620192
+3 0.000124842918012291
+4 0.00251293904148042
+5 0.00010616429062793
+6 0.000108305182948243
+7 0.000112550253106747
+8 0.000106743587821256
+9 0.000102433339634445
+10 0.000106333405710757
+11 0.01053287088871
+12 0.000108984153484926
+13 0.000108274653030094
+14 0.000105925755633507
+15 0.000105766543128993
+16 0.00362761900760233
+17 0.000107082749309484
+18 0.000100305762316566
+19 0.000105189930764027
+20 0.000123338410048746
+21 0.000107556705188472
+22 0.000110498091089539
+23 0.000107814186776523
+24 0.000102985890407581
+25 0.000109032029286027
+26 0.000102884863736108
+27 0.000106015671917703
+28 0.000105341321614105
+29 0.0001019578485284
+30 0.000106281739135738
+31 0.000111209985334426
+32 0.000100089448096696
+33 0.000107222200313117
+34 0.000107154046418145
+35 0.00010641436529113
+36 0.00010793480760185
+37 0.000119912510854192
+38 0.00060050404863432
+39 0.000168843835126609
+40 0.00010635306534823
+41 0.000103974161902443
+42 0.000107886335172225
+43 0.000111731547804084
+44 0.000104657148767728
+45 0.000105431492556818
+46 0.000107476378616411
+47 0.00010649069736246
+48 0.000107057414425071
+49 0.000103465994470753
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000123337187687866
+1 0.000135178546770476
+2 0.000131734122987837
+3 8.73675089678727e-05
+4 0.000117682087875437
+5 0.000116350223834161
+6 0.000102812009572517
+7 8.87012283783406e-05
+8 0.000102752564998809
+9 0.000135041962494142
+10 8.99567967280746e-05
+11 0.000103442929685116
+12 0.000112348607217427
+13 0.000105076818726957
+14 0.000113511741801631
+15 0.000102312733361032
+16 0.000132773231598549
+17 0.000108219850517344
+18 0.000147023776662536
+19 0.000124088546726853
+20 0.000121150726045016
+21 0.000129152715089731
+22 0.000102785998024046
+23 9.34063136810437e-05
+24 0.000115276103315409
+25 0.000110873101220932
+26 0.000127559003885835
+27 0.00010026985546574
+28 0.000104789636679925
+29 0.000125139951705933
+30 9.94918664218858e-05
+31 9.63477796176448e-05
+32 0.000137592956889421
+33 0.000107359723187983
+34 0.000107482650491875
+35 9.51347683439963e-05
+36 0.000112397479824722
+37 0.000125626218505204
+38 0.000116283241368365
+39 9.89372856565751e-05
+40 8.84069959283806e-05
+41 0.000108127227576915
+42 9.48129090829752e-05
+43 9.78503885562532e-05
+44 0.00012213944864925
+45 9.85664883046411e-05
+46 0.00012659138883464
+47 0.000123616337077692
+48 0.000118097093945835
+49 0.000129162333905697
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_UWF/without_hyper/Scenario = 5, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.pdf b/models_UWF/without_hyper/Scenario = 5, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..6cab2f44be8654715634231ac2f14dcf5124fe1a
Binary files /dev/null and b/models_UWF/without_hyper/Scenario = 5, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.pdf differ
diff --git a/models_UWF/without_hyper/Scenario = 5, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.tex b/models_UWF/without_hyper/Scenario = 5, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..12786af428164eb3ee6fa9a6233433d3c5c43817
--- /dev/null
+++ b/models_UWF/without_hyper/Scenario = 5, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.tex	
@@ -0,0 +1,258 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.3929386884171e-07, ymax=0.0214137849226391,
+ymode=log,
+ytick style={color=black},
+ytick={1e-08,1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-8}}\),
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000115619572170544
+1 3.66140666301362e-05
+2 3.88987718906719e-05
+3 1.12463349069003e-05
+4 7.39141842132085e-06
+5 5.88246757615707e-06
+6 1.33564672069042e-05
+7 4.32045681009186e-06
+8 3.36766470354632e-06
+9 3.94663265979034e-06
+10 2.69568681687815e-06
+11 2.43232580032782e-06
+12 2.07539164875925e-06
+13 1.83115344043472e-06
+14 1.81004190835665e-06
+15 1.71904935086786e-06
+16 1.41902387440496e-06
+17 1.45171202348138e-06
+18 1.23093161619181e-06
+19 1.30822729715874e-06
+20 1.28785870856518e-06
+21 1.05134529349016e-06
+22 1.11863823804015e-06
+23 9.40535358040506e-07
+24 8.63363482039858e-07
+25 1.02263186363416e-06
+26 6.57841155771166e-06
+27 8.42167764858459e-07
+28 1.08156234546186e-06
+29 9.38011964990437e-07
+30 6.88994134634413e-07
+31 6.92170203819842e-07
+32 6.67649260321923e-07
+33 5.83880023441452e-07
+34 6.11951520568255e-07
+35 6.00160205976863e-07
+36 7.64876006087434e-07
+37 5.89186356592108e-07
+38 5.87023293974198e-07
+39 5.72065005144395e-07
+40 5.35504113940988e-07
+41 6.18023648257804e-07
+42 5.08474954585836e-07
+43 5.44603835805901e-07
+44 5.11379028012016e-07
+45 5.45023794984445e-07
+46 4.93479035412747e-07
+47 4.499693204707e-07
+48 4.4950027699997e-07
+49 5.27288420926197e-07
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000148638486280106
+1 3.8717822462786e-05
+2 1.96167875401443e-05
+3 1.40024994834675e-05
+4 7.77251534600509e-06
+5 8.04341743787518e-06
+6 4.66747496830067e-06
+7 3.24275606544688e-06
+8 3.68673295270128e-06
+9 2.22127937377081e-06
+10 3.02577313959773e-06
+11 2.10539269573928e-06
+12 2.79613914244692e-06
+13 1.88535034340021e-06
+14 2.34871004067827e-06
+15 1.87500120318873e-06
+16 1.30373712181608e-06
+17 9.7612542049319e-07
+18 1.22695689697139e-06
+19 8.33635738217708e-07
+20 9.3538966439155e-07
+21 2.68304006567632e-06
+22 7.79187587340857e-07
+23 6.77797231674049e-07
+24 1.10359292193607e-06
+25 6.55734368137928e-07
+26 8.04333865289664e-07
+27 6.73910278692347e-07
+28 5.62983984764287e-07
+29 6.51476170787646e-07
+30 4.62268644696451e-07
+31 6.21099786712875e-07
+32 4.7201328357005e-07
+33 5.12390784024319e-07
+34 4.88249042973621e-07
+35 5.46861258499121e-07
+36 4.66291567136068e-07
+37 6.0789801636929e-07
+38 4.04685039256947e-07
+39 3.72652806390761e-07
+40 2.70373163857585e-07
+41 4.39054105072501e-07
+42 2.73006207862636e-07
+43 2.46051911290124e-07
+44 2.39714267991076e-07
+45 3.1927794452713e-07
+46 4.52996403055295e-07
+47 3.27289853885304e-07
+48 3.43154766824227e-07
+49 3.09403873188785e-07
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000119844757136889
+1 0.000122850964544341
+2 0.000119242758955806
+3 0.0001194120341097
+4 0.000121909339213744
+5 0.000117509182018694
+6 0.000117711497296114
+7 0.000134808011353016
+8 0.000149091443745419
+9 0.000120183576655108
+10 0.000115898626972921
+11 0.000122511555673555
+12 0.000111565263068769
+13 0.000120325428724755
+14 0.000134350819280371
+15 0.000152338034240529
+16 0.000119035270472523
+17 0.00012379974941723
+18 0.000117030824185349
+19 0.000124024198157713
+20 0.000117830757517368
+21 0.000115914219350088
+22 0.00013274562661536
+23 0.00011486293078633
+24 0.000114014488644898
+25 0.0124431848526001
+26 0.000116647170216311
+27 0.000118882482638583
+28 0.000115469163574744
+29 0.000113608708488755
+30 0.00015779300883878
+31 0.000121383927762508
+32 0.000118668504001107
+33 0.00047049461863935
+34 0.000114619404484984
+35 0.00011880121746799
+36 0.000117411691462621
+37 0.000117397568828892
+38 0.000119214426376857
+39 0.000357582262950018
+40 0.000122612778795883
+41 0.000117423463962041
+42 0.000121910503366962
+43 0.000124323123600334
+44 0.000115912305773236
+45 0.000524870993103832
+46 0.000116180184704717
+47 0.000116481249278877
+48 0.000114282163849566
+49 0.000121571094496176
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000122817582450807
+1 0.000132000757730566
+2 0.000163245917065069
+3 0.000100329452834558
+4 0.000190929204109125
+5 0.000196753637283109
+6 8.23061054688878e-05
+7 0.000118566029414069
+8 0.000135401103761978
+9 0.000114686314191204
+10 0.000128131257952191
+11 0.000160483745275997
+12 0.000156743626575917
+13 0.000144422388984822
+14 0.00010919920168817
+15 0.000135145717649721
+16 0.000156790585606359
+17 0.000131657448946498
+18 0.000118700903840363
+19 0.000110858003608882
+20 0.00014075958461035
+21 0.000139842843054794
+22 0.000130170141346753
+23 0.000152905340655707
+24 0.000124135913210921
+25 0.000132893052068539
+26 0.000141130716656335
+27 9.90790795185603e-05
+28 0.000120807693747338
+29 0.000141456825076602
+30 0.000110587214294355
+31 0.000127455787151121
+32 0.00013254517398309
+33 0.00012397175305523
+34 0.000120144453831017
+35 0.000124459431390278
+36 0.000150959225720726
+37 0.000125301812659018
+38 0.000120412958494853
+39 0.000125558653962798
+40 0.000115242255560588
+41 0.000137347829877399
+42 0.000142319564474747
+43 0.000134914516820572
+44 0.000118584044685122
+45 0.000142000455525704
+46 0.000157046873937361
+47 0.000156261696247384
+48 0.000130856220494024
+49 0.000132377448608167
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_UWF/without_hyper/Scenario = 6, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.pdf b/models_UWF/without_hyper/Scenario = 6, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..ce9f1684824f4f469457348833b78f7f8ed13826
Binary files /dev/null and b/models_UWF/without_hyper/Scenario = 6, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.pdf differ
diff --git a/models_UWF/without_hyper/Scenario = 6, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.tex b/models_UWF/without_hyper/Scenario = 6, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..83753697a5000ccdc1bfb0864226b8ee673f3d82
--- /dev/null
+++ b/models_UWF/without_hyper/Scenario = 6, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.tex	
@@ -0,0 +1,257 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={fill opacity=0.8, draw opacity=1, text opacity=1, draw=lightgray204},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=4.39300939358295e-06, ymax=0.0141089359119069,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000112517256638967
+1 5.5064581829356e-05
+2 3.55100528395269e-05
+3 2.87373713945271e-05
+4 2.23922725126613e-05
+5 1.91774543054635e-05
+6 0.000687155581545085
+7 1.57297017722158e-05
+8 1.71886404132238e-05
+9 1.22556566566345e-05
+10 1.30840635392815e-05
+11 1.04549435491208e-05
+12 9.87106341199251e-06
+13 8.91199942998355e-06
+14 9.63869933912065e-06
+15 4.46925732831005e-05
+16 0.00977456290274858
+17 8.15880684967851e-06
+18 1.54174704221077e-05
+19 9.55370978772407e-06
+20 8.98638609214686e-06
+21 9.88098327070475e-06
+22 8.89687271410367e-06
+23 8.98173493624199e-06
+24 1.03453876363346e-05
+25 1.10234113890328e-05
+26 1.12401530714124e-05
+27 1.14206386570004e-05
+28 1.08652593553415e-05
+29 1.12292154881288e-05
+30 1.13919741124846e-05
+31 1.10418386611855e-05
+32 1.10277005660464e-05
+33 1.09118345790193e-05
+34 1.442076973035e-05
+35 1.07478163045016e-05
+36 1.37724955493468e-05
+37 1.06523339127307e-05
+38 5.57102466700599e-05
+39 1.08316789919627e-05
+40 1.16139572128304e-05
+41 1.04485170595581e-05
+42 1.17686358862557e-05
+43 1.08427075247164e-05
+44 1.02946514743962e-05
+45 1.403957594448e-05
+46 1.10440323624061e-05
+47 0.000357022654497996
+48 1.05304106909898e-05
+49 1.04827940958785e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000129275285871699
+1 6.93027614033781e-05
+2 3.63658145943191e-05
+3 2.58755735558225e-05
+4 2.42732476181118e-05
+5 1.77983893081546e-05
+6 1.51207232192974e-05
+7 1.57866834342713e-05
+8 1.03274023786071e-05
+9 1.03600659713265e-05
+10 1.08381937025115e-05
+11 1.184824941447e-05
+12 9.64115406532073e-06
+13 7.52926735003712e-06
+14 6.72474516250077e-06
+15 6.3410188886337e-06
+16 8.23178834252758e-06
+17 7.06209675627179e-06
+18 8.73109820531681e-06
+19 8.41258133732481e-06
+20 1.36525122798048e-05
+21 8.64728826854844e-06
+22 8.04125556896906e-06
+23 9.24729829421267e-06
+24 9.38304492592579e-06
+25 1.5834777514101e-05
+26 1.54081444634357e-05
+27 1.42991075335885e-05
+28 1.31759652504115e-05
+29 1.01135983641143e-05
+30 1.76716512214625e-05
+31 1.52241946125287e-05
+32 1.17770678116358e-05
+33 1.46792945088237e-05
+34 1.16483797683031e-05
+35 9.89673117146594e-06
+36 1.14761814984377e-05
+37 1.22546525744838e-05
+38 1.09078873720136e-05
+39 1.15323191494099e-05
+40 1.32195291371318e-05
+41 1.1562434337975e-05
+42 1.38976220114273e-05
+43 1.05332801467739e-05
+44 1.46128213600605e-05
+45 1.28525807667756e-05
+46 1.30645539684338e-05
+47 1.02265721579897e-05
+48 9.42989481700351e-06
+49 1.41650371006108e-05
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000110535605926998
+1 0.000109364962554537
+2 0.000114059468614869
+3 0.000108786443888675
+4 0.000111290486529469
+5 0.000107748703157995
+6 0.00605685263872147
+7 0.00010796869173646
+8 0.000115444294351619
+9 0.000109489636088256
+10 0.000110607659735251
+11 0.000360305450158194
+12 0.000110037915874273
+13 0.000112947214802261
+14 0.000115662267489824
+15 0.000110110064269975
+16 0.000106087114545517
+17 0.000112248817458749
+18 0.000116169787361287
+19 0.000112251444079448
+20 0.000112308996904176
+21 0.00011061266559409
+22 0.00011157486733282
+23 0.000111886925878935
+24 0.000112050278403331
+25 0.000111333720269613
+26 0.000113456153485458
+27 0.00011204942711629
+28 0.000109146683826111
+29 0.000109847089333925
+30 0.000105325365439057
+31 0.000106932617200073
+32 0.000107328844023868
+33 0.000113592577690724
+34 0.000122598197776824
+35 0.000108129795989953
+36 0.000111060311610345
+37 0.000567061128094792
+38 0.000120583797979634
+39 0.000108045569504611
+40 0.000108350548543967
+41 0.000210757119930349
+42 0.000111506407847628
+43 0.000113653994048946
+44 0.000110819324618205
+45 0.00010466312232893
+46 0.000107786640000995
+47 0.000112684021587484
+48 0.000106634659459814
+49 0.000111128123535309
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000131824985146523
+1 0.000200432405108586
+2 0.000146929800393991
+3 0.000151620013639331
+4 0.000108638974779751
+5 0.000127005376270972
+6 0.000126956409076229
+7 0.000105702107248362
+8 0.000100210942036938
+9 0.000118425850814674
+10 0.000116474497190211
+11 0.000118099458632059
+12 0.000122905170428567
+13 0.000128316809423268
+14 0.000117891751870047
+15 0.000101819590781815
+16 0.000116190953121986
+17 0.000104058759461623
+18 0.000126915561850183
+19 9.89901600405574e-05
+20 0.00012144537322456
+21 0.0001035977184074
+22 0.000145190322655253
+23 0.00210404628887773
+24 0.000148909515701234
+25 0.000108116888441145
+26 0.000126278711832128
+27 0.000115032562462147
+28 0.000105669954791665
+29 0.000104504193586763
+30 0.000140391406603158
+31 0.000120900826004799
+32 0.00012035667168675
+33 0.000114885719085578
+34 0.000153522109030746
+35 0.000125133257824928
+36 0.00010596786160022
+37 0.000108994267066009
+38 0.000101006058685016
+39 0.000110025881440379
+40 0.000127278428408317
+41 0.000112989851913881
+42 0.000128634754219092
+43 0.000107650375866797
+44 0.000113882728328463
+45 0.000165896126418374
+46 0.000174486209289171
+47 0.000123583769891411
+48 0.000143602417665534
+49 9.34076742851175e-05
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_UWF/without_hyper/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.pdf b/models_UWF/without_hyper/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.pdf
new file mode 100644
index 0000000000000000000000000000000000000000..7de3e8158e6239412c753fab21ec7d581ed43dd6
Binary files /dev/null and b/models_UWF/without_hyper/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.pdf differ
diff --git a/models_UWF/without_hyper/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.tex b/models_UWF/without_hyper/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.tex
new file mode 100644
index 0000000000000000000000000000000000000000..79a997b6c0767c76879d31966d42867624daf6e3
--- /dev/null
+++ b/models_UWF/without_hyper/Scenario = 7, Layers = 160, Epochs = 50, LR = 0.001, Learning_Process.tex	
@@ -0,0 +1,264 @@
+% This file was created with tikzplotlib v0.10.1.
+\begin{tikzpicture}
+
+\definecolor{darkgray176}{RGB}{176,176,176}
+\definecolor{green}{RGB}{0,128,0}
+\definecolor{lightgray204}{RGB}{204,204,204}
+\definecolor{orange}{RGB}{255,165,0}
+
+\begin{axis}[
+legend cell align={left},
+legend style={
+  fill opacity=0.8,
+  draw opacity=1,
+  text opacity=1,
+  at={(0.03,0.97)},
+  anchor=north west,
+  draw=lightgray204
+},
+log basis y={10},
+tick align=outside,
+tick pos=left,
+title={Average Error vs Epochs},
+x grid style={darkgray176},
+xlabel={Epochs},
+xmajorgrids,
+xmin=-2.45, xmax=51.45,
+xtick style={color=black},
+y grid style={darkgray176},
+ylabel={Average Error},
+ymajorgrids,
+ymin=1.41019431670876e-06, ymax=0.0156679028372775,
+ymode=log,
+ytick style={color=black},
+ytick={1e-07,1e-06,1e-05,0.0001,0.001,0.01,0.1,1},
+yticklabels={
+  \(\displaystyle {10^{-7}}\),
+  \(\displaystyle {10^{-6}}\),
+  \(\displaystyle {10^{-5}}\),
+  \(\displaystyle {10^{-4}}\),
+  \(\displaystyle {10^{-3}}\),
+  \(\displaystyle {10^{-2}}\),
+  \(\displaystyle {10^{-1}}\),
+  \(\displaystyle {10^{0}}\)
+}
+]
+\addplot [semithick, red]
+table {%
+0 0.000123712976346724
+1 3.61038109986112e-05
+2 1.92390634765616e-05
+3 1.41538657771889e-05
+4 1.13604182843119e-05
+5 8.92032585397828e-06
+6 6.95451308274642e-06
+7 6.54458608551067e-06
+8 5.49529750060174e-06
+9 5.00813484904938e-06
+10 4.76973809782066e-06
+11 4.04770207751426e-06
+12 5.36180505150696e-06
+13 4.41644124293816e-06
+14 3.62722039426444e-06
+15 3.85068142350065e-06
+16 3.96022960558184e-06
+17 3.36456196237123e-06
+18 3.55754809788777e-06
+19 2.90803609459545e-06
+20 2.87022248812718e-06
+21 2.58148497778166e-06
+22 1.06573234006646e-05
+23 8.58057410368929e-06
+24 6.06654930379591e-06
+25 4.27468585257884e-05
+26 4.46790727437474e-06
+27 4.7897374315653e-06
+28 4.21980212195194e-06
+29 4.066063411301e-06
+30 4.57945770904189e-06
+31 3.99971031583846e-06
+32 3.61184743269405e-06
+33 3.19425089401193e-06
+34 3.00034366773616e-06
+35 2.92300092041842e-06
+36 5.33908041688846e-06
+37 0.00208666943944991
+38 0.00143341324292123
+39 2.14575902646175e-05
+40 2.13133171200752e-05
+41 1.95563334273174e-05
+42 1.97702920559095e-05
+43 1.79422713699751e-05
+44 1.8209120753454e-05
+45 1.77225774677936e-05
+46 1.8146803995478e-05
+47 1.79904764081584e-05
+48 1.63504064403242e-05
+49 1.66026311489986e-05
+};
+\addlegendentry{During Training on Train Data}
+\addplot [semithick, blue]
+table {%
+0 0.000159875882673077
+1 4.22315242758486e-05
+2 2.7227884856984e-05
+3 1.42017352118273e-05
+4 1.17081235657679e-05
+5 7.23542916603037e-06
+6 6.71077714287094e-06
+7 6.40759981251904e-06
+8 6.03867511017597e-06
+9 4.69222231913591e-06
+10 3.31214664583968e-06
+11 3.5421453503659e-06
+12 2.59482339970418e-06
+13 3.2733794341766e-06
+14 2.61443551607954e-06
+15 2.37594713325961e-06
+16 4.11221253671101e-06
+17 3.96487075704499e-06
+18 2.23926417675102e-06
+19 2.41555221691669e-06
+20 2.8177416879771e-06
+21 2.15365366784681e-06
+22 1.87013902177569e-05
+23 1.14274735096842e-05
+24 6.2057692957751e-06
+25 6.19489219388925e-06
+26 6.35293827144778e-06
+27 5.11537382408278e-06
+28 6.72031046633492e-06
+29 4.02510841013282e-06
+30 4.13926454712055e-06
+31 3.74754449694592e-06
+32 2.83836811831861e-06
+33 2.61320633399009e-06
+34 4.03772992285667e-06
+35 2.82361907011364e-06
+36 1.0201881195826e-05
+37 3.15313627652358e-05
+38 4.07302868552506e-05
+39 2.65761373157147e-05
+40 3.26319495798089e-05
+41 2.20370038732653e-05
+42 2.89441613858799e-05
+43 2.63891542999772e-05
+44 2.47493626375217e-05
+45 3.15998440783005e-05
+46 2.43979666265659e-05
+47 2.72413453785703e-05
+48 2.76492264674744e-05
+49 2.44446182477986e-05
+};
+\addlegendentry{During Training on Test Data}
+\addplot [semithick, orange]
+table {%
+0 0.000106271909317002
+1 0.000102229292679112
+2 0.00010267308971379
+3 0.000104742110124789
+4 0.000105179497040808
+5 0.000100018667581026
+6 0.000104978236777242
+7 0.000109515276562888
+8 0.000119890522910282
+9 0.000105556289781816
+10 0.000111739653220866
+11 0.000104603088402655
+12 0.000117901385237928
+13 0.00010120128717972
+14 0.000103505786682945
+15 0.000103618745924905
+16 0.000106016705103684
+17 0.00010689883492887
+18 0.000104009690403473
+19 0.00109088909812272
+20 0.000103115293313749
+21 0.00010907154501183
+22 0.000102108948340174
+23 0.000103274433058687
+24 0.00125256320461631
+25 9.92863351712003e-05
+26 0.000102455873275176
+27 0.000102277525002137
+28 0.000102194979263004
+29 9.96877497527748e-05
+30 0.000105364371847827
+31 0.000111033332359511
+32 0.000102558151411358
+33 0.000106491075712256
+34 0.000105227059975732
+35 0.00010441130871186
+36 0.000104104678030126
+37 0.00010139533696929
+38 0.000101719553640578
+39 0.000106533829239197
+40 0.000102680489362683
+41 0.00094377517234534
+42 0.000102259968116414
+43 0.00010156721691601
+44 0.000102538957435172
+45 0.000101136916782707
+46 0.000101828067272436
+47 0.010259211063385
+48 0.000102150734164752
+49 0.000100222190667409
+};
+\addlegendentry{Untrained Model on Train Data}
+\addplot [semithick, green]
+table {%
+0 0.000130604763398878
+1 0.000106325744127389
+2 9.91808701655827e-05
+3 0.000139764888444915
+4 0.000106910294562113
+5 0.000189925674931146
+6 0.00011083425488323
+7 0.000106884399428964
+8 0.000117591385787819
+9 0.000115719740279019
+10 0.000135850379592739
+11 9.29285524762236e-05
+12 0.000138900868478231
+13 0.000139856783789583
+14 0.000113880254502874
+15 0.000103845428384375
+16 0.000118751777336001
+17 0.000128611776744947
+18 0.00011601863661781
+19 9.52845075516962e-05
+20 0.00012534690904431
+21 0.000143454322824255
+22 0.000107589636172634
+23 0.000650533998850733
+24 9.27244473132305e-05
+25 0.000116712952149101
+26 9.58258606260642e-05
+27 0.000110465756733902
+28 0.000101411693322007
+29 0.000116058603452984
+30 0.000102887766843196
+31 0.0001104218463297
+32 9.6138333901763e-05
+33 0.000112641544546932
+34 8.6982901848387e-05
+35 0.000106365303508937
+36 0.000128128056530841
+37 0.000112121822894551
+38 9.54371644183993e-05
+39 0.000124593556392938
+40 0.000128446350572631
+41 0.000109284628706519
+42 0.000125934908282943
+43 0.000112414883915335
+44 0.00011437434295658
+45 9.45309875532985e-05
+46 0.000118598167318851
+47 0.000120423108455725
+48 0.000107457301055547
+49 0.000118399308121298
+};
+\addlegendentry{Untrained Model on Test Data}
+\end{axis}
+
+\end{tikzpicture}
diff --git a/models_UWF/without_hyper/runs/fashion_trainer_20230920_110040/Training vs. Validation Loss_Training/events.out.tfevents.1695200446.msip-dell.ims.rwth-aachen.de.1248211.1 b/models_UWF/without_hyper/runs/fashion_trainer_20230920_110040/Training vs. Validation Loss_Training/events.out.tfevents.1695200446.msip-dell.ims.rwth-aachen.de.1248211.1
new file mode 100644
index 0000000000000000000000000000000000000000..9416b5004080b5153a57c5eb8dccb054ef1bac7e
Binary files /dev/null and b/models_UWF/without_hyper/runs/fashion_trainer_20230920_110040/Training vs. Validation Loss_Training/events.out.tfevents.1695200446.msip-dell.ims.rwth-aachen.de.1248211.1 differ
diff --git a/models_UWF/without_hyper/runs/fashion_trainer_20230920_110040/Training vs. Validation Loss_Validation/events.out.tfevents.1695200446.msip-dell.ims.rwth-aachen.de.1248211.2 b/models_UWF/without_hyper/runs/fashion_trainer_20230920_110040/Training vs. Validation Loss_Validation/events.out.tfevents.1695200446.msip-dell.ims.rwth-aachen.de.1248211.2
new file mode 100644
index 0000000000000000000000000000000000000000..d29cf61f6f39b4c933a1bb288442c18f22893835
Binary files /dev/null and b/models_UWF/without_hyper/runs/fashion_trainer_20230920_110040/Training vs. Validation Loss_Validation/events.out.tfevents.1695200446.msip-dell.ims.rwth-aachen.de.1248211.2 differ
diff --git a/models_UWF/without_hyper/runs/fashion_trainer_20230920_110040/events.out.tfevents.1695200440.msip-dell.ims.rwth-aachen.de.1248211.0 b/models_UWF/without_hyper/runs/fashion_trainer_20230920_110040/events.out.tfevents.1695200440.msip-dell.ims.rwth-aachen.de.1248211.0
new file mode 100644
index 0000000000000000000000000000000000000000..f86844e337eee3c8e26065ded193c16fc522e74a
Binary files /dev/null and b/models_UWF/without_hyper/runs/fashion_trainer_20230920_110040/events.out.tfevents.1695200440.msip-dell.ims.rwth-aachen.de.1248211.0 differ
diff --git a/runs/fashion_trainer_20230918_141613/Training vs. Validation Loss_Training/events.out.tfevents.1695039374.msip-dell.ims.rwth-aachen.de.792540.1 b/runs/fashion_trainer_20230918_141613/Training vs. Validation Loss_Training/events.out.tfevents.1695039374.msip-dell.ims.rwth-aachen.de.792540.1
new file mode 100644
index 0000000000000000000000000000000000000000..2869abc1dcf0eefdea1d98597215e1fe1471dea5
Binary files /dev/null and b/runs/fashion_trainer_20230918_141613/Training vs. Validation Loss_Training/events.out.tfevents.1695039374.msip-dell.ims.rwth-aachen.de.792540.1 differ
diff --git a/runs/fashion_trainer_20230918_141613/Training vs. Validation Loss_Validation/events.out.tfevents.1695039374.msip-dell.ims.rwth-aachen.de.792540.2 b/runs/fashion_trainer_20230918_141613/Training vs. Validation Loss_Validation/events.out.tfevents.1695039374.msip-dell.ims.rwth-aachen.de.792540.2
new file mode 100644
index 0000000000000000000000000000000000000000..136d824d530f296ea3cd2092e543d78cb2e82b3c
Binary files /dev/null and b/runs/fashion_trainer_20230918_141613/Training vs. Validation Loss_Validation/events.out.tfevents.1695039374.msip-dell.ims.rwth-aachen.de.792540.2 differ
diff --git a/runs/fashion_trainer_20230918_141613/events.out.tfevents.1695039373.msip-dell.ims.rwth-aachen.de.792540.0 b/runs/fashion_trainer_20230918_141613/events.out.tfevents.1695039373.msip-dell.ims.rwth-aachen.de.792540.0
new file mode 100644
index 0000000000000000000000000000000000000000..a148521a3860b19a46f66c97cc8d4b5dac53b99b
Binary files /dev/null and b/runs/fashion_trainer_20230918_141613/events.out.tfevents.1695039373.msip-dell.ims.rwth-aachen.de.792540.0 differ
diff --git a/runs/fashion_trainer_20230918_141615/Training vs. Validation Loss_Training/events.out.tfevents.1695039376.msip-dell.ims.rwth-aachen.de.792540.4 b/runs/fashion_trainer_20230918_141615/Training vs. Validation Loss_Training/events.out.tfevents.1695039376.msip-dell.ims.rwth-aachen.de.792540.4
new file mode 100644
index 0000000000000000000000000000000000000000..75ccbfbd334f7a5eb71fba388aa8acc0c387f3ff
Binary files /dev/null and b/runs/fashion_trainer_20230918_141615/Training vs. Validation Loss_Training/events.out.tfevents.1695039376.msip-dell.ims.rwth-aachen.de.792540.4 differ
diff --git a/runs/fashion_trainer_20230918_141615/Training vs. Validation Loss_Validation/events.out.tfevents.1695039376.msip-dell.ims.rwth-aachen.de.792540.5 b/runs/fashion_trainer_20230918_141615/Training vs. Validation Loss_Validation/events.out.tfevents.1695039376.msip-dell.ims.rwth-aachen.de.792540.5
new file mode 100644
index 0000000000000000000000000000000000000000..48711763144a623eef32d64ca9487b4a0128a5a7
Binary files /dev/null and b/runs/fashion_trainer_20230918_141615/Training vs. Validation Loss_Validation/events.out.tfevents.1695039376.msip-dell.ims.rwth-aachen.de.792540.5 differ
diff --git a/runs/fashion_trainer_20230918_141615/events.out.tfevents.1695039375.msip-dell.ims.rwth-aachen.de.792540.3 b/runs/fashion_trainer_20230918_141615/events.out.tfevents.1695039375.msip-dell.ims.rwth-aachen.de.792540.3
new file mode 100644
index 0000000000000000000000000000000000000000..90c21724a4e5a6bafa94dec9c5f06625b332b9ff
Binary files /dev/null and b/runs/fashion_trainer_20230918_141615/events.out.tfevents.1695039375.msip-dell.ims.rwth-aachen.de.792540.3 differ
diff --git a/runs/fashion_trainer_20230918_141617/Training vs. Validation Loss_Training/events.out.tfevents.1695039378.msip-dell.ims.rwth-aachen.de.792540.7 b/runs/fashion_trainer_20230918_141617/Training vs. Validation Loss_Training/events.out.tfevents.1695039378.msip-dell.ims.rwth-aachen.de.792540.7
new file mode 100644
index 0000000000000000000000000000000000000000..0499efa4db275338d176b39c85bac392a279e2c4
Binary files /dev/null and b/runs/fashion_trainer_20230918_141617/Training vs. Validation Loss_Training/events.out.tfevents.1695039378.msip-dell.ims.rwth-aachen.de.792540.7 differ
diff --git a/runs/fashion_trainer_20230918_141617/Training vs. Validation Loss_Validation/events.out.tfevents.1695039378.msip-dell.ims.rwth-aachen.de.792540.8 b/runs/fashion_trainer_20230918_141617/Training vs. Validation Loss_Validation/events.out.tfevents.1695039378.msip-dell.ims.rwth-aachen.de.792540.8
new file mode 100644
index 0000000000000000000000000000000000000000..1ea7f569a8a494b68a78329d76d467c9fbbc82cc
Binary files /dev/null and b/runs/fashion_trainer_20230918_141617/Training vs. Validation Loss_Validation/events.out.tfevents.1695039378.msip-dell.ims.rwth-aachen.de.792540.8 differ
diff --git a/runs/fashion_trainer_20230918_141617/events.out.tfevents.1695039377.msip-dell.ims.rwth-aachen.de.792540.6 b/runs/fashion_trainer_20230918_141617/events.out.tfevents.1695039377.msip-dell.ims.rwth-aachen.de.792540.6
new file mode 100644
index 0000000000000000000000000000000000000000..69d3467be4afd8a5ec470d61ee64c1ab932e3119
Binary files /dev/null and b/runs/fashion_trainer_20230918_141617/events.out.tfevents.1695039377.msip-dell.ims.rwth-aachen.de.792540.6 differ
diff --git a/runs/fashion_trainer_20230918_141619/Training vs. Validation Loss_Training/events.out.tfevents.1695039380.msip-dell.ims.rwth-aachen.de.792540.10 b/runs/fashion_trainer_20230918_141619/Training vs. Validation Loss_Training/events.out.tfevents.1695039380.msip-dell.ims.rwth-aachen.de.792540.10
new file mode 100644
index 0000000000000000000000000000000000000000..84be8168259b385b189050aca9ffcedccaeee839
Binary files /dev/null and b/runs/fashion_trainer_20230918_141619/Training vs. Validation Loss_Training/events.out.tfevents.1695039380.msip-dell.ims.rwth-aachen.de.792540.10 differ
diff --git a/runs/fashion_trainer_20230918_141619/Training vs. Validation Loss_Validation/events.out.tfevents.1695039380.msip-dell.ims.rwth-aachen.de.792540.11 b/runs/fashion_trainer_20230918_141619/Training vs. Validation Loss_Validation/events.out.tfevents.1695039380.msip-dell.ims.rwth-aachen.de.792540.11
new file mode 100644
index 0000000000000000000000000000000000000000..87c8805f75b149a3bc06712bce522d78fe606299
Binary files /dev/null and b/runs/fashion_trainer_20230918_141619/Training vs. Validation Loss_Validation/events.out.tfevents.1695039380.msip-dell.ims.rwth-aachen.de.792540.11 differ
diff --git a/runs/fashion_trainer_20230918_141619/events.out.tfevents.1695039379.msip-dell.ims.rwth-aachen.de.792540.9 b/runs/fashion_trainer_20230918_141619/events.out.tfevents.1695039379.msip-dell.ims.rwth-aachen.de.792540.9
new file mode 100644
index 0000000000000000000000000000000000000000..ca2159165c7968802fd4856452391da12e65d886
Binary files /dev/null and b/runs/fashion_trainer_20230918_141619/events.out.tfevents.1695039379.msip-dell.ims.rwth-aachen.de.792540.9 differ
diff --git a/runs/fashion_trainer_20230918_141621/Training vs. Validation Loss_Training/events.out.tfevents.1695039382.msip-dell.ims.rwth-aachen.de.792540.13 b/runs/fashion_trainer_20230918_141621/Training vs. Validation Loss_Training/events.out.tfevents.1695039382.msip-dell.ims.rwth-aachen.de.792540.13
new file mode 100644
index 0000000000000000000000000000000000000000..2553167e91da5463fc87d4b3481e8b578850e286
Binary files /dev/null and b/runs/fashion_trainer_20230918_141621/Training vs. Validation Loss_Training/events.out.tfevents.1695039382.msip-dell.ims.rwth-aachen.de.792540.13 differ
diff --git a/runs/fashion_trainer_20230918_141621/Training vs. Validation Loss_Validation/events.out.tfevents.1695039382.msip-dell.ims.rwth-aachen.de.792540.14 b/runs/fashion_trainer_20230918_141621/Training vs. Validation Loss_Validation/events.out.tfevents.1695039382.msip-dell.ims.rwth-aachen.de.792540.14
new file mode 100644
index 0000000000000000000000000000000000000000..68d589120ce0b867b2d7a6758c7b1d915df6d1d5
Binary files /dev/null and b/runs/fashion_trainer_20230918_141621/Training vs. Validation Loss_Validation/events.out.tfevents.1695039382.msip-dell.ims.rwth-aachen.de.792540.14 differ
diff --git a/runs/fashion_trainer_20230918_141621/events.out.tfevents.1695039381.msip-dell.ims.rwth-aachen.de.792540.12 b/runs/fashion_trainer_20230918_141621/events.out.tfevents.1695039381.msip-dell.ims.rwth-aachen.de.792540.12
new file mode 100644
index 0000000000000000000000000000000000000000..8e1e666813fed4f1bfcd978c786aac41e764e8a2
Binary files /dev/null and b/runs/fashion_trainer_20230918_141621/events.out.tfevents.1695039381.msip-dell.ims.rwth-aachen.de.792540.12 differ
diff --git a/runs/fashion_trainer_20230918_141623/Training vs. Validation Loss_Training/events.out.tfevents.1695039384.msip-dell.ims.rwth-aachen.de.792540.16 b/runs/fashion_trainer_20230918_141623/Training vs. Validation Loss_Training/events.out.tfevents.1695039384.msip-dell.ims.rwth-aachen.de.792540.16
new file mode 100644
index 0000000000000000000000000000000000000000..88aec02d3d79dffc59d3bf474af7b3cf4a3cd378
Binary files /dev/null and b/runs/fashion_trainer_20230918_141623/Training vs. Validation Loss_Training/events.out.tfevents.1695039384.msip-dell.ims.rwth-aachen.de.792540.16 differ
diff --git a/runs/fashion_trainer_20230918_141623/Training vs. Validation Loss_Validation/events.out.tfevents.1695039384.msip-dell.ims.rwth-aachen.de.792540.17 b/runs/fashion_trainer_20230918_141623/Training vs. Validation Loss_Validation/events.out.tfevents.1695039384.msip-dell.ims.rwth-aachen.de.792540.17
new file mode 100644
index 0000000000000000000000000000000000000000..b569405a4155099d8a2eb9a4ce5c993137b196de
Binary files /dev/null and b/runs/fashion_trainer_20230918_141623/Training vs. Validation Loss_Validation/events.out.tfevents.1695039384.msip-dell.ims.rwth-aachen.de.792540.17 differ
diff --git a/runs/fashion_trainer_20230918_141623/events.out.tfevents.1695039383.msip-dell.ims.rwth-aachen.de.792540.15 b/runs/fashion_trainer_20230918_141623/events.out.tfevents.1695039383.msip-dell.ims.rwth-aachen.de.792540.15
new file mode 100644
index 0000000000000000000000000000000000000000..72d1c9dd9315b9ace3e6da6ba77b07e9c06f91bc
Binary files /dev/null and b/runs/fashion_trainer_20230918_141623/events.out.tfevents.1695039383.msip-dell.ims.rwth-aachen.de.792540.15 differ
diff --git a/runs/fashion_trainer_20230918_141626/Training vs. Validation Loss_Training/events.out.tfevents.1695039387.msip-dell.ims.rwth-aachen.de.792540.19 b/runs/fashion_trainer_20230918_141626/Training vs. Validation Loss_Training/events.out.tfevents.1695039387.msip-dell.ims.rwth-aachen.de.792540.19
new file mode 100644
index 0000000000000000000000000000000000000000..ba5b62b925573667c68615863b4a0c8f2020b516
Binary files /dev/null and b/runs/fashion_trainer_20230918_141626/Training vs. Validation Loss_Training/events.out.tfevents.1695039387.msip-dell.ims.rwth-aachen.de.792540.19 differ
diff --git a/runs/fashion_trainer_20230918_141626/Training vs. Validation Loss_Validation/events.out.tfevents.1695039387.msip-dell.ims.rwth-aachen.de.792540.20 b/runs/fashion_trainer_20230918_141626/Training vs. Validation Loss_Validation/events.out.tfevents.1695039387.msip-dell.ims.rwth-aachen.de.792540.20
new file mode 100644
index 0000000000000000000000000000000000000000..1d0f2e4769d00224e0d7415f0cc9cece4d054626
Binary files /dev/null and b/runs/fashion_trainer_20230918_141626/Training vs. Validation Loss_Validation/events.out.tfevents.1695039387.msip-dell.ims.rwth-aachen.de.792540.20 differ
diff --git a/runs/fashion_trainer_20230918_141626/events.out.tfevents.1695039386.msip-dell.ims.rwth-aachen.de.792540.18 b/runs/fashion_trainer_20230918_141626/events.out.tfevents.1695039386.msip-dell.ims.rwth-aachen.de.792540.18
new file mode 100644
index 0000000000000000000000000000000000000000..f8efe6fd9330ba463b271b8d34634d5ae4dffeef
Binary files /dev/null and b/runs/fashion_trainer_20230918_141626/events.out.tfevents.1695039386.msip-dell.ims.rwth-aachen.de.792540.18 differ
diff --git a/runs/fashion_trainer_20230918_141627/Training vs. Validation Loss_Training/events.out.tfevents.1695039388.msip-dell.ims.rwth-aachen.de.792540.22 b/runs/fashion_trainer_20230918_141627/Training vs. Validation Loss_Training/events.out.tfevents.1695039388.msip-dell.ims.rwth-aachen.de.792540.22
new file mode 100644
index 0000000000000000000000000000000000000000..41915b0356ac07bf5e6452640044afe564477269
Binary files /dev/null and b/runs/fashion_trainer_20230918_141627/Training vs. Validation Loss_Training/events.out.tfevents.1695039388.msip-dell.ims.rwth-aachen.de.792540.22 differ
diff --git a/runs/fashion_trainer_20230918_141627/Training vs. Validation Loss_Validation/events.out.tfevents.1695039388.msip-dell.ims.rwth-aachen.de.792540.23 b/runs/fashion_trainer_20230918_141627/Training vs. Validation Loss_Validation/events.out.tfevents.1695039388.msip-dell.ims.rwth-aachen.de.792540.23
new file mode 100644
index 0000000000000000000000000000000000000000..d2050f2686fefd5a54b8849fae534d95260c6b30
Binary files /dev/null and b/runs/fashion_trainer_20230918_141627/Training vs. Validation Loss_Validation/events.out.tfevents.1695039388.msip-dell.ims.rwth-aachen.de.792540.23 differ
diff --git a/runs/fashion_trainer_20230918_141627/events.out.tfevents.1695039387.msip-dell.ims.rwth-aachen.de.792540.21 b/runs/fashion_trainer_20230918_141627/events.out.tfevents.1695039387.msip-dell.ims.rwth-aachen.de.792540.21
new file mode 100644
index 0000000000000000000000000000000000000000..61ddb53119f6c86c25c91ff960d95aea3d8f002d
Binary files /dev/null and b/runs/fashion_trainer_20230918_141627/events.out.tfevents.1695039387.msip-dell.ims.rwth-aachen.de.792540.21 differ
diff --git a/runs/fashion_trainer_20230918_141719/Training vs. Validation Loss_Training/events.out.tfevents.1695039440.msip-dell.ims.rwth-aachen.de.793090.1 b/runs/fashion_trainer_20230918_141719/Training vs. Validation Loss_Training/events.out.tfevents.1695039440.msip-dell.ims.rwth-aachen.de.793090.1
new file mode 100644
index 0000000000000000000000000000000000000000..0c22fbfb54c012883b326ac371d6f41509c4ae1c
Binary files /dev/null and b/runs/fashion_trainer_20230918_141719/Training vs. Validation Loss_Training/events.out.tfevents.1695039440.msip-dell.ims.rwth-aachen.de.793090.1 differ
diff --git a/runs/fashion_trainer_20230918_141719/Training vs. Validation Loss_Validation/events.out.tfevents.1695039440.msip-dell.ims.rwth-aachen.de.793090.2 b/runs/fashion_trainer_20230918_141719/Training vs. Validation Loss_Validation/events.out.tfevents.1695039440.msip-dell.ims.rwth-aachen.de.793090.2
new file mode 100644
index 0000000000000000000000000000000000000000..c666293732aeae59ad60be620c63cb31c8701092
Binary files /dev/null and b/runs/fashion_trainer_20230918_141719/Training vs. Validation Loss_Validation/events.out.tfevents.1695039440.msip-dell.ims.rwth-aachen.de.793090.2 differ
diff --git a/runs/fashion_trainer_20230918_141719/events.out.tfevents.1695039439.msip-dell.ims.rwth-aachen.de.793090.0 b/runs/fashion_trainer_20230918_141719/events.out.tfevents.1695039439.msip-dell.ims.rwth-aachen.de.793090.0
new file mode 100644
index 0000000000000000000000000000000000000000..0baafff78e98de2b7e79757a898f70a5cbda5463
Binary files /dev/null and b/runs/fashion_trainer_20230918_141719/events.out.tfevents.1695039439.msip-dell.ims.rwth-aachen.de.793090.0 differ
diff --git a/runs/fashion_trainer_20230918_141721/Training vs. Validation Loss_Training/events.out.tfevents.1695039442.msip-dell.ims.rwth-aachen.de.793090.4 b/runs/fashion_trainer_20230918_141721/Training vs. Validation Loss_Training/events.out.tfevents.1695039442.msip-dell.ims.rwth-aachen.de.793090.4
new file mode 100644
index 0000000000000000000000000000000000000000..c18e98f1183194ea2e9561afe906f354d4f3ff39
Binary files /dev/null and b/runs/fashion_trainer_20230918_141721/Training vs. Validation Loss_Training/events.out.tfevents.1695039442.msip-dell.ims.rwth-aachen.de.793090.4 differ
diff --git a/runs/fashion_trainer_20230918_141721/Training vs. Validation Loss_Validation/events.out.tfevents.1695039442.msip-dell.ims.rwth-aachen.de.793090.5 b/runs/fashion_trainer_20230918_141721/Training vs. Validation Loss_Validation/events.out.tfevents.1695039442.msip-dell.ims.rwth-aachen.de.793090.5
new file mode 100644
index 0000000000000000000000000000000000000000..7b77d3d192c2e655dc8f0412d6d10dfdd513db24
Binary files /dev/null and b/runs/fashion_trainer_20230918_141721/Training vs. Validation Loss_Validation/events.out.tfevents.1695039442.msip-dell.ims.rwth-aachen.de.793090.5 differ
diff --git a/runs/fashion_trainer_20230918_141721/events.out.tfevents.1695039441.msip-dell.ims.rwth-aachen.de.793090.3 b/runs/fashion_trainer_20230918_141721/events.out.tfevents.1695039441.msip-dell.ims.rwth-aachen.de.793090.3
new file mode 100644
index 0000000000000000000000000000000000000000..8f37cfe37aed9d379bab4c2f0b4cda7e98dc3613
Binary files /dev/null and b/runs/fashion_trainer_20230918_141721/events.out.tfevents.1695039441.msip-dell.ims.rwth-aachen.de.793090.3 differ
diff --git a/runs/fashion_trainer_20230918_141723/Training vs. Validation Loss_Training/events.out.tfevents.1695039443.msip-dell.ims.rwth-aachen.de.793090.7 b/runs/fashion_trainer_20230918_141723/Training vs. Validation Loss_Training/events.out.tfevents.1695039443.msip-dell.ims.rwth-aachen.de.793090.7
new file mode 100644
index 0000000000000000000000000000000000000000..dcbc07ea325d19412c4b459ba3000633cd8876aa
Binary files /dev/null and b/runs/fashion_trainer_20230918_141723/Training vs. Validation Loss_Training/events.out.tfevents.1695039443.msip-dell.ims.rwth-aachen.de.793090.7 differ
diff --git a/runs/fashion_trainer_20230918_141723/Training vs. Validation Loss_Validation/events.out.tfevents.1695039443.msip-dell.ims.rwth-aachen.de.793090.8 b/runs/fashion_trainer_20230918_141723/Training vs. Validation Loss_Validation/events.out.tfevents.1695039443.msip-dell.ims.rwth-aachen.de.793090.8
new file mode 100644
index 0000000000000000000000000000000000000000..6d11c87f86360f11851b84961190d55ac6f3fd60
Binary files /dev/null and b/runs/fashion_trainer_20230918_141723/Training vs. Validation Loss_Validation/events.out.tfevents.1695039443.msip-dell.ims.rwth-aachen.de.793090.8 differ
diff --git a/runs/fashion_trainer_20230918_141723/events.out.tfevents.1695039443.msip-dell.ims.rwth-aachen.de.793090.6 b/runs/fashion_trainer_20230918_141723/events.out.tfevents.1695039443.msip-dell.ims.rwth-aachen.de.793090.6
new file mode 100644
index 0000000000000000000000000000000000000000..86ef539bc8dfe165fbc49e9465fd9da2cee8ccde
Binary files /dev/null and b/runs/fashion_trainer_20230918_141723/events.out.tfevents.1695039443.msip-dell.ims.rwth-aachen.de.793090.6 differ
diff --git a/runs/fashion_trainer_20230918_141724/Training vs. Validation Loss_Training/events.out.tfevents.1695039445.msip-dell.ims.rwth-aachen.de.793090.10 b/runs/fashion_trainer_20230918_141724/Training vs. Validation Loss_Training/events.out.tfevents.1695039445.msip-dell.ims.rwth-aachen.de.793090.10
new file mode 100644
index 0000000000000000000000000000000000000000..bf947c9a2cabc96d6b92b96f6cb8cc329075ce99
Binary files /dev/null and b/runs/fashion_trainer_20230918_141724/Training vs. Validation Loss_Training/events.out.tfevents.1695039445.msip-dell.ims.rwth-aachen.de.793090.10 differ
diff --git a/runs/fashion_trainer_20230918_141724/Training vs. Validation Loss_Validation/events.out.tfevents.1695039445.msip-dell.ims.rwth-aachen.de.793090.11 b/runs/fashion_trainer_20230918_141724/Training vs. Validation Loss_Validation/events.out.tfevents.1695039445.msip-dell.ims.rwth-aachen.de.793090.11
new file mode 100644
index 0000000000000000000000000000000000000000..caf64e91ec7af004987d4d630584fed1365dd5cd
Binary files /dev/null and b/runs/fashion_trainer_20230918_141724/Training vs. Validation Loss_Validation/events.out.tfevents.1695039445.msip-dell.ims.rwth-aachen.de.793090.11 differ
diff --git a/runs/fashion_trainer_20230918_141724/events.out.tfevents.1695039444.msip-dell.ims.rwth-aachen.de.793090.9 b/runs/fashion_trainer_20230918_141724/events.out.tfevents.1695039444.msip-dell.ims.rwth-aachen.de.793090.9
new file mode 100644
index 0000000000000000000000000000000000000000..5a45ef2b04f526800c0328adcc734c31448a2547
Binary files /dev/null and b/runs/fashion_trainer_20230918_141724/events.out.tfevents.1695039444.msip-dell.ims.rwth-aachen.de.793090.9 differ
diff --git a/runs/fashion_trainer_20230918_141726/Training vs. Validation Loss_Training/events.out.tfevents.1695039447.msip-dell.ims.rwth-aachen.de.793090.13 b/runs/fashion_trainer_20230918_141726/Training vs. Validation Loss_Training/events.out.tfevents.1695039447.msip-dell.ims.rwth-aachen.de.793090.13
new file mode 100644
index 0000000000000000000000000000000000000000..85245c60bd20efa81dff1b0d6fe6fbd888bbadfe
Binary files /dev/null and b/runs/fashion_trainer_20230918_141726/Training vs. Validation Loss_Training/events.out.tfevents.1695039447.msip-dell.ims.rwth-aachen.de.793090.13 differ
diff --git a/runs/fashion_trainer_20230918_141726/Training vs. Validation Loss_Validation/events.out.tfevents.1695039447.msip-dell.ims.rwth-aachen.de.793090.14 b/runs/fashion_trainer_20230918_141726/Training vs. Validation Loss_Validation/events.out.tfevents.1695039447.msip-dell.ims.rwth-aachen.de.793090.14
new file mode 100644
index 0000000000000000000000000000000000000000..26427d895b785481c93236ea38612f8afba72a74
Binary files /dev/null and b/runs/fashion_trainer_20230918_141726/Training vs. Validation Loss_Validation/events.out.tfevents.1695039447.msip-dell.ims.rwth-aachen.de.793090.14 differ
diff --git a/runs/fashion_trainer_20230918_141726/events.out.tfevents.1695039446.msip-dell.ims.rwth-aachen.de.793090.12 b/runs/fashion_trainer_20230918_141726/events.out.tfevents.1695039446.msip-dell.ims.rwth-aachen.de.793090.12
new file mode 100644
index 0000000000000000000000000000000000000000..71f7ccc936229d948f486fb383982eb7eff3ca7d
Binary files /dev/null and b/runs/fashion_trainer_20230918_141726/events.out.tfevents.1695039446.msip-dell.ims.rwth-aachen.de.793090.12 differ
diff --git a/runs/fashion_trainer_20230918_141728/Training vs. Validation Loss_Training/events.out.tfevents.1695039449.msip-dell.ims.rwth-aachen.de.793090.16 b/runs/fashion_trainer_20230918_141728/Training vs. Validation Loss_Training/events.out.tfevents.1695039449.msip-dell.ims.rwth-aachen.de.793090.16
new file mode 100644
index 0000000000000000000000000000000000000000..29bba057094d4dc8ee4b9480740b4d74877cfeca
Binary files /dev/null and b/runs/fashion_trainer_20230918_141728/Training vs. Validation Loss_Training/events.out.tfevents.1695039449.msip-dell.ims.rwth-aachen.de.793090.16 differ
diff --git a/runs/fashion_trainer_20230918_141728/Training vs. Validation Loss_Validation/events.out.tfevents.1695039449.msip-dell.ims.rwth-aachen.de.793090.17 b/runs/fashion_trainer_20230918_141728/Training vs. Validation Loss_Validation/events.out.tfevents.1695039449.msip-dell.ims.rwth-aachen.de.793090.17
new file mode 100644
index 0000000000000000000000000000000000000000..c0c80bd3b94d5a2c83a1e6b97ccbed924dd43d6e
Binary files /dev/null and b/runs/fashion_trainer_20230918_141728/Training vs. Validation Loss_Validation/events.out.tfevents.1695039449.msip-dell.ims.rwth-aachen.de.793090.17 differ
diff --git a/runs/fashion_trainer_20230918_141728/events.out.tfevents.1695039448.msip-dell.ims.rwth-aachen.de.793090.15 b/runs/fashion_trainer_20230918_141728/events.out.tfevents.1695039448.msip-dell.ims.rwth-aachen.de.793090.15
new file mode 100644
index 0000000000000000000000000000000000000000..80e66a6cf0bcad0c89d7e8f44d0caa9e902d03b3
Binary files /dev/null and b/runs/fashion_trainer_20230918_141728/events.out.tfevents.1695039448.msip-dell.ims.rwth-aachen.de.793090.15 differ
diff --git a/runs/fashion_trainer_20230918_141731/Training vs. Validation Loss_Training/events.out.tfevents.1695039452.msip-dell.ims.rwth-aachen.de.793090.19 b/runs/fashion_trainer_20230918_141731/Training vs. Validation Loss_Training/events.out.tfevents.1695039452.msip-dell.ims.rwth-aachen.de.793090.19
new file mode 100644
index 0000000000000000000000000000000000000000..af0f516add3ced9f2009e3f2b510f10b2e2340b0
Binary files /dev/null and b/runs/fashion_trainer_20230918_141731/Training vs. Validation Loss_Training/events.out.tfevents.1695039452.msip-dell.ims.rwth-aachen.de.793090.19 differ
diff --git a/runs/fashion_trainer_20230918_141731/Training vs. Validation Loss_Validation/events.out.tfevents.1695039452.msip-dell.ims.rwth-aachen.de.793090.20 b/runs/fashion_trainer_20230918_141731/Training vs. Validation Loss_Validation/events.out.tfevents.1695039452.msip-dell.ims.rwth-aachen.de.793090.20
new file mode 100644
index 0000000000000000000000000000000000000000..c6b50819cc9e975b299d3cf033b02a82a225d446
Binary files /dev/null and b/runs/fashion_trainer_20230918_141731/Training vs. Validation Loss_Validation/events.out.tfevents.1695039452.msip-dell.ims.rwth-aachen.de.793090.20 differ
diff --git a/runs/fashion_trainer_20230918_141731/events.out.tfevents.1695039451.msip-dell.ims.rwth-aachen.de.793090.18 b/runs/fashion_trainer_20230918_141731/events.out.tfevents.1695039451.msip-dell.ims.rwth-aachen.de.793090.18
new file mode 100644
index 0000000000000000000000000000000000000000..ff869c57ef6a85869ffafbdcf1d83e494a1ce577
Binary files /dev/null and b/runs/fashion_trainer_20230918_141731/events.out.tfevents.1695039451.msip-dell.ims.rwth-aachen.de.793090.18 differ
diff --git a/runs/fashion_trainer_20230918_141757/Training vs. Validation Loss_Training/events.out.tfevents.1695039478.msip-dell.ims.rwth-aachen.de.793415.1 b/runs/fashion_trainer_20230918_141757/Training vs. Validation Loss_Training/events.out.tfevents.1695039478.msip-dell.ims.rwth-aachen.de.793415.1
new file mode 100644
index 0000000000000000000000000000000000000000..0ee230ce8779f5285a9aca6696b424202f5aca52
Binary files /dev/null and b/runs/fashion_trainer_20230918_141757/Training vs. Validation Loss_Training/events.out.tfevents.1695039478.msip-dell.ims.rwth-aachen.de.793415.1 differ
diff --git a/runs/fashion_trainer_20230918_141757/Training vs. Validation Loss_Validation/events.out.tfevents.1695039478.msip-dell.ims.rwth-aachen.de.793415.2 b/runs/fashion_trainer_20230918_141757/Training vs. Validation Loss_Validation/events.out.tfevents.1695039478.msip-dell.ims.rwth-aachen.de.793415.2
new file mode 100644
index 0000000000000000000000000000000000000000..81a0b2a5ee6a90af6129ca0c7fb1451d3347ac34
Binary files /dev/null and b/runs/fashion_trainer_20230918_141757/Training vs. Validation Loss_Validation/events.out.tfevents.1695039478.msip-dell.ims.rwth-aachen.de.793415.2 differ
diff --git a/runs/fashion_trainer_20230918_141757/events.out.tfevents.1695039477.msip-dell.ims.rwth-aachen.de.793415.0 b/runs/fashion_trainer_20230918_141757/events.out.tfevents.1695039477.msip-dell.ims.rwth-aachen.de.793415.0
new file mode 100644
index 0000000000000000000000000000000000000000..b534c8bc4cb65b083fc13b4f0dcd337348175172
Binary files /dev/null and b/runs/fashion_trainer_20230918_141757/events.out.tfevents.1695039477.msip-dell.ims.rwth-aachen.de.793415.0 differ
diff --git a/runs/fashion_trainer_20230918_141759/Training vs. Validation Loss_Training/events.out.tfevents.1695039480.msip-dell.ims.rwth-aachen.de.793415.4 b/runs/fashion_trainer_20230918_141759/Training vs. Validation Loss_Training/events.out.tfevents.1695039480.msip-dell.ims.rwth-aachen.de.793415.4
new file mode 100644
index 0000000000000000000000000000000000000000..b5a30f211be8f6f4f73b661a17da500d5727c2eb
Binary files /dev/null and b/runs/fashion_trainer_20230918_141759/Training vs. Validation Loss_Training/events.out.tfevents.1695039480.msip-dell.ims.rwth-aachen.de.793415.4 differ
diff --git a/runs/fashion_trainer_20230918_141759/Training vs. Validation Loss_Validation/events.out.tfevents.1695039480.msip-dell.ims.rwth-aachen.de.793415.5 b/runs/fashion_trainer_20230918_141759/Training vs. Validation Loss_Validation/events.out.tfevents.1695039480.msip-dell.ims.rwth-aachen.de.793415.5
new file mode 100644
index 0000000000000000000000000000000000000000..f21dc131dbaaa17fa731c8c43b544d169ce18d49
Binary files /dev/null and b/runs/fashion_trainer_20230918_141759/Training vs. Validation Loss_Validation/events.out.tfevents.1695039480.msip-dell.ims.rwth-aachen.de.793415.5 differ
diff --git a/runs/fashion_trainer_20230918_141759/events.out.tfevents.1695039479.msip-dell.ims.rwth-aachen.de.793415.3 b/runs/fashion_trainer_20230918_141759/events.out.tfevents.1695039479.msip-dell.ims.rwth-aachen.de.793415.3
new file mode 100644
index 0000000000000000000000000000000000000000..57c8f60d31429bfbb2a4aeefc8f3edff55cd0a8b
Binary files /dev/null and b/runs/fashion_trainer_20230918_141759/events.out.tfevents.1695039479.msip-dell.ims.rwth-aachen.de.793415.3 differ
diff --git a/runs/fashion_trainer_20230918_141800/Training vs. Validation Loss_Training/events.out.tfevents.1695039481.msip-dell.ims.rwth-aachen.de.793415.7 b/runs/fashion_trainer_20230918_141800/Training vs. Validation Loss_Training/events.out.tfevents.1695039481.msip-dell.ims.rwth-aachen.de.793415.7
new file mode 100644
index 0000000000000000000000000000000000000000..0b94daa64c0946a67ce32616f2cccacfe8704795
Binary files /dev/null and b/runs/fashion_trainer_20230918_141800/Training vs. Validation Loss_Training/events.out.tfevents.1695039481.msip-dell.ims.rwth-aachen.de.793415.7 differ
diff --git a/runs/fashion_trainer_20230918_141800/Training vs. Validation Loss_Validation/events.out.tfevents.1695039481.msip-dell.ims.rwth-aachen.de.793415.8 b/runs/fashion_trainer_20230918_141800/Training vs. Validation Loss_Validation/events.out.tfevents.1695039481.msip-dell.ims.rwth-aachen.de.793415.8
new file mode 100644
index 0000000000000000000000000000000000000000..c300c2b130ff983f98b1f75405247bd96a6b5b05
Binary files /dev/null and b/runs/fashion_trainer_20230918_141800/Training vs. Validation Loss_Validation/events.out.tfevents.1695039481.msip-dell.ims.rwth-aachen.de.793415.8 differ
diff --git a/runs/fashion_trainer_20230918_141800/events.out.tfevents.1695039480.msip-dell.ims.rwth-aachen.de.793415.6 b/runs/fashion_trainer_20230918_141800/events.out.tfevents.1695039480.msip-dell.ims.rwth-aachen.de.793415.6
new file mode 100644
index 0000000000000000000000000000000000000000..17b96e446b5c9207a749b85eda70d0338568d15f
Binary files /dev/null and b/runs/fashion_trainer_20230918_141800/events.out.tfevents.1695039480.msip-dell.ims.rwth-aachen.de.793415.6 differ
diff --git a/runs/fashion_trainer_20230918_141802/Training vs. Validation Loss_Training/events.out.tfevents.1695039483.msip-dell.ims.rwth-aachen.de.793415.10 b/runs/fashion_trainer_20230918_141802/Training vs. Validation Loss_Training/events.out.tfevents.1695039483.msip-dell.ims.rwth-aachen.de.793415.10
new file mode 100644
index 0000000000000000000000000000000000000000..7fdf396d466f530f015397df06166e02acfb017b
Binary files /dev/null and b/runs/fashion_trainer_20230918_141802/Training vs. Validation Loss_Training/events.out.tfevents.1695039483.msip-dell.ims.rwth-aachen.de.793415.10 differ
diff --git a/runs/fashion_trainer_20230918_141802/Training vs. Validation Loss_Validation/events.out.tfevents.1695039483.msip-dell.ims.rwth-aachen.de.793415.11 b/runs/fashion_trainer_20230918_141802/Training vs. Validation Loss_Validation/events.out.tfevents.1695039483.msip-dell.ims.rwth-aachen.de.793415.11
new file mode 100644
index 0000000000000000000000000000000000000000..639b90e6605d855654034cfad44fde98e76e4587
Binary files /dev/null and b/runs/fashion_trainer_20230918_141802/Training vs. Validation Loss_Validation/events.out.tfevents.1695039483.msip-dell.ims.rwth-aachen.de.793415.11 differ
diff --git a/runs/fashion_trainer_20230918_141802/events.out.tfevents.1695039482.msip-dell.ims.rwth-aachen.de.793415.9 b/runs/fashion_trainer_20230918_141802/events.out.tfevents.1695039482.msip-dell.ims.rwth-aachen.de.793415.9
new file mode 100644
index 0000000000000000000000000000000000000000..84fbed5da72cb040407b146b0fc58c015626c8a8
Binary files /dev/null and b/runs/fashion_trainer_20230918_141802/events.out.tfevents.1695039482.msip-dell.ims.rwth-aachen.de.793415.9 differ
diff --git a/runs/fashion_trainer_20230918_141805/Training vs. Validation Loss_Training/events.out.tfevents.1695039486.msip-dell.ims.rwth-aachen.de.793415.13 b/runs/fashion_trainer_20230918_141805/Training vs. Validation Loss_Training/events.out.tfevents.1695039486.msip-dell.ims.rwth-aachen.de.793415.13
new file mode 100644
index 0000000000000000000000000000000000000000..f175cba6f242c0221e84d0c79bd4ad7c699aae05
Binary files /dev/null and b/runs/fashion_trainer_20230918_141805/Training vs. Validation Loss_Training/events.out.tfevents.1695039486.msip-dell.ims.rwth-aachen.de.793415.13 differ
diff --git a/runs/fashion_trainer_20230918_141805/Training vs. Validation Loss_Validation/events.out.tfevents.1695039486.msip-dell.ims.rwth-aachen.de.793415.14 b/runs/fashion_trainer_20230918_141805/Training vs. Validation Loss_Validation/events.out.tfevents.1695039486.msip-dell.ims.rwth-aachen.de.793415.14
new file mode 100644
index 0000000000000000000000000000000000000000..911e269b5360b22e4833c8bc29829045c52c78c4
Binary files /dev/null and b/runs/fashion_trainer_20230918_141805/Training vs. Validation Loss_Validation/events.out.tfevents.1695039486.msip-dell.ims.rwth-aachen.de.793415.14 differ
diff --git a/runs/fashion_trainer_20230918_141805/events.out.tfevents.1695039485.msip-dell.ims.rwth-aachen.de.793415.12 b/runs/fashion_trainer_20230918_141805/events.out.tfevents.1695039485.msip-dell.ims.rwth-aachen.de.793415.12
new file mode 100644
index 0000000000000000000000000000000000000000..ba30531c715e2febade9a45c525978b5d28ad65e
Binary files /dev/null and b/runs/fashion_trainer_20230918_141805/events.out.tfevents.1695039485.msip-dell.ims.rwth-aachen.de.793415.12 differ
diff --git a/runs/fashion_trainer_20230918_141807/Training vs. Validation Loss_Training/events.out.tfevents.1695039488.msip-dell.ims.rwth-aachen.de.793415.16 b/runs/fashion_trainer_20230918_141807/Training vs. Validation Loss_Training/events.out.tfevents.1695039488.msip-dell.ims.rwth-aachen.de.793415.16
new file mode 100644
index 0000000000000000000000000000000000000000..8333631e995f50c0d312012412e54cfd7943c1f7
Binary files /dev/null and b/runs/fashion_trainer_20230918_141807/Training vs. Validation Loss_Training/events.out.tfevents.1695039488.msip-dell.ims.rwth-aachen.de.793415.16 differ
diff --git a/runs/fashion_trainer_20230918_141807/Training vs. Validation Loss_Validation/events.out.tfevents.1695039488.msip-dell.ims.rwth-aachen.de.793415.17 b/runs/fashion_trainer_20230918_141807/Training vs. Validation Loss_Validation/events.out.tfevents.1695039488.msip-dell.ims.rwth-aachen.de.793415.17
new file mode 100644
index 0000000000000000000000000000000000000000..b4042f8d96f5e7a464f56f7eeef691cfb8d30d64
Binary files /dev/null and b/runs/fashion_trainer_20230918_141807/Training vs. Validation Loss_Validation/events.out.tfevents.1695039488.msip-dell.ims.rwth-aachen.de.793415.17 differ
diff --git a/runs/fashion_trainer_20230918_141807/events.out.tfevents.1695039487.msip-dell.ims.rwth-aachen.de.793415.15 b/runs/fashion_trainer_20230918_141807/events.out.tfevents.1695039487.msip-dell.ims.rwth-aachen.de.793415.15
new file mode 100644
index 0000000000000000000000000000000000000000..18848ee17350ad29349ae17a064c6503e3391dff
Binary files /dev/null and b/runs/fashion_trainer_20230918_141807/events.out.tfevents.1695039487.msip-dell.ims.rwth-aachen.de.793415.15 differ
diff --git a/runs/fashion_trainer_20230918_141810/Training vs. Validation Loss_Training/events.out.tfevents.1695039491.msip-dell.ims.rwth-aachen.de.793415.19 b/runs/fashion_trainer_20230918_141810/Training vs. Validation Loss_Training/events.out.tfevents.1695039491.msip-dell.ims.rwth-aachen.de.793415.19
new file mode 100644
index 0000000000000000000000000000000000000000..f397b2cdfc1224cdc4c0c5acfa35759b7aaf50f8
Binary files /dev/null and b/runs/fashion_trainer_20230918_141810/Training vs. Validation Loss_Training/events.out.tfevents.1695039491.msip-dell.ims.rwth-aachen.de.793415.19 differ
diff --git a/runs/fashion_trainer_20230918_141810/Training vs. Validation Loss_Validation/events.out.tfevents.1695039491.msip-dell.ims.rwth-aachen.de.793415.20 b/runs/fashion_trainer_20230918_141810/Training vs. Validation Loss_Validation/events.out.tfevents.1695039491.msip-dell.ims.rwth-aachen.de.793415.20
new file mode 100644
index 0000000000000000000000000000000000000000..521e78809e7a507e57158f235861f17752453f9d
Binary files /dev/null and b/runs/fashion_trainer_20230918_141810/Training vs. Validation Loss_Validation/events.out.tfevents.1695039491.msip-dell.ims.rwth-aachen.de.793415.20 differ
diff --git a/runs/fashion_trainer_20230918_141810/events.out.tfevents.1695039490.msip-dell.ims.rwth-aachen.de.793415.18 b/runs/fashion_trainer_20230918_141810/events.out.tfevents.1695039490.msip-dell.ims.rwth-aachen.de.793415.18
new file mode 100644
index 0000000000000000000000000000000000000000..8321fd17a75263a78fdf9fdcc691026cf776360e
Binary files /dev/null and b/runs/fashion_trainer_20230918_141810/events.out.tfevents.1695039490.msip-dell.ims.rwth-aachen.de.793415.18 differ
diff --git a/runs/fashion_trainer_20230918_142913/Training vs. Validation Loss_Training/events.out.tfevents.1695040154.msip-dell.ims.rwth-aachen.de.795033.1 b/runs/fashion_trainer_20230918_142913/Training vs. Validation Loss_Training/events.out.tfevents.1695040154.msip-dell.ims.rwth-aachen.de.795033.1
new file mode 100644
index 0000000000000000000000000000000000000000..7761ddfa51f7fcabc7b0e9292f3b51a0938c64c9
Binary files /dev/null and b/runs/fashion_trainer_20230918_142913/Training vs. Validation Loss_Training/events.out.tfevents.1695040154.msip-dell.ims.rwth-aachen.de.795033.1 differ
diff --git a/runs/fashion_trainer_20230918_142913/Training vs. Validation Loss_Validation/events.out.tfevents.1695040154.msip-dell.ims.rwth-aachen.de.795033.2 b/runs/fashion_trainer_20230918_142913/Training vs. Validation Loss_Validation/events.out.tfevents.1695040154.msip-dell.ims.rwth-aachen.de.795033.2
new file mode 100644
index 0000000000000000000000000000000000000000..056f02011727339fbf9ceb6b6aea1c8361970921
Binary files /dev/null and b/runs/fashion_trainer_20230918_142913/Training vs. Validation Loss_Validation/events.out.tfevents.1695040154.msip-dell.ims.rwth-aachen.de.795033.2 differ
diff --git a/runs/fashion_trainer_20230918_142913/events.out.tfevents.1695040153.msip-dell.ims.rwth-aachen.de.795033.0 b/runs/fashion_trainer_20230918_142913/events.out.tfevents.1695040153.msip-dell.ims.rwth-aachen.de.795033.0
new file mode 100644
index 0000000000000000000000000000000000000000..502949233c683b47f930c3b4d6caf3c483943861
Binary files /dev/null and b/runs/fashion_trainer_20230918_142913/events.out.tfevents.1695040153.msip-dell.ims.rwth-aachen.de.795033.0 differ
diff --git a/runs/fashion_trainer_20230918_142919/Training vs. Validation Loss_Training/events.out.tfevents.1695040160.msip-dell.ims.rwth-aachen.de.795033.4 b/runs/fashion_trainer_20230918_142919/Training vs. Validation Loss_Training/events.out.tfevents.1695040160.msip-dell.ims.rwth-aachen.de.795033.4
new file mode 100644
index 0000000000000000000000000000000000000000..5378fdb8bec0b241ff0390a61430bd8c73359484
Binary files /dev/null and b/runs/fashion_trainer_20230918_142919/Training vs. Validation Loss_Training/events.out.tfevents.1695040160.msip-dell.ims.rwth-aachen.de.795033.4 differ
diff --git a/runs/fashion_trainer_20230918_142919/Training vs. Validation Loss_Validation/events.out.tfevents.1695040160.msip-dell.ims.rwth-aachen.de.795033.5 b/runs/fashion_trainer_20230918_142919/Training vs. Validation Loss_Validation/events.out.tfevents.1695040160.msip-dell.ims.rwth-aachen.de.795033.5
new file mode 100644
index 0000000000000000000000000000000000000000..65166b537d092751b2e3984e26cb714844b9f768
Binary files /dev/null and b/runs/fashion_trainer_20230918_142919/Training vs. Validation Loss_Validation/events.out.tfevents.1695040160.msip-dell.ims.rwth-aachen.de.795033.5 differ
diff --git a/runs/fashion_trainer_20230918_142919/events.out.tfevents.1695040159.msip-dell.ims.rwth-aachen.de.795033.3 b/runs/fashion_trainer_20230918_142919/events.out.tfevents.1695040159.msip-dell.ims.rwth-aachen.de.795033.3
new file mode 100644
index 0000000000000000000000000000000000000000..80e193033f596a338b2ecaaa5c7d49923c144a21
Binary files /dev/null and b/runs/fashion_trainer_20230918_142919/events.out.tfevents.1695040159.msip-dell.ims.rwth-aachen.de.795033.3 differ
diff --git a/runs/fashion_trainer_20230918_142922/Training vs. Validation Loss_Training/events.out.tfevents.1695040163.msip-dell.ims.rwth-aachen.de.795033.7 b/runs/fashion_trainer_20230918_142922/Training vs. Validation Loss_Training/events.out.tfevents.1695040163.msip-dell.ims.rwth-aachen.de.795033.7
new file mode 100644
index 0000000000000000000000000000000000000000..e392409953defd390f3024cf0004b1bf623c416b
Binary files /dev/null and b/runs/fashion_trainer_20230918_142922/Training vs. Validation Loss_Training/events.out.tfevents.1695040163.msip-dell.ims.rwth-aachen.de.795033.7 differ
diff --git a/runs/fashion_trainer_20230918_142922/Training vs. Validation Loss_Validation/events.out.tfevents.1695040163.msip-dell.ims.rwth-aachen.de.795033.8 b/runs/fashion_trainer_20230918_142922/Training vs. Validation Loss_Validation/events.out.tfevents.1695040163.msip-dell.ims.rwth-aachen.de.795033.8
new file mode 100644
index 0000000000000000000000000000000000000000..f065e85260ae6acedbd59978e6cca14ec1ca66c8
Binary files /dev/null and b/runs/fashion_trainer_20230918_142922/Training vs. Validation Loss_Validation/events.out.tfevents.1695040163.msip-dell.ims.rwth-aachen.de.795033.8 differ
diff --git a/runs/fashion_trainer_20230918_142922/events.out.tfevents.1695040162.msip-dell.ims.rwth-aachen.de.795033.6 b/runs/fashion_trainer_20230918_142922/events.out.tfevents.1695040162.msip-dell.ims.rwth-aachen.de.795033.6
new file mode 100644
index 0000000000000000000000000000000000000000..41cf41c0188020e899cd3634cc7ba98a8987c567
Binary files /dev/null and b/runs/fashion_trainer_20230918_142922/events.out.tfevents.1695040162.msip-dell.ims.rwth-aachen.de.795033.6 differ
diff --git a/runs/fashion_trainer_20230918_142925/Training vs. Validation Loss_Training/events.out.tfevents.1695040165.msip-dell.ims.rwth-aachen.de.795033.10 b/runs/fashion_trainer_20230918_142925/Training vs. Validation Loss_Training/events.out.tfevents.1695040165.msip-dell.ims.rwth-aachen.de.795033.10
new file mode 100644
index 0000000000000000000000000000000000000000..9f36f60d7b311a53a858f12614d1c18e4c101acd
Binary files /dev/null and b/runs/fashion_trainer_20230918_142925/Training vs. Validation Loss_Training/events.out.tfevents.1695040165.msip-dell.ims.rwth-aachen.de.795033.10 differ
diff --git a/runs/fashion_trainer_20230918_142925/Training vs. Validation Loss_Validation/events.out.tfevents.1695040165.msip-dell.ims.rwth-aachen.de.795033.11 b/runs/fashion_trainer_20230918_142925/Training vs. Validation Loss_Validation/events.out.tfevents.1695040165.msip-dell.ims.rwth-aachen.de.795033.11
new file mode 100644
index 0000000000000000000000000000000000000000..dfd9f43e17101cf04530edc63f6c3f7cc9f4842d
Binary files /dev/null and b/runs/fashion_trainer_20230918_142925/Training vs. Validation Loss_Validation/events.out.tfevents.1695040165.msip-dell.ims.rwth-aachen.de.795033.11 differ
diff --git a/runs/fashion_trainer_20230918_142925/events.out.tfevents.1695040165.msip-dell.ims.rwth-aachen.de.795033.9 b/runs/fashion_trainer_20230918_142925/events.out.tfevents.1695040165.msip-dell.ims.rwth-aachen.de.795033.9
new file mode 100644
index 0000000000000000000000000000000000000000..82489003cb94f494ef75ffc6b75521c4734be23b
Binary files /dev/null and b/runs/fashion_trainer_20230918_142925/events.out.tfevents.1695040165.msip-dell.ims.rwth-aachen.de.795033.9 differ
diff --git a/runs/fashion_trainer_20230918_142927/Training vs. Validation Loss_Training/events.out.tfevents.1695040168.msip-dell.ims.rwth-aachen.de.795033.13 b/runs/fashion_trainer_20230918_142927/Training vs. Validation Loss_Training/events.out.tfevents.1695040168.msip-dell.ims.rwth-aachen.de.795033.13
new file mode 100644
index 0000000000000000000000000000000000000000..94224849630af04e7aa7e71a1957cc5c265b5514
Binary files /dev/null and b/runs/fashion_trainer_20230918_142927/Training vs. Validation Loss_Training/events.out.tfevents.1695040168.msip-dell.ims.rwth-aachen.de.795033.13 differ
diff --git a/runs/fashion_trainer_20230918_142927/Training vs. Validation Loss_Validation/events.out.tfevents.1695040168.msip-dell.ims.rwth-aachen.de.795033.14 b/runs/fashion_trainer_20230918_142927/Training vs. Validation Loss_Validation/events.out.tfevents.1695040168.msip-dell.ims.rwth-aachen.de.795033.14
new file mode 100644
index 0000000000000000000000000000000000000000..e101684b48e85a8aeb677664786b38a92cd7e903
Binary files /dev/null and b/runs/fashion_trainer_20230918_142927/Training vs. Validation Loss_Validation/events.out.tfevents.1695040168.msip-dell.ims.rwth-aachen.de.795033.14 differ
diff --git a/runs/fashion_trainer_20230918_142927/events.out.tfevents.1695040167.msip-dell.ims.rwth-aachen.de.795033.12 b/runs/fashion_trainer_20230918_142927/events.out.tfevents.1695040167.msip-dell.ims.rwth-aachen.de.795033.12
new file mode 100644
index 0000000000000000000000000000000000000000..4d7ec314e002ca9e60cdc1f84be77e4f3f477358
Binary files /dev/null and b/runs/fashion_trainer_20230918_142927/events.out.tfevents.1695040167.msip-dell.ims.rwth-aachen.de.795033.12 differ
diff --git a/runs/fashion_trainer_20230918_142930/Training vs. Validation Loss_Training/events.out.tfevents.1695040171.msip-dell.ims.rwth-aachen.de.795033.16 b/runs/fashion_trainer_20230918_142930/Training vs. Validation Loss_Training/events.out.tfevents.1695040171.msip-dell.ims.rwth-aachen.de.795033.16
new file mode 100644
index 0000000000000000000000000000000000000000..82637f4ce257daf91fb953e25aa84a053cce82e7
Binary files /dev/null and b/runs/fashion_trainer_20230918_142930/Training vs. Validation Loss_Training/events.out.tfevents.1695040171.msip-dell.ims.rwth-aachen.de.795033.16 differ
diff --git a/runs/fashion_trainer_20230918_142930/Training vs. Validation Loss_Validation/events.out.tfevents.1695040171.msip-dell.ims.rwth-aachen.de.795033.17 b/runs/fashion_trainer_20230918_142930/Training vs. Validation Loss_Validation/events.out.tfevents.1695040171.msip-dell.ims.rwth-aachen.de.795033.17
new file mode 100644
index 0000000000000000000000000000000000000000..110fe98c479dc14b0dfce5e6b6502823d4135bdf
Binary files /dev/null and b/runs/fashion_trainer_20230918_142930/Training vs. Validation Loss_Validation/events.out.tfevents.1695040171.msip-dell.ims.rwth-aachen.de.795033.17 differ
diff --git a/runs/fashion_trainer_20230918_142930/events.out.tfevents.1695040170.msip-dell.ims.rwth-aachen.de.795033.15 b/runs/fashion_trainer_20230918_142930/events.out.tfevents.1695040170.msip-dell.ims.rwth-aachen.de.795033.15
new file mode 100644
index 0000000000000000000000000000000000000000..7dadee5c40ff33a3119dac9dd4c44318e28e4fd4
Binary files /dev/null and b/runs/fashion_trainer_20230918_142930/events.out.tfevents.1695040170.msip-dell.ims.rwth-aachen.de.795033.15 differ
diff --git a/runs/fashion_trainer_20230918_142933/Training vs. Validation Loss_Training/events.out.tfevents.1695040174.msip-dell.ims.rwth-aachen.de.795033.19 b/runs/fashion_trainer_20230918_142933/Training vs. Validation Loss_Training/events.out.tfevents.1695040174.msip-dell.ims.rwth-aachen.de.795033.19
new file mode 100644
index 0000000000000000000000000000000000000000..bcb37ba141e04d127c7a73c48672b904dfece616
Binary files /dev/null and b/runs/fashion_trainer_20230918_142933/Training vs. Validation Loss_Training/events.out.tfevents.1695040174.msip-dell.ims.rwth-aachen.de.795033.19 differ
diff --git a/runs/fashion_trainer_20230918_142933/Training vs. Validation Loss_Validation/events.out.tfevents.1695040174.msip-dell.ims.rwth-aachen.de.795033.20 b/runs/fashion_trainer_20230918_142933/Training vs. Validation Loss_Validation/events.out.tfevents.1695040174.msip-dell.ims.rwth-aachen.de.795033.20
new file mode 100644
index 0000000000000000000000000000000000000000..9656cfe64f9b4805d4e2e3a146b0c494c82b5b6c
Binary files /dev/null and b/runs/fashion_trainer_20230918_142933/Training vs. Validation Loss_Validation/events.out.tfevents.1695040174.msip-dell.ims.rwth-aachen.de.795033.20 differ
diff --git a/runs/fashion_trainer_20230918_142933/events.out.tfevents.1695040173.msip-dell.ims.rwth-aachen.de.795033.18 b/runs/fashion_trainer_20230918_142933/events.out.tfevents.1695040173.msip-dell.ims.rwth-aachen.de.795033.18
new file mode 100644
index 0000000000000000000000000000000000000000..13831541c6adfe6f7fe65345ade2189e1009be59
Binary files /dev/null and b/runs/fashion_trainer_20230918_142933/events.out.tfevents.1695040173.msip-dell.ims.rwth-aachen.de.795033.18 differ
diff --git a/runs/fashion_trainer_20230918_143500/Training vs. Validation Loss_Training/events.out.tfevents.1695040501.msip-dell.ims.rwth-aachen.de.796514.1 b/runs/fashion_trainer_20230918_143500/Training vs. Validation Loss_Training/events.out.tfevents.1695040501.msip-dell.ims.rwth-aachen.de.796514.1
new file mode 100644
index 0000000000000000000000000000000000000000..7ccf47a27a238bab0eb2df874a5b86708f293750
Binary files /dev/null and b/runs/fashion_trainer_20230918_143500/Training vs. Validation Loss_Training/events.out.tfevents.1695040501.msip-dell.ims.rwth-aachen.de.796514.1 differ
diff --git a/runs/fashion_trainer_20230918_143500/Training vs. Validation Loss_Validation/events.out.tfevents.1695040501.msip-dell.ims.rwth-aachen.de.796514.2 b/runs/fashion_trainer_20230918_143500/Training vs. Validation Loss_Validation/events.out.tfevents.1695040501.msip-dell.ims.rwth-aachen.de.796514.2
new file mode 100644
index 0000000000000000000000000000000000000000..64da45c3906ca4f2d5f732bbbb915c2161869978
Binary files /dev/null and b/runs/fashion_trainer_20230918_143500/Training vs. Validation Loss_Validation/events.out.tfevents.1695040501.msip-dell.ims.rwth-aachen.de.796514.2 differ
diff --git a/runs/fashion_trainer_20230918_143500/events.out.tfevents.1695040500.msip-dell.ims.rwth-aachen.de.796514.0 b/runs/fashion_trainer_20230918_143500/events.out.tfevents.1695040500.msip-dell.ims.rwth-aachen.de.796514.0
new file mode 100644
index 0000000000000000000000000000000000000000..6bdd65791876399e654d44d719d53f5465ff38ee
Binary files /dev/null and b/runs/fashion_trainer_20230918_143500/events.out.tfevents.1695040500.msip-dell.ims.rwth-aachen.de.796514.0 differ
diff --git a/runs/fashion_trainer_20230918_143534/Training vs. Validation Loss_Training/events.out.tfevents.1695040536.msip-dell.ims.rwth-aachen.de.797050.1 b/runs/fashion_trainer_20230918_143534/Training vs. Validation Loss_Training/events.out.tfevents.1695040536.msip-dell.ims.rwth-aachen.de.797050.1
new file mode 100644
index 0000000000000000000000000000000000000000..46771695b397391dbfa26a8f966f3199fd70b86a
Binary files /dev/null and b/runs/fashion_trainer_20230918_143534/Training vs. Validation Loss_Training/events.out.tfevents.1695040536.msip-dell.ims.rwth-aachen.de.797050.1 differ
diff --git a/runs/fashion_trainer_20230918_143534/Training vs. Validation Loss_Validation/events.out.tfevents.1695040536.msip-dell.ims.rwth-aachen.de.797050.2 b/runs/fashion_trainer_20230918_143534/Training vs. Validation Loss_Validation/events.out.tfevents.1695040536.msip-dell.ims.rwth-aachen.de.797050.2
new file mode 100644
index 0000000000000000000000000000000000000000..d8fc22209b46a8f55b35dd5ba4a528e7130251ac
Binary files /dev/null and b/runs/fashion_trainer_20230918_143534/Training vs. Validation Loss_Validation/events.out.tfevents.1695040536.msip-dell.ims.rwth-aachen.de.797050.2 differ
diff --git a/runs/fashion_trainer_20230918_143534/events.out.tfevents.1695040534.msip-dell.ims.rwth-aachen.de.797050.0 b/runs/fashion_trainer_20230918_143534/events.out.tfevents.1695040534.msip-dell.ims.rwth-aachen.de.797050.0
new file mode 100644
index 0000000000000000000000000000000000000000..52ae0416a7a983b6cc9ee40b369e3df823d608cf
Binary files /dev/null and b/runs/fashion_trainer_20230918_143534/events.out.tfevents.1695040534.msip-dell.ims.rwth-aachen.de.797050.0 differ
diff --git a/runs/fashion_trainer_20230918_143616/Training vs. Validation Loss_Training/events.out.tfevents.1695040577.msip-dell.ims.rwth-aachen.de.797248.1 b/runs/fashion_trainer_20230918_143616/Training vs. Validation Loss_Training/events.out.tfevents.1695040577.msip-dell.ims.rwth-aachen.de.797248.1
new file mode 100644
index 0000000000000000000000000000000000000000..e17144a4a71c779b54e3cca8f07269e36ac0b81e
Binary files /dev/null and b/runs/fashion_trainer_20230918_143616/Training vs. Validation Loss_Training/events.out.tfevents.1695040577.msip-dell.ims.rwth-aachen.de.797248.1 differ
diff --git a/runs/fashion_trainer_20230918_143616/Training vs. Validation Loss_Validation/events.out.tfevents.1695040577.msip-dell.ims.rwth-aachen.de.797248.2 b/runs/fashion_trainer_20230918_143616/Training vs. Validation Loss_Validation/events.out.tfevents.1695040577.msip-dell.ims.rwth-aachen.de.797248.2
new file mode 100644
index 0000000000000000000000000000000000000000..9c683caf160d84ef3b202e52e0e461619a153297
Binary files /dev/null and b/runs/fashion_trainer_20230918_143616/Training vs. Validation Loss_Validation/events.out.tfevents.1695040577.msip-dell.ims.rwth-aachen.de.797248.2 differ
diff --git a/runs/fashion_trainer_20230918_143616/events.out.tfevents.1695040576.msip-dell.ims.rwth-aachen.de.797248.0 b/runs/fashion_trainer_20230918_143616/events.out.tfevents.1695040576.msip-dell.ims.rwth-aachen.de.797248.0
new file mode 100644
index 0000000000000000000000000000000000000000..940d07b49fdff629466ca459f719149f43ee39e6
Binary files /dev/null and b/runs/fashion_trainer_20230918_143616/events.out.tfevents.1695040576.msip-dell.ims.rwth-aachen.de.797248.0 differ
diff --git a/runs/fashion_trainer_20230918_144016/Training vs. Validation Loss_Training/events.out.tfevents.1695040817.msip-dell.ims.rwth-aachen.de.797977.1 b/runs/fashion_trainer_20230918_144016/Training vs. Validation Loss_Training/events.out.tfevents.1695040817.msip-dell.ims.rwth-aachen.de.797977.1
new file mode 100644
index 0000000000000000000000000000000000000000..28c8e76172b06b682d46d0e5991385ef604fd0dd
Binary files /dev/null and b/runs/fashion_trainer_20230918_144016/Training vs. Validation Loss_Training/events.out.tfevents.1695040817.msip-dell.ims.rwth-aachen.de.797977.1 differ
diff --git a/runs/fashion_trainer_20230918_144016/Training vs. Validation Loss_Validation/events.out.tfevents.1695040817.msip-dell.ims.rwth-aachen.de.797977.2 b/runs/fashion_trainer_20230918_144016/Training vs. Validation Loss_Validation/events.out.tfevents.1695040817.msip-dell.ims.rwth-aachen.de.797977.2
new file mode 100644
index 0000000000000000000000000000000000000000..eaba2a8d1113e0f2e041fc433c5cbb685ea3f262
Binary files /dev/null and b/runs/fashion_trainer_20230918_144016/Training vs. Validation Loss_Validation/events.out.tfevents.1695040817.msip-dell.ims.rwth-aachen.de.797977.2 differ
diff --git a/runs/fashion_trainer_20230918_144016/events.out.tfevents.1695040816.msip-dell.ims.rwth-aachen.de.797977.0 b/runs/fashion_trainer_20230918_144016/events.out.tfevents.1695040816.msip-dell.ims.rwth-aachen.de.797977.0
new file mode 100644
index 0000000000000000000000000000000000000000..f228573fe331b444d12a73557226050c921cd0a4
Binary files /dev/null and b/runs/fashion_trainer_20230918_144016/events.out.tfevents.1695040816.msip-dell.ims.rwth-aachen.de.797977.0 differ
diff --git a/runs/fashion_trainer_20230918_144222/Training vs. Validation Loss_Training/events.out.tfevents.1695040943.msip-dell.ims.rwth-aachen.de.798319.1 b/runs/fashion_trainer_20230918_144222/Training vs. Validation Loss_Training/events.out.tfevents.1695040943.msip-dell.ims.rwth-aachen.de.798319.1
new file mode 100644
index 0000000000000000000000000000000000000000..5f997096750db899ae92ec59fc28727fd8ed32d9
Binary files /dev/null and b/runs/fashion_trainer_20230918_144222/Training vs. Validation Loss_Training/events.out.tfevents.1695040943.msip-dell.ims.rwth-aachen.de.798319.1 differ
diff --git a/runs/fashion_trainer_20230918_144222/Training vs. Validation Loss_Validation/events.out.tfevents.1695040943.msip-dell.ims.rwth-aachen.de.798319.2 b/runs/fashion_trainer_20230918_144222/Training vs. Validation Loss_Validation/events.out.tfevents.1695040943.msip-dell.ims.rwth-aachen.de.798319.2
new file mode 100644
index 0000000000000000000000000000000000000000..c7187461fefeb96aa92b4592edbdfda0bc6b36c8
Binary files /dev/null and b/runs/fashion_trainer_20230918_144222/Training vs. Validation Loss_Validation/events.out.tfevents.1695040943.msip-dell.ims.rwth-aachen.de.798319.2 differ
diff --git a/runs/fashion_trainer_20230918_144222/events.out.tfevents.1695040942.msip-dell.ims.rwth-aachen.de.798319.0 b/runs/fashion_trainer_20230918_144222/events.out.tfevents.1695040942.msip-dell.ims.rwth-aachen.de.798319.0
new file mode 100644
index 0000000000000000000000000000000000000000..94c9356902b611865fb45d5c873e97ca7bc3fe19
Binary files /dev/null and b/runs/fashion_trainer_20230918_144222/events.out.tfevents.1695040942.msip-dell.ims.rwth-aachen.de.798319.0 differ
diff --git a/runs/fashion_trainer_20230918_144356/Training vs. Validation Loss_Training/events.out.tfevents.1695041037.msip-dell.ims.rwth-aachen.de.798765.1 b/runs/fashion_trainer_20230918_144356/Training vs. Validation Loss_Training/events.out.tfevents.1695041037.msip-dell.ims.rwth-aachen.de.798765.1
new file mode 100644
index 0000000000000000000000000000000000000000..4a88a2e7786ed232e09fdc267e75b287b81b99ca
Binary files /dev/null and b/runs/fashion_trainer_20230918_144356/Training vs. Validation Loss_Training/events.out.tfevents.1695041037.msip-dell.ims.rwth-aachen.de.798765.1 differ
diff --git a/runs/fashion_trainer_20230918_144356/Training vs. Validation Loss_Validation/events.out.tfevents.1695041037.msip-dell.ims.rwth-aachen.de.798765.2 b/runs/fashion_trainer_20230918_144356/Training vs. Validation Loss_Validation/events.out.tfevents.1695041037.msip-dell.ims.rwth-aachen.de.798765.2
new file mode 100644
index 0000000000000000000000000000000000000000..0eb90e1aa8ce255b18008b8e44c215e8f51aa03f
Binary files /dev/null and b/runs/fashion_trainer_20230918_144356/Training vs. Validation Loss_Validation/events.out.tfevents.1695041037.msip-dell.ims.rwth-aachen.de.798765.2 differ
diff --git a/runs/fashion_trainer_20230918_144356/events.out.tfevents.1695041036.msip-dell.ims.rwth-aachen.de.798765.0 b/runs/fashion_trainer_20230918_144356/events.out.tfevents.1695041036.msip-dell.ims.rwth-aachen.de.798765.0
new file mode 100644
index 0000000000000000000000000000000000000000..395591e5c9a1849519aae279bd94f947bdd78724
Binary files /dev/null and b/runs/fashion_trainer_20230918_144356/events.out.tfevents.1695041036.msip-dell.ims.rwth-aachen.de.798765.0 differ
diff --git a/runs/fashion_trainer_20230918_144410/Training vs. Validation Loss_Training/events.out.tfevents.1695041051.msip-dell.ims.rwth-aachen.de.798961.1 b/runs/fashion_trainer_20230918_144410/Training vs. Validation Loss_Training/events.out.tfevents.1695041051.msip-dell.ims.rwth-aachen.de.798961.1
new file mode 100644
index 0000000000000000000000000000000000000000..bec9e8c24b12a60b50b9815a579370a2314affc5
Binary files /dev/null and b/runs/fashion_trainer_20230918_144410/Training vs. Validation Loss_Training/events.out.tfevents.1695041051.msip-dell.ims.rwth-aachen.de.798961.1 differ
diff --git a/runs/fashion_trainer_20230918_144410/Training vs. Validation Loss_Validation/events.out.tfevents.1695041051.msip-dell.ims.rwth-aachen.de.798961.2 b/runs/fashion_trainer_20230918_144410/Training vs. Validation Loss_Validation/events.out.tfevents.1695041051.msip-dell.ims.rwth-aachen.de.798961.2
new file mode 100644
index 0000000000000000000000000000000000000000..6cf9a11d8790b5bfca58a486668d5e717ba74941
Binary files /dev/null and b/runs/fashion_trainer_20230918_144410/Training vs. Validation Loss_Validation/events.out.tfevents.1695041051.msip-dell.ims.rwth-aachen.de.798961.2 differ
diff --git a/runs/fashion_trainer_20230918_144410/events.out.tfevents.1695041050.msip-dell.ims.rwth-aachen.de.798961.0 b/runs/fashion_trainer_20230918_144410/events.out.tfevents.1695041050.msip-dell.ims.rwth-aachen.de.798961.0
new file mode 100644
index 0000000000000000000000000000000000000000..500d79cf893d6e652820c00360ac2c5d2b9d2c08
Binary files /dev/null and b/runs/fashion_trainer_20230918_144410/events.out.tfevents.1695041050.msip-dell.ims.rwth-aachen.de.798961.0 differ
diff --git a/runs/fashion_trainer_20230918_144843/Training vs. Validation Loss_Training/events.out.tfevents.1695041324.msip-dell.ims.rwth-aachen.de.799849.1 b/runs/fashion_trainer_20230918_144843/Training vs. Validation Loss_Training/events.out.tfevents.1695041324.msip-dell.ims.rwth-aachen.de.799849.1
new file mode 100644
index 0000000000000000000000000000000000000000..f5a948c75bebc736ae0bc8ff62f3df05ecb923e0
Binary files /dev/null and b/runs/fashion_trainer_20230918_144843/Training vs. Validation Loss_Training/events.out.tfevents.1695041324.msip-dell.ims.rwth-aachen.de.799849.1 differ
diff --git a/runs/fashion_trainer_20230918_144843/Training vs. Validation Loss_Validation/events.out.tfevents.1695041324.msip-dell.ims.rwth-aachen.de.799849.2 b/runs/fashion_trainer_20230918_144843/Training vs. Validation Loss_Validation/events.out.tfevents.1695041324.msip-dell.ims.rwth-aachen.de.799849.2
new file mode 100644
index 0000000000000000000000000000000000000000..3026584fac96f6d3b3de14ba4484bb6586ce6d68
Binary files /dev/null and b/runs/fashion_trainer_20230918_144843/Training vs. Validation Loss_Validation/events.out.tfevents.1695041324.msip-dell.ims.rwth-aachen.de.799849.2 differ
diff --git a/runs/fashion_trainer_20230918_144843/events.out.tfevents.1695041323.msip-dell.ims.rwth-aachen.de.799849.0 b/runs/fashion_trainer_20230918_144843/events.out.tfevents.1695041323.msip-dell.ims.rwth-aachen.de.799849.0
new file mode 100644
index 0000000000000000000000000000000000000000..f77998fca451809447286873123b79aee7795c3c
Binary files /dev/null and b/runs/fashion_trainer_20230918_144843/events.out.tfevents.1695041323.msip-dell.ims.rwth-aachen.de.799849.0 differ
diff --git a/runs/fashion_trainer_20230918_145544/Training vs. Validation Loss_Training/events.out.tfevents.1695041745.msip-dell.ims.rwth-aachen.de.801291.1 b/runs/fashion_trainer_20230918_145544/Training vs. Validation Loss_Training/events.out.tfevents.1695041745.msip-dell.ims.rwth-aachen.de.801291.1
new file mode 100644
index 0000000000000000000000000000000000000000..53bc832fdf5a9a3c70c280c877685472206c23ca
Binary files /dev/null and b/runs/fashion_trainer_20230918_145544/Training vs. Validation Loss_Training/events.out.tfevents.1695041745.msip-dell.ims.rwth-aachen.de.801291.1 differ
diff --git a/runs/fashion_trainer_20230918_145544/Training vs. Validation Loss_Validation/events.out.tfevents.1695041745.msip-dell.ims.rwth-aachen.de.801291.2 b/runs/fashion_trainer_20230918_145544/Training vs. Validation Loss_Validation/events.out.tfevents.1695041745.msip-dell.ims.rwth-aachen.de.801291.2
new file mode 100644
index 0000000000000000000000000000000000000000..8c7511ee7dfffc9f88e19970fe7daf58b18cefd8
Binary files /dev/null and b/runs/fashion_trainer_20230918_145544/Training vs. Validation Loss_Validation/events.out.tfevents.1695041745.msip-dell.ims.rwth-aachen.de.801291.2 differ
diff --git a/runs/fashion_trainer_20230918_145544/events.out.tfevents.1695041744.msip-dell.ims.rwth-aachen.de.801291.0 b/runs/fashion_trainer_20230918_145544/events.out.tfevents.1695041744.msip-dell.ims.rwth-aachen.de.801291.0
new file mode 100644
index 0000000000000000000000000000000000000000..ea484c480d8d1b8e545bc88fdca12cd398874f85
Binary files /dev/null and b/runs/fashion_trainer_20230918_145544/events.out.tfevents.1695041744.msip-dell.ims.rwth-aachen.de.801291.0 differ
diff --git a/runs/fashion_trainer_20230918_145614/Training vs. Validation Loss_Training/events.out.tfevents.1695041775.msip-dell.ims.rwth-aachen.de.801457.1 b/runs/fashion_trainer_20230918_145614/Training vs. Validation Loss_Training/events.out.tfevents.1695041775.msip-dell.ims.rwth-aachen.de.801457.1
new file mode 100644
index 0000000000000000000000000000000000000000..43baabc1dc11f5fccf5fbd304c143dbe9b7d90b6
Binary files /dev/null and b/runs/fashion_trainer_20230918_145614/Training vs. Validation Loss_Training/events.out.tfevents.1695041775.msip-dell.ims.rwth-aachen.de.801457.1 differ
diff --git a/runs/fashion_trainer_20230918_145614/Training vs. Validation Loss_Validation/events.out.tfevents.1695041775.msip-dell.ims.rwth-aachen.de.801457.2 b/runs/fashion_trainer_20230918_145614/Training vs. Validation Loss_Validation/events.out.tfevents.1695041775.msip-dell.ims.rwth-aachen.de.801457.2
new file mode 100644
index 0000000000000000000000000000000000000000..d02544900ac4376574e7e94365db6874e84a77b4
Binary files /dev/null and b/runs/fashion_trainer_20230918_145614/Training vs. Validation Loss_Validation/events.out.tfevents.1695041775.msip-dell.ims.rwth-aachen.de.801457.2 differ
diff --git a/runs/fashion_trainer_20230918_145614/events.out.tfevents.1695041774.msip-dell.ims.rwth-aachen.de.801457.0 b/runs/fashion_trainer_20230918_145614/events.out.tfevents.1695041774.msip-dell.ims.rwth-aachen.de.801457.0
new file mode 100644
index 0000000000000000000000000000000000000000..54e49d1761b832c533ff380de407893a4a9f6101
Binary files /dev/null and b/runs/fashion_trainer_20230918_145614/events.out.tfevents.1695041774.msip-dell.ims.rwth-aachen.de.801457.0 differ
diff --git a/runs/fashion_trainer_20230918_145630/Training vs. Validation Loss_Training/events.out.tfevents.1695041791.msip-dell.ims.rwth-aachen.de.801582.1 b/runs/fashion_trainer_20230918_145630/Training vs. Validation Loss_Training/events.out.tfevents.1695041791.msip-dell.ims.rwth-aachen.de.801582.1
new file mode 100644
index 0000000000000000000000000000000000000000..e1f3ee3836bea418fd591ece02e85dccca593784
Binary files /dev/null and b/runs/fashion_trainer_20230918_145630/Training vs. Validation Loss_Training/events.out.tfevents.1695041791.msip-dell.ims.rwth-aachen.de.801582.1 differ
diff --git a/runs/fashion_trainer_20230918_145630/Training vs. Validation Loss_Validation/events.out.tfevents.1695041791.msip-dell.ims.rwth-aachen.de.801582.2 b/runs/fashion_trainer_20230918_145630/Training vs. Validation Loss_Validation/events.out.tfevents.1695041791.msip-dell.ims.rwth-aachen.de.801582.2
new file mode 100644
index 0000000000000000000000000000000000000000..d34f302bbef6ea4a64f9727971d1b6b1c3ed2ca9
Binary files /dev/null and b/runs/fashion_trainer_20230918_145630/Training vs. Validation Loss_Validation/events.out.tfevents.1695041791.msip-dell.ims.rwth-aachen.de.801582.2 differ
diff --git a/runs/fashion_trainer_20230918_145630/events.out.tfevents.1695041790.msip-dell.ims.rwth-aachen.de.801582.0 b/runs/fashion_trainer_20230918_145630/events.out.tfevents.1695041790.msip-dell.ims.rwth-aachen.de.801582.0
new file mode 100644
index 0000000000000000000000000000000000000000..af924e9b69820b6ba55cbbdda598a6cc010a7cd6
Binary files /dev/null and b/runs/fashion_trainer_20230918_145630/events.out.tfevents.1695041790.msip-dell.ims.rwth-aachen.de.801582.0 differ
diff --git a/runs/fashion_trainer_20230918_150038/events.out.tfevents.1695042038.msip-dell.ims.rwth-aachen.de.802431.0 b/runs/fashion_trainer_20230918_150038/events.out.tfevents.1695042038.msip-dell.ims.rwth-aachen.de.802431.0
new file mode 100644
index 0000000000000000000000000000000000000000..edd09e5a02ee61eece21a282330599e911a72d98
Binary files /dev/null and b/runs/fashion_trainer_20230918_150038/events.out.tfevents.1695042038.msip-dell.ims.rwth-aachen.de.802431.0 differ
diff --git a/runs/fashion_trainer_20230918_150048/events.out.tfevents.1695042048.msip-dell.ims.rwth-aachen.de.802544.0 b/runs/fashion_trainer_20230918_150048/events.out.tfevents.1695042048.msip-dell.ims.rwth-aachen.de.802544.0
new file mode 100644
index 0000000000000000000000000000000000000000..c82a4697f7c387a86a8833997a80b1a4bb4f0a50
Binary files /dev/null and b/runs/fashion_trainer_20230918_150048/events.out.tfevents.1695042048.msip-dell.ims.rwth-aachen.de.802544.0 differ
diff --git a/runs/fashion_trainer_20230918_150237/Training vs. Validation Loss_Training/events.out.tfevents.1695042158.msip-dell.ims.rwth-aachen.de.802871.1 b/runs/fashion_trainer_20230918_150237/Training vs. Validation Loss_Training/events.out.tfevents.1695042158.msip-dell.ims.rwth-aachen.de.802871.1
new file mode 100644
index 0000000000000000000000000000000000000000..0b9d10ad1b1a48841ae66a707bfbaae6e5489670
Binary files /dev/null and b/runs/fashion_trainer_20230918_150237/Training vs. Validation Loss_Training/events.out.tfevents.1695042158.msip-dell.ims.rwth-aachen.de.802871.1 differ
diff --git a/runs/fashion_trainer_20230918_150237/Training vs. Validation Loss_Validation/events.out.tfevents.1695042158.msip-dell.ims.rwth-aachen.de.802871.2 b/runs/fashion_trainer_20230918_150237/Training vs. Validation Loss_Validation/events.out.tfevents.1695042158.msip-dell.ims.rwth-aachen.de.802871.2
new file mode 100644
index 0000000000000000000000000000000000000000..ce8d5625f2cab8f67a886e28359444e483e0c8c4
Binary files /dev/null and b/runs/fashion_trainer_20230918_150237/Training vs. Validation Loss_Validation/events.out.tfevents.1695042158.msip-dell.ims.rwth-aachen.de.802871.2 differ
diff --git a/runs/fashion_trainer_20230918_150237/events.out.tfevents.1695042157.msip-dell.ims.rwth-aachen.de.802871.0 b/runs/fashion_trainer_20230918_150237/events.out.tfevents.1695042157.msip-dell.ims.rwth-aachen.de.802871.0
new file mode 100644
index 0000000000000000000000000000000000000000..12517639ac3c812682678fbf3a16d1ad79fb4450
Binary files /dev/null and b/runs/fashion_trainer_20230918_150237/events.out.tfevents.1695042157.msip-dell.ims.rwth-aachen.de.802871.0 differ
diff --git a/runs/fashion_trainer_20230918_150335/Training vs. Validation Loss_Training/events.out.tfevents.1695042216.msip-dell.ims.rwth-aachen.de.803079.1 b/runs/fashion_trainer_20230918_150335/Training vs. Validation Loss_Training/events.out.tfevents.1695042216.msip-dell.ims.rwth-aachen.de.803079.1
new file mode 100644
index 0000000000000000000000000000000000000000..7bddd4977a903d0171312df80c83082a1034c745
Binary files /dev/null and b/runs/fashion_trainer_20230918_150335/Training vs. Validation Loss_Training/events.out.tfevents.1695042216.msip-dell.ims.rwth-aachen.de.803079.1 differ
diff --git a/runs/fashion_trainer_20230918_150335/Training vs. Validation Loss_Validation/events.out.tfevents.1695042216.msip-dell.ims.rwth-aachen.de.803079.2 b/runs/fashion_trainer_20230918_150335/Training vs. Validation Loss_Validation/events.out.tfevents.1695042216.msip-dell.ims.rwth-aachen.de.803079.2
new file mode 100644
index 0000000000000000000000000000000000000000..8c7fa4a284f8ff6434213fff00a59526d9eebfe0
Binary files /dev/null and b/runs/fashion_trainer_20230918_150335/Training vs. Validation Loss_Validation/events.out.tfevents.1695042216.msip-dell.ims.rwth-aachen.de.803079.2 differ
diff --git a/runs/fashion_trainer_20230918_150335/events.out.tfevents.1695042215.msip-dell.ims.rwth-aachen.de.803079.0 b/runs/fashion_trainer_20230918_150335/events.out.tfevents.1695042215.msip-dell.ims.rwth-aachen.de.803079.0
new file mode 100644
index 0000000000000000000000000000000000000000..d948775b2d4838fb993ea8d31559add808203229
Binary files /dev/null and b/runs/fashion_trainer_20230918_150335/events.out.tfevents.1695042215.msip-dell.ims.rwth-aachen.de.803079.0 differ
diff --git a/runs/fashion_trainer_20230918_150635/Training vs. Validation Loss_Training/events.out.tfevents.1695042396.msip-dell.ims.rwth-aachen.de.803525.1 b/runs/fashion_trainer_20230918_150635/Training vs. Validation Loss_Training/events.out.tfevents.1695042396.msip-dell.ims.rwth-aachen.de.803525.1
new file mode 100644
index 0000000000000000000000000000000000000000..fc903d9adea9b5b725c7faa215c1e14be765753b
Binary files /dev/null and b/runs/fashion_trainer_20230918_150635/Training vs. Validation Loss_Training/events.out.tfevents.1695042396.msip-dell.ims.rwth-aachen.de.803525.1 differ
diff --git a/runs/fashion_trainer_20230918_150635/Training vs. Validation Loss_Validation/events.out.tfevents.1695042396.msip-dell.ims.rwth-aachen.de.803525.2 b/runs/fashion_trainer_20230918_150635/Training vs. Validation Loss_Validation/events.out.tfevents.1695042396.msip-dell.ims.rwth-aachen.de.803525.2
new file mode 100644
index 0000000000000000000000000000000000000000..855a0fe7300158b825a9d17cc1618462ea4b025f
Binary files /dev/null and b/runs/fashion_trainer_20230918_150635/Training vs. Validation Loss_Validation/events.out.tfevents.1695042396.msip-dell.ims.rwth-aachen.de.803525.2 differ
diff --git a/runs/fashion_trainer_20230918_150635/events.out.tfevents.1695042395.msip-dell.ims.rwth-aachen.de.803525.0 b/runs/fashion_trainer_20230918_150635/events.out.tfevents.1695042395.msip-dell.ims.rwth-aachen.de.803525.0
new file mode 100644
index 0000000000000000000000000000000000000000..d9eded74c1f4c349aeb2dc347ae0fb450399e96f
Binary files /dev/null and b/runs/fashion_trainer_20230918_150635/events.out.tfevents.1695042395.msip-dell.ims.rwth-aachen.de.803525.0 differ
diff --git a/runs/fashion_trainer_20230918_150659/Training vs. Validation Loss_Training/events.out.tfevents.1695042420.msip-dell.ims.rwth-aachen.de.803697.1 b/runs/fashion_trainer_20230918_150659/Training vs. Validation Loss_Training/events.out.tfevents.1695042420.msip-dell.ims.rwth-aachen.de.803697.1
new file mode 100644
index 0000000000000000000000000000000000000000..ff376bea565b465f1998621bc4b27a8145d1ff32
Binary files /dev/null and b/runs/fashion_trainer_20230918_150659/Training vs. Validation Loss_Training/events.out.tfevents.1695042420.msip-dell.ims.rwth-aachen.de.803697.1 differ
diff --git a/runs/fashion_trainer_20230918_150659/Training vs. Validation Loss_Validation/events.out.tfevents.1695042420.msip-dell.ims.rwth-aachen.de.803697.2 b/runs/fashion_trainer_20230918_150659/Training vs. Validation Loss_Validation/events.out.tfevents.1695042420.msip-dell.ims.rwth-aachen.de.803697.2
new file mode 100644
index 0000000000000000000000000000000000000000..c958b27b15e711299d5e10b2725bd16b18ff8765
Binary files /dev/null and b/runs/fashion_trainer_20230918_150659/Training vs. Validation Loss_Validation/events.out.tfevents.1695042420.msip-dell.ims.rwth-aachen.de.803697.2 differ
diff --git a/runs/fashion_trainer_20230918_150659/events.out.tfevents.1695042419.msip-dell.ims.rwth-aachen.de.803697.0 b/runs/fashion_trainer_20230918_150659/events.out.tfevents.1695042419.msip-dell.ims.rwth-aachen.de.803697.0
new file mode 100644
index 0000000000000000000000000000000000000000..2333ffc64b4b26e2a09eee84500500321e524d43
Binary files /dev/null and b/runs/fashion_trainer_20230918_150659/events.out.tfevents.1695042419.msip-dell.ims.rwth-aachen.de.803697.0 differ
diff --git a/runs/fashion_trainer_20230918_150813/Training vs. Validation Loss_Training/events.out.tfevents.1695042494.msip-dell.ims.rwth-aachen.de.804191.1 b/runs/fashion_trainer_20230918_150813/Training vs. Validation Loss_Training/events.out.tfevents.1695042494.msip-dell.ims.rwth-aachen.de.804191.1
new file mode 100644
index 0000000000000000000000000000000000000000..d1ecacbf2701baa5274af471eeef9ce44b672444
Binary files /dev/null and b/runs/fashion_trainer_20230918_150813/Training vs. Validation Loss_Training/events.out.tfevents.1695042494.msip-dell.ims.rwth-aachen.de.804191.1 differ
diff --git a/runs/fashion_trainer_20230918_150813/Training vs. Validation Loss_Validation/events.out.tfevents.1695042494.msip-dell.ims.rwth-aachen.de.804191.2 b/runs/fashion_trainer_20230918_150813/Training vs. Validation Loss_Validation/events.out.tfevents.1695042494.msip-dell.ims.rwth-aachen.de.804191.2
new file mode 100644
index 0000000000000000000000000000000000000000..f59e2563c4876d4da533c40e203c344be1b0fd0f
Binary files /dev/null and b/runs/fashion_trainer_20230918_150813/Training vs. Validation Loss_Validation/events.out.tfevents.1695042494.msip-dell.ims.rwth-aachen.de.804191.2 differ
diff --git a/runs/fashion_trainer_20230918_150813/events.out.tfevents.1695042493.msip-dell.ims.rwth-aachen.de.804191.0 b/runs/fashion_trainer_20230918_150813/events.out.tfevents.1695042493.msip-dell.ims.rwth-aachen.de.804191.0
new file mode 100644
index 0000000000000000000000000000000000000000..371435ac22e222b8f9383ea56c7132ea6abf40ed
Binary files /dev/null and b/runs/fashion_trainer_20230918_150813/events.out.tfevents.1695042493.msip-dell.ims.rwth-aachen.de.804191.0 differ
diff --git a/runs/fashion_trainer_20230918_151512/Training vs. Validation Loss_Training/events.out.tfevents.1695042913.msip-dell.ims.rwth-aachen.de.805086.1 b/runs/fashion_trainer_20230918_151512/Training vs. Validation Loss_Training/events.out.tfevents.1695042913.msip-dell.ims.rwth-aachen.de.805086.1
new file mode 100644
index 0000000000000000000000000000000000000000..94d912ec909426e404cce192699476d884e8cffa
Binary files /dev/null and b/runs/fashion_trainer_20230918_151512/Training vs. Validation Loss_Training/events.out.tfevents.1695042913.msip-dell.ims.rwth-aachen.de.805086.1 differ
diff --git a/runs/fashion_trainer_20230918_151512/Training vs. Validation Loss_Validation/events.out.tfevents.1695042913.msip-dell.ims.rwth-aachen.de.805086.2 b/runs/fashion_trainer_20230918_151512/Training vs. Validation Loss_Validation/events.out.tfevents.1695042913.msip-dell.ims.rwth-aachen.de.805086.2
new file mode 100644
index 0000000000000000000000000000000000000000..b1293956d9f5c95deb680ad2fb2340ace411b726
Binary files /dev/null and b/runs/fashion_trainer_20230918_151512/Training vs. Validation Loss_Validation/events.out.tfevents.1695042913.msip-dell.ims.rwth-aachen.de.805086.2 differ
diff --git a/runs/fashion_trainer_20230918_151512/events.out.tfevents.1695042912.msip-dell.ims.rwth-aachen.de.805086.0 b/runs/fashion_trainer_20230918_151512/events.out.tfevents.1695042912.msip-dell.ims.rwth-aachen.de.805086.0
new file mode 100644
index 0000000000000000000000000000000000000000..1e1b2263ea8b504ce09c2fd073e7d8533211cbab
Binary files /dev/null and b/runs/fashion_trainer_20230918_151512/events.out.tfevents.1695042912.msip-dell.ims.rwth-aachen.de.805086.0 differ
diff --git a/runs/fashion_trainer_20230918_151843/Training vs. Validation Loss_Training/events.out.tfevents.1695043124.msip-dell.ims.rwth-aachen.de.805596.1 b/runs/fashion_trainer_20230918_151843/Training vs. Validation Loss_Training/events.out.tfevents.1695043124.msip-dell.ims.rwth-aachen.de.805596.1
new file mode 100644
index 0000000000000000000000000000000000000000..d1715636edf91accaa91a64098f2611e9b400b11
Binary files /dev/null and b/runs/fashion_trainer_20230918_151843/Training vs. Validation Loss_Training/events.out.tfevents.1695043124.msip-dell.ims.rwth-aachen.de.805596.1 differ
diff --git a/runs/fashion_trainer_20230918_151843/Training vs. Validation Loss_Validation/events.out.tfevents.1695043124.msip-dell.ims.rwth-aachen.de.805596.2 b/runs/fashion_trainer_20230918_151843/Training vs. Validation Loss_Validation/events.out.tfevents.1695043124.msip-dell.ims.rwth-aachen.de.805596.2
new file mode 100644
index 0000000000000000000000000000000000000000..d0b51aa0fa74796f317a880c630cbed2c6255622
Binary files /dev/null and b/runs/fashion_trainer_20230918_151843/Training vs. Validation Loss_Validation/events.out.tfevents.1695043124.msip-dell.ims.rwth-aachen.de.805596.2 differ
diff --git a/runs/fashion_trainer_20230918_151843/events.out.tfevents.1695043123.msip-dell.ims.rwth-aachen.de.805596.0 b/runs/fashion_trainer_20230918_151843/events.out.tfevents.1695043123.msip-dell.ims.rwth-aachen.de.805596.0
new file mode 100644
index 0000000000000000000000000000000000000000..703144bc7616467b27c14cb0b69b481dc94c27a9
Binary files /dev/null and b/runs/fashion_trainer_20230918_151843/events.out.tfevents.1695043123.msip-dell.ims.rwth-aachen.de.805596.0 differ
diff --git a/runs/fashion_trainer_20230918_152019/Training vs. Validation Loss_Training/events.out.tfevents.1695043220.msip-dell.ims.rwth-aachen.de.805895.1 b/runs/fashion_trainer_20230918_152019/Training vs. Validation Loss_Training/events.out.tfevents.1695043220.msip-dell.ims.rwth-aachen.de.805895.1
new file mode 100644
index 0000000000000000000000000000000000000000..98a2742ed81268e517d24901cdbf4fac2af56fc3
Binary files /dev/null and b/runs/fashion_trainer_20230918_152019/Training vs. Validation Loss_Training/events.out.tfevents.1695043220.msip-dell.ims.rwth-aachen.de.805895.1 differ
diff --git a/runs/fashion_trainer_20230918_152019/Training vs. Validation Loss_Validation/events.out.tfevents.1695043220.msip-dell.ims.rwth-aachen.de.805895.2 b/runs/fashion_trainer_20230918_152019/Training vs. Validation Loss_Validation/events.out.tfevents.1695043220.msip-dell.ims.rwth-aachen.de.805895.2
new file mode 100644
index 0000000000000000000000000000000000000000..e90e4edf442d75a7350c44bc6e119b3f6ca3bf22
Binary files /dev/null and b/runs/fashion_trainer_20230918_152019/Training vs. Validation Loss_Validation/events.out.tfevents.1695043220.msip-dell.ims.rwth-aachen.de.805895.2 differ
diff --git a/runs/fashion_trainer_20230918_152019/events.out.tfevents.1695043219.msip-dell.ims.rwth-aachen.de.805895.0 b/runs/fashion_trainer_20230918_152019/events.out.tfevents.1695043219.msip-dell.ims.rwth-aachen.de.805895.0
new file mode 100644
index 0000000000000000000000000000000000000000..a185b9babe06eab71b37d3ecad99d2bd7addfc5d
Binary files /dev/null and b/runs/fashion_trainer_20230918_152019/events.out.tfevents.1695043219.msip-dell.ims.rwth-aachen.de.805895.0 differ
diff --git a/runs/fashion_trainer_20230918_152118/Training vs. Validation Loss_Training/events.out.tfevents.1695043279.msip-dell.ims.rwth-aachen.de.805895.4 b/runs/fashion_trainer_20230918_152118/Training vs. Validation Loss_Training/events.out.tfevents.1695043279.msip-dell.ims.rwth-aachen.de.805895.4
new file mode 100644
index 0000000000000000000000000000000000000000..693a581ed21d8bf28ac433df88c73b582403bdbd
Binary files /dev/null and b/runs/fashion_trainer_20230918_152118/Training vs. Validation Loss_Training/events.out.tfevents.1695043279.msip-dell.ims.rwth-aachen.de.805895.4 differ
diff --git a/runs/fashion_trainer_20230918_152118/Training vs. Validation Loss_Validation/events.out.tfevents.1695043279.msip-dell.ims.rwth-aachen.de.805895.5 b/runs/fashion_trainer_20230918_152118/Training vs. Validation Loss_Validation/events.out.tfevents.1695043279.msip-dell.ims.rwth-aachen.de.805895.5
new file mode 100644
index 0000000000000000000000000000000000000000..99faf7688f798ba33307398674cec86698d63fc2
Binary files /dev/null and b/runs/fashion_trainer_20230918_152118/Training vs. Validation Loss_Validation/events.out.tfevents.1695043279.msip-dell.ims.rwth-aachen.de.805895.5 differ
diff --git a/runs/fashion_trainer_20230918_152118/events.out.tfevents.1695043278.msip-dell.ims.rwth-aachen.de.805895.3 b/runs/fashion_trainer_20230918_152118/events.out.tfevents.1695043278.msip-dell.ims.rwth-aachen.de.805895.3
new file mode 100644
index 0000000000000000000000000000000000000000..72c2696dfa18ce07e17e0913a75798cdb0cf6291
Binary files /dev/null and b/runs/fashion_trainer_20230918_152118/events.out.tfevents.1695043278.msip-dell.ims.rwth-aachen.de.805895.3 differ
diff --git a/runs/fashion_trainer_20230918_152221/Training vs. Validation Loss_Training/events.out.tfevents.1695043342.msip-dell.ims.rwth-aachen.de.805895.7 b/runs/fashion_trainer_20230918_152221/Training vs. Validation Loss_Training/events.out.tfevents.1695043342.msip-dell.ims.rwth-aachen.de.805895.7
new file mode 100644
index 0000000000000000000000000000000000000000..a62fc2a94c9321fe034cb577bac49b67469068a1
Binary files /dev/null and b/runs/fashion_trainer_20230918_152221/Training vs. Validation Loss_Training/events.out.tfevents.1695043342.msip-dell.ims.rwth-aachen.de.805895.7 differ
diff --git a/runs/fashion_trainer_20230918_152221/Training vs. Validation Loss_Validation/events.out.tfevents.1695043342.msip-dell.ims.rwth-aachen.de.805895.8 b/runs/fashion_trainer_20230918_152221/Training vs. Validation Loss_Validation/events.out.tfevents.1695043342.msip-dell.ims.rwth-aachen.de.805895.8
new file mode 100644
index 0000000000000000000000000000000000000000..dc704fe4dc698ee21f15df6d0c1d0cca73b3a836
Binary files /dev/null and b/runs/fashion_trainer_20230918_152221/Training vs. Validation Loss_Validation/events.out.tfevents.1695043342.msip-dell.ims.rwth-aachen.de.805895.8 differ
diff --git a/runs/fashion_trainer_20230918_152221/events.out.tfevents.1695043341.msip-dell.ims.rwth-aachen.de.805895.6 b/runs/fashion_trainer_20230918_152221/events.out.tfevents.1695043341.msip-dell.ims.rwth-aachen.de.805895.6
new file mode 100644
index 0000000000000000000000000000000000000000..88257875301f6ac6cfa4007bdb257dd6d368f04b
Binary files /dev/null and b/runs/fashion_trainer_20230918_152221/events.out.tfevents.1695043341.msip-dell.ims.rwth-aachen.de.805895.6 differ
diff --git a/runs/fashion_trainer_20230918_152412/Training vs. Validation Loss_Training/events.out.tfevents.1695043453.msip-dell.ims.rwth-aachen.de.806969.1 b/runs/fashion_trainer_20230918_152412/Training vs. Validation Loss_Training/events.out.tfevents.1695043453.msip-dell.ims.rwth-aachen.de.806969.1
new file mode 100644
index 0000000000000000000000000000000000000000..166e65c4fdef0981b4250506e5158fea3d194be2
Binary files /dev/null and b/runs/fashion_trainer_20230918_152412/Training vs. Validation Loss_Training/events.out.tfevents.1695043453.msip-dell.ims.rwth-aachen.de.806969.1 differ
diff --git a/runs/fashion_trainer_20230918_152412/Training vs. Validation Loss_Validation/events.out.tfevents.1695043453.msip-dell.ims.rwth-aachen.de.806969.2 b/runs/fashion_trainer_20230918_152412/Training vs. Validation Loss_Validation/events.out.tfevents.1695043453.msip-dell.ims.rwth-aachen.de.806969.2
new file mode 100644
index 0000000000000000000000000000000000000000..ba3800b405b08c3b044a824b6f97bb3d20403c50
Binary files /dev/null and b/runs/fashion_trainer_20230918_152412/Training vs. Validation Loss_Validation/events.out.tfevents.1695043453.msip-dell.ims.rwth-aachen.de.806969.2 differ
diff --git a/runs/fashion_trainer_20230918_152412/events.out.tfevents.1695043452.msip-dell.ims.rwth-aachen.de.806969.0 b/runs/fashion_trainer_20230918_152412/events.out.tfevents.1695043452.msip-dell.ims.rwth-aachen.de.806969.0
new file mode 100644
index 0000000000000000000000000000000000000000..ff45e5d95fb85c453bfd795b01bd42759225cabc
Binary files /dev/null and b/runs/fashion_trainer_20230918_152412/events.out.tfevents.1695043452.msip-dell.ims.rwth-aachen.de.806969.0 differ
diff --git a/runs/fashion_trainer_20230918_152415/Training vs. Validation Loss_Training/events.out.tfevents.1695043456.msip-dell.ims.rwth-aachen.de.806969.4 b/runs/fashion_trainer_20230918_152415/Training vs. Validation Loss_Training/events.out.tfevents.1695043456.msip-dell.ims.rwth-aachen.de.806969.4
new file mode 100644
index 0000000000000000000000000000000000000000..bd072f53bf8fe08adfb2dcb1b630fb7088c66696
Binary files /dev/null and b/runs/fashion_trainer_20230918_152415/Training vs. Validation Loss_Training/events.out.tfevents.1695043456.msip-dell.ims.rwth-aachen.de.806969.4 differ
diff --git a/runs/fashion_trainer_20230918_152415/Training vs. Validation Loss_Validation/events.out.tfevents.1695043456.msip-dell.ims.rwth-aachen.de.806969.5 b/runs/fashion_trainer_20230918_152415/Training vs. Validation Loss_Validation/events.out.tfevents.1695043456.msip-dell.ims.rwth-aachen.de.806969.5
new file mode 100644
index 0000000000000000000000000000000000000000..e9fb7593bc66d797913c21a13e549a6e55b188d7
Binary files /dev/null and b/runs/fashion_trainer_20230918_152415/Training vs. Validation Loss_Validation/events.out.tfevents.1695043456.msip-dell.ims.rwth-aachen.de.806969.5 differ
diff --git a/runs/fashion_trainer_20230918_152415/events.out.tfevents.1695043455.msip-dell.ims.rwth-aachen.de.806969.3 b/runs/fashion_trainer_20230918_152415/events.out.tfevents.1695043455.msip-dell.ims.rwth-aachen.de.806969.3
new file mode 100644
index 0000000000000000000000000000000000000000..a5ef4caa79f83c7d3b5b72c188bfdf20661a7562
Binary files /dev/null and b/runs/fashion_trainer_20230918_152415/events.out.tfevents.1695043455.msip-dell.ims.rwth-aachen.de.806969.3 differ
diff --git a/runs/fashion_trainer_20230918_152417/Training vs. Validation Loss_Training/events.out.tfevents.1695043458.msip-dell.ims.rwth-aachen.de.806969.7 b/runs/fashion_trainer_20230918_152417/Training vs. Validation Loss_Training/events.out.tfevents.1695043458.msip-dell.ims.rwth-aachen.de.806969.7
new file mode 100644
index 0000000000000000000000000000000000000000..cdc649e4b01018633b4b574da46382c80038a1f8
Binary files /dev/null and b/runs/fashion_trainer_20230918_152417/Training vs. Validation Loss_Training/events.out.tfevents.1695043458.msip-dell.ims.rwth-aachen.de.806969.7 differ
diff --git a/runs/fashion_trainer_20230918_152417/Training vs. Validation Loss_Validation/events.out.tfevents.1695043458.msip-dell.ims.rwth-aachen.de.806969.8 b/runs/fashion_trainer_20230918_152417/Training vs. Validation Loss_Validation/events.out.tfevents.1695043458.msip-dell.ims.rwth-aachen.de.806969.8
new file mode 100644
index 0000000000000000000000000000000000000000..b87863ba76e006609cc61d8d77e701bf35d2671d
Binary files /dev/null and b/runs/fashion_trainer_20230918_152417/Training vs. Validation Loss_Validation/events.out.tfevents.1695043458.msip-dell.ims.rwth-aachen.de.806969.8 differ
diff --git a/runs/fashion_trainer_20230918_152417/events.out.tfevents.1695043457.msip-dell.ims.rwth-aachen.de.806969.6 b/runs/fashion_trainer_20230918_152417/events.out.tfevents.1695043457.msip-dell.ims.rwth-aachen.de.806969.6
new file mode 100644
index 0000000000000000000000000000000000000000..8ed3e48fdb599455048915e337876b4499824dae
Binary files /dev/null and b/runs/fashion_trainer_20230918_152417/events.out.tfevents.1695043457.msip-dell.ims.rwth-aachen.de.806969.6 differ
diff --git a/runs/fashion_trainer_20230918_152420/Training vs. Validation Loss_Training/events.out.tfevents.1695043461.msip-dell.ims.rwth-aachen.de.806969.10 b/runs/fashion_trainer_20230918_152420/Training vs. Validation Loss_Training/events.out.tfevents.1695043461.msip-dell.ims.rwth-aachen.de.806969.10
new file mode 100644
index 0000000000000000000000000000000000000000..9a55ec8e92c1cb29212622500acfa003fc0e2bd4
Binary files /dev/null and b/runs/fashion_trainer_20230918_152420/Training vs. Validation Loss_Training/events.out.tfevents.1695043461.msip-dell.ims.rwth-aachen.de.806969.10 differ
diff --git a/runs/fashion_trainer_20230918_152420/Training vs. Validation Loss_Validation/events.out.tfevents.1695043461.msip-dell.ims.rwth-aachen.de.806969.11 b/runs/fashion_trainer_20230918_152420/Training vs. Validation Loss_Validation/events.out.tfevents.1695043461.msip-dell.ims.rwth-aachen.de.806969.11
new file mode 100644
index 0000000000000000000000000000000000000000..b6fb894042f9b1d93dcb8a9059715df316256af3
Binary files /dev/null and b/runs/fashion_trainer_20230918_152420/Training vs. Validation Loss_Validation/events.out.tfevents.1695043461.msip-dell.ims.rwth-aachen.de.806969.11 differ
diff --git a/runs/fashion_trainer_20230918_152420/events.out.tfevents.1695043460.msip-dell.ims.rwth-aachen.de.806969.9 b/runs/fashion_trainer_20230918_152420/events.out.tfevents.1695043460.msip-dell.ims.rwth-aachen.de.806969.9
new file mode 100644
index 0000000000000000000000000000000000000000..def70f9c585668b677ed4a53c804620745c3d711
Binary files /dev/null and b/runs/fashion_trainer_20230918_152420/events.out.tfevents.1695043460.msip-dell.ims.rwth-aachen.de.806969.9 differ
diff --git a/runs/fashion_trainer_20230918_152423/Training vs. Validation Loss_Training/events.out.tfevents.1695043464.msip-dell.ims.rwth-aachen.de.806969.13 b/runs/fashion_trainer_20230918_152423/Training vs. Validation Loss_Training/events.out.tfevents.1695043464.msip-dell.ims.rwth-aachen.de.806969.13
new file mode 100644
index 0000000000000000000000000000000000000000..35068985bcfb4e07449483149d27323761bf455c
Binary files /dev/null and b/runs/fashion_trainer_20230918_152423/Training vs. Validation Loss_Training/events.out.tfevents.1695043464.msip-dell.ims.rwth-aachen.de.806969.13 differ
diff --git a/runs/fashion_trainer_20230918_152423/Training vs. Validation Loss_Validation/events.out.tfevents.1695043464.msip-dell.ims.rwth-aachen.de.806969.14 b/runs/fashion_trainer_20230918_152423/Training vs. Validation Loss_Validation/events.out.tfevents.1695043464.msip-dell.ims.rwth-aachen.de.806969.14
new file mode 100644
index 0000000000000000000000000000000000000000..5a9f0d496cac329aa2930c1b18a104f262fccd93
Binary files /dev/null and b/runs/fashion_trainer_20230918_152423/Training vs. Validation Loss_Validation/events.out.tfevents.1695043464.msip-dell.ims.rwth-aachen.de.806969.14 differ
diff --git a/runs/fashion_trainer_20230918_152423/events.out.tfevents.1695043463.msip-dell.ims.rwth-aachen.de.806969.12 b/runs/fashion_trainer_20230918_152423/events.out.tfevents.1695043463.msip-dell.ims.rwth-aachen.de.806969.12
new file mode 100644
index 0000000000000000000000000000000000000000..963fb03b1aee69441a571bdd57b6e3b0d5141d9c
Binary files /dev/null and b/runs/fashion_trainer_20230918_152423/events.out.tfevents.1695043463.msip-dell.ims.rwth-aachen.de.806969.12 differ
diff --git a/runs/fashion_trainer_20230918_152425/Training vs. Validation Loss_Training/events.out.tfevents.1695043466.msip-dell.ims.rwth-aachen.de.806969.16 b/runs/fashion_trainer_20230918_152425/Training vs. Validation Loss_Training/events.out.tfevents.1695043466.msip-dell.ims.rwth-aachen.de.806969.16
new file mode 100644
index 0000000000000000000000000000000000000000..36d418955d18d71d9c4108e1ea68de1d69f0b82f
Binary files /dev/null and b/runs/fashion_trainer_20230918_152425/Training vs. Validation Loss_Training/events.out.tfevents.1695043466.msip-dell.ims.rwth-aachen.de.806969.16 differ
diff --git a/runs/fashion_trainer_20230918_152425/Training vs. Validation Loss_Validation/events.out.tfevents.1695043466.msip-dell.ims.rwth-aachen.de.806969.17 b/runs/fashion_trainer_20230918_152425/Training vs. Validation Loss_Validation/events.out.tfevents.1695043466.msip-dell.ims.rwth-aachen.de.806969.17
new file mode 100644
index 0000000000000000000000000000000000000000..112205929edbda5a9c5167e5cdccd7fcb13bf507
Binary files /dev/null and b/runs/fashion_trainer_20230918_152425/Training vs. Validation Loss_Validation/events.out.tfevents.1695043466.msip-dell.ims.rwth-aachen.de.806969.17 differ
diff --git a/runs/fashion_trainer_20230918_152425/events.out.tfevents.1695043465.msip-dell.ims.rwth-aachen.de.806969.15 b/runs/fashion_trainer_20230918_152425/events.out.tfevents.1695043465.msip-dell.ims.rwth-aachen.de.806969.15
new file mode 100644
index 0000000000000000000000000000000000000000..0dad9648927a5136bdb145ff807e399281d58bf9
Binary files /dev/null and b/runs/fashion_trainer_20230918_152425/events.out.tfevents.1695043465.msip-dell.ims.rwth-aachen.de.806969.15 differ
diff --git a/runs/fashion_trainer_20230918_152455/Training vs. Validation Loss_Training/events.out.tfevents.1695043496.msip-dell.ims.rwth-aachen.de.807298.1 b/runs/fashion_trainer_20230918_152455/Training vs. Validation Loss_Training/events.out.tfevents.1695043496.msip-dell.ims.rwth-aachen.de.807298.1
new file mode 100644
index 0000000000000000000000000000000000000000..ab6c54cfdaf2cfc0dc9dcfbc155cfa52f7cfc47d
Binary files /dev/null and b/runs/fashion_trainer_20230918_152455/Training vs. Validation Loss_Training/events.out.tfevents.1695043496.msip-dell.ims.rwth-aachen.de.807298.1 differ
diff --git a/runs/fashion_trainer_20230918_152455/Training vs. Validation Loss_Validation/events.out.tfevents.1695043496.msip-dell.ims.rwth-aachen.de.807298.2 b/runs/fashion_trainer_20230918_152455/Training vs. Validation Loss_Validation/events.out.tfevents.1695043496.msip-dell.ims.rwth-aachen.de.807298.2
new file mode 100644
index 0000000000000000000000000000000000000000..334dac7f8140b22122ea675571360f6ff7999f50
Binary files /dev/null and b/runs/fashion_trainer_20230918_152455/Training vs. Validation Loss_Validation/events.out.tfevents.1695043496.msip-dell.ims.rwth-aachen.de.807298.2 differ
diff --git a/runs/fashion_trainer_20230918_152455/events.out.tfevents.1695043495.msip-dell.ims.rwth-aachen.de.807298.0 b/runs/fashion_trainer_20230918_152455/events.out.tfevents.1695043495.msip-dell.ims.rwth-aachen.de.807298.0
new file mode 100644
index 0000000000000000000000000000000000000000..8ca250042491c436c0a69751763e2ad30c9e3b89
Binary files /dev/null and b/runs/fashion_trainer_20230918_152455/events.out.tfevents.1695043495.msip-dell.ims.rwth-aachen.de.807298.0 differ
diff --git a/runs/fashion_trainer_20230918_152506/Training vs. Validation Loss_Training/events.out.tfevents.1695043507.msip-dell.ims.rwth-aachen.de.807298.4 b/runs/fashion_trainer_20230918_152506/Training vs. Validation Loss_Training/events.out.tfevents.1695043507.msip-dell.ims.rwth-aachen.de.807298.4
new file mode 100644
index 0000000000000000000000000000000000000000..cd2050fbc043ce794d5373feb1028e818231f20a
Binary files /dev/null and b/runs/fashion_trainer_20230918_152506/Training vs. Validation Loss_Training/events.out.tfevents.1695043507.msip-dell.ims.rwth-aachen.de.807298.4 differ
diff --git a/runs/fashion_trainer_20230918_152506/Training vs. Validation Loss_Validation/events.out.tfevents.1695043507.msip-dell.ims.rwth-aachen.de.807298.5 b/runs/fashion_trainer_20230918_152506/Training vs. Validation Loss_Validation/events.out.tfevents.1695043507.msip-dell.ims.rwth-aachen.de.807298.5
new file mode 100644
index 0000000000000000000000000000000000000000..5d956d885a7ee2075e647799f1138e607659fa20
Binary files /dev/null and b/runs/fashion_trainer_20230918_152506/Training vs. Validation Loss_Validation/events.out.tfevents.1695043507.msip-dell.ims.rwth-aachen.de.807298.5 differ
diff --git a/runs/fashion_trainer_20230918_152506/events.out.tfevents.1695043506.msip-dell.ims.rwth-aachen.de.807298.3 b/runs/fashion_trainer_20230918_152506/events.out.tfevents.1695043506.msip-dell.ims.rwth-aachen.de.807298.3
new file mode 100644
index 0000000000000000000000000000000000000000..c129606d07ce33f24a9ce6ba678080d0d11d003b
Binary files /dev/null and b/runs/fashion_trainer_20230918_152506/events.out.tfevents.1695043506.msip-dell.ims.rwth-aachen.de.807298.3 differ
diff --git a/runs/fashion_trainer_20230918_152516/Training vs. Validation Loss_Training/events.out.tfevents.1695043517.msip-dell.ims.rwth-aachen.de.807298.7 b/runs/fashion_trainer_20230918_152516/Training vs. Validation Loss_Training/events.out.tfevents.1695043517.msip-dell.ims.rwth-aachen.de.807298.7
new file mode 100644
index 0000000000000000000000000000000000000000..744b7284a95fd8ce7dd4098a1c586b5714b74ea2
Binary files /dev/null and b/runs/fashion_trainer_20230918_152516/Training vs. Validation Loss_Training/events.out.tfevents.1695043517.msip-dell.ims.rwth-aachen.de.807298.7 differ
diff --git a/runs/fashion_trainer_20230918_152516/Training vs. Validation Loss_Validation/events.out.tfevents.1695043517.msip-dell.ims.rwth-aachen.de.807298.8 b/runs/fashion_trainer_20230918_152516/Training vs. Validation Loss_Validation/events.out.tfevents.1695043517.msip-dell.ims.rwth-aachen.de.807298.8
new file mode 100644
index 0000000000000000000000000000000000000000..252ecd3068c0930dbdf8521fc81ed388a048bb6d
Binary files /dev/null and b/runs/fashion_trainer_20230918_152516/Training vs. Validation Loss_Validation/events.out.tfevents.1695043517.msip-dell.ims.rwth-aachen.de.807298.8 differ
diff --git a/runs/fashion_trainer_20230918_152516/events.out.tfevents.1695043516.msip-dell.ims.rwth-aachen.de.807298.6 b/runs/fashion_trainer_20230918_152516/events.out.tfevents.1695043516.msip-dell.ims.rwth-aachen.de.807298.6
new file mode 100644
index 0000000000000000000000000000000000000000..a8990a92f7a977f49a28eeab951b8bbd2aa248a1
Binary files /dev/null and b/runs/fashion_trainer_20230918_152516/events.out.tfevents.1695043516.msip-dell.ims.rwth-aachen.de.807298.6 differ
diff --git a/runs/fashion_trainer_20230918_152526/Training vs. Validation Loss_Training/events.out.tfevents.1695043527.msip-dell.ims.rwth-aachen.de.807298.10 b/runs/fashion_trainer_20230918_152526/Training vs. Validation Loss_Training/events.out.tfevents.1695043527.msip-dell.ims.rwth-aachen.de.807298.10
new file mode 100644
index 0000000000000000000000000000000000000000..e05e14b44c671597ef2dbcec60825d389d7f3116
Binary files /dev/null and b/runs/fashion_trainer_20230918_152526/Training vs. Validation Loss_Training/events.out.tfevents.1695043527.msip-dell.ims.rwth-aachen.de.807298.10 differ
diff --git a/runs/fashion_trainer_20230918_152526/Training vs. Validation Loss_Validation/events.out.tfevents.1695043527.msip-dell.ims.rwth-aachen.de.807298.11 b/runs/fashion_trainer_20230918_152526/Training vs. Validation Loss_Validation/events.out.tfevents.1695043527.msip-dell.ims.rwth-aachen.de.807298.11
new file mode 100644
index 0000000000000000000000000000000000000000..58345f0e25e82d2968e6226dd13a3d19346afc3a
Binary files /dev/null and b/runs/fashion_trainer_20230918_152526/Training vs. Validation Loss_Validation/events.out.tfevents.1695043527.msip-dell.ims.rwth-aachen.de.807298.11 differ
diff --git a/runs/fashion_trainer_20230918_152526/events.out.tfevents.1695043526.msip-dell.ims.rwth-aachen.de.807298.9 b/runs/fashion_trainer_20230918_152526/events.out.tfevents.1695043526.msip-dell.ims.rwth-aachen.de.807298.9
new file mode 100644
index 0000000000000000000000000000000000000000..982da9dd1e7ff90c25a0cf1a4a215c732d8ea200
Binary files /dev/null and b/runs/fashion_trainer_20230918_152526/events.out.tfevents.1695043526.msip-dell.ims.rwth-aachen.de.807298.9 differ
diff --git a/runs/fashion_trainer_20230918_152537/Training vs. Validation Loss_Training/events.out.tfevents.1695043538.msip-dell.ims.rwth-aachen.de.807298.13 b/runs/fashion_trainer_20230918_152537/Training vs. Validation Loss_Training/events.out.tfevents.1695043538.msip-dell.ims.rwth-aachen.de.807298.13
new file mode 100644
index 0000000000000000000000000000000000000000..e49a17fc4afcf87cc1fb3b3c1badfc7372229229
Binary files /dev/null and b/runs/fashion_trainer_20230918_152537/Training vs. Validation Loss_Training/events.out.tfevents.1695043538.msip-dell.ims.rwth-aachen.de.807298.13 differ
diff --git a/runs/fashion_trainer_20230918_152537/Training vs. Validation Loss_Validation/events.out.tfevents.1695043538.msip-dell.ims.rwth-aachen.de.807298.14 b/runs/fashion_trainer_20230918_152537/Training vs. Validation Loss_Validation/events.out.tfevents.1695043538.msip-dell.ims.rwth-aachen.de.807298.14
new file mode 100644
index 0000000000000000000000000000000000000000..928f251b8b34c30b112199d24406305c7ac1591a
Binary files /dev/null and b/runs/fashion_trainer_20230918_152537/Training vs. Validation Loss_Validation/events.out.tfevents.1695043538.msip-dell.ims.rwth-aachen.de.807298.14 differ
diff --git a/runs/fashion_trainer_20230918_152537/events.out.tfevents.1695043537.msip-dell.ims.rwth-aachen.de.807298.12 b/runs/fashion_trainer_20230918_152537/events.out.tfevents.1695043537.msip-dell.ims.rwth-aachen.de.807298.12
new file mode 100644
index 0000000000000000000000000000000000000000..ababc428fd9c2715c4e2e09c7813f588f03d5802
Binary files /dev/null and b/runs/fashion_trainer_20230918_152537/events.out.tfevents.1695043537.msip-dell.ims.rwth-aachen.de.807298.12 differ
diff --git a/runs/fashion_trainer_20230918_152548/Training vs. Validation Loss_Training/events.out.tfevents.1695043549.msip-dell.ims.rwth-aachen.de.807298.16 b/runs/fashion_trainer_20230918_152548/Training vs. Validation Loss_Training/events.out.tfevents.1695043549.msip-dell.ims.rwth-aachen.de.807298.16
new file mode 100644
index 0000000000000000000000000000000000000000..65897a6527f3bc74cc0fdd786b5a5f9ce22a8a69
Binary files /dev/null and b/runs/fashion_trainer_20230918_152548/Training vs. Validation Loss_Training/events.out.tfevents.1695043549.msip-dell.ims.rwth-aachen.de.807298.16 differ
diff --git a/runs/fashion_trainer_20230918_152548/Training vs. Validation Loss_Validation/events.out.tfevents.1695043549.msip-dell.ims.rwth-aachen.de.807298.17 b/runs/fashion_trainer_20230918_152548/Training vs. Validation Loss_Validation/events.out.tfevents.1695043549.msip-dell.ims.rwth-aachen.de.807298.17
new file mode 100644
index 0000000000000000000000000000000000000000..48b763f932035ec53b0b65246e22a78bc11f8fe3
Binary files /dev/null and b/runs/fashion_trainer_20230918_152548/Training vs. Validation Loss_Validation/events.out.tfevents.1695043549.msip-dell.ims.rwth-aachen.de.807298.17 differ
diff --git a/runs/fashion_trainer_20230918_152548/events.out.tfevents.1695043548.msip-dell.ims.rwth-aachen.de.807298.15 b/runs/fashion_trainer_20230918_152548/events.out.tfevents.1695043548.msip-dell.ims.rwth-aachen.de.807298.15
new file mode 100644
index 0000000000000000000000000000000000000000..a723537aa17cb612deb1df85446a94a5516a500f
Binary files /dev/null and b/runs/fashion_trainer_20230918_152548/events.out.tfevents.1695043548.msip-dell.ims.rwth-aachen.de.807298.15 differ
diff --git a/runs/fashion_trainer_20230918_152624/Training vs. Validation Loss_Training/events.out.tfevents.1695043585.msip-dell.ims.rwth-aachen.de.807707.1 b/runs/fashion_trainer_20230918_152624/Training vs. Validation Loss_Training/events.out.tfevents.1695043585.msip-dell.ims.rwth-aachen.de.807707.1
new file mode 100644
index 0000000000000000000000000000000000000000..dde00aa4ea5fc9c06c3a3a3c6912c8b4eb807c72
Binary files /dev/null and b/runs/fashion_trainer_20230918_152624/Training vs. Validation Loss_Training/events.out.tfevents.1695043585.msip-dell.ims.rwth-aachen.de.807707.1 differ
diff --git a/runs/fashion_trainer_20230918_152624/Training vs. Validation Loss_Validation/events.out.tfevents.1695043585.msip-dell.ims.rwth-aachen.de.807707.2 b/runs/fashion_trainer_20230918_152624/Training vs. Validation Loss_Validation/events.out.tfevents.1695043585.msip-dell.ims.rwth-aachen.de.807707.2
new file mode 100644
index 0000000000000000000000000000000000000000..f99a6f3723ecee6466ebc82a3e14726fb6970202
Binary files /dev/null and b/runs/fashion_trainer_20230918_152624/Training vs. Validation Loss_Validation/events.out.tfevents.1695043585.msip-dell.ims.rwth-aachen.de.807707.2 differ
diff --git a/runs/fashion_trainer_20230918_152624/events.out.tfevents.1695043584.msip-dell.ims.rwth-aachen.de.807707.0 b/runs/fashion_trainer_20230918_152624/events.out.tfevents.1695043584.msip-dell.ims.rwth-aachen.de.807707.0
new file mode 100644
index 0000000000000000000000000000000000000000..369eb2e4d58a7faa67db9ede58918bf2a67e4a1a
Binary files /dev/null and b/runs/fashion_trainer_20230918_152624/events.out.tfevents.1695043584.msip-dell.ims.rwth-aachen.de.807707.0 differ
diff --git a/runs/fashion_trainer_20230918_152724/Training vs. Validation Loss_Training/events.out.tfevents.1695043645.msip-dell.ims.rwth-aachen.de.807707.4 b/runs/fashion_trainer_20230918_152724/Training vs. Validation Loss_Training/events.out.tfevents.1695043645.msip-dell.ims.rwth-aachen.de.807707.4
new file mode 100644
index 0000000000000000000000000000000000000000..b7e9316552763d7959e26f7a39c7d18058eb6a0c
Binary files /dev/null and b/runs/fashion_trainer_20230918_152724/Training vs. Validation Loss_Training/events.out.tfevents.1695043645.msip-dell.ims.rwth-aachen.de.807707.4 differ
diff --git a/runs/fashion_trainer_20230918_152724/Training vs. Validation Loss_Validation/events.out.tfevents.1695043645.msip-dell.ims.rwth-aachen.de.807707.5 b/runs/fashion_trainer_20230918_152724/Training vs. Validation Loss_Validation/events.out.tfevents.1695043645.msip-dell.ims.rwth-aachen.de.807707.5
new file mode 100644
index 0000000000000000000000000000000000000000..e96d37999de90ef162e739c170c561e8961e1e51
Binary files /dev/null and b/runs/fashion_trainer_20230918_152724/Training vs. Validation Loss_Validation/events.out.tfevents.1695043645.msip-dell.ims.rwth-aachen.de.807707.5 differ
diff --git a/runs/fashion_trainer_20230918_152724/events.out.tfevents.1695043644.msip-dell.ims.rwth-aachen.de.807707.3 b/runs/fashion_trainer_20230918_152724/events.out.tfevents.1695043644.msip-dell.ims.rwth-aachen.de.807707.3
new file mode 100644
index 0000000000000000000000000000000000000000..908bba8cef6277c1152efa9616a7df1536a17f97
Binary files /dev/null and b/runs/fashion_trainer_20230918_152724/events.out.tfevents.1695043644.msip-dell.ims.rwth-aachen.de.807707.3 differ
diff --git a/runs/fashion_trainer_20230918_152828/Training vs. Validation Loss_Training/events.out.tfevents.1695043709.msip-dell.ims.rwth-aachen.de.807707.7 b/runs/fashion_trainer_20230918_152828/Training vs. Validation Loss_Training/events.out.tfevents.1695043709.msip-dell.ims.rwth-aachen.de.807707.7
new file mode 100644
index 0000000000000000000000000000000000000000..e15d597540bc3a8d1caae05120c16e14dd94636a
Binary files /dev/null and b/runs/fashion_trainer_20230918_152828/Training vs. Validation Loss_Training/events.out.tfevents.1695043709.msip-dell.ims.rwth-aachen.de.807707.7 differ
diff --git a/runs/fashion_trainer_20230918_152828/Training vs. Validation Loss_Validation/events.out.tfevents.1695043709.msip-dell.ims.rwth-aachen.de.807707.8 b/runs/fashion_trainer_20230918_152828/Training vs. Validation Loss_Validation/events.out.tfevents.1695043709.msip-dell.ims.rwth-aachen.de.807707.8
new file mode 100644
index 0000000000000000000000000000000000000000..429a25d51daa665f798cd751d31228a0e969891a
Binary files /dev/null and b/runs/fashion_trainer_20230918_152828/Training vs. Validation Loss_Validation/events.out.tfevents.1695043709.msip-dell.ims.rwth-aachen.de.807707.8 differ
diff --git a/runs/fashion_trainer_20230918_152828/events.out.tfevents.1695043708.msip-dell.ims.rwth-aachen.de.807707.6 b/runs/fashion_trainer_20230918_152828/events.out.tfevents.1695043708.msip-dell.ims.rwth-aachen.de.807707.6
new file mode 100644
index 0000000000000000000000000000000000000000..3ce7f7408f08b7967d34a0287ab71441db886b38
Binary files /dev/null and b/runs/fashion_trainer_20230918_152828/events.out.tfevents.1695043708.msip-dell.ims.rwth-aachen.de.807707.6 differ
diff --git a/runs/fashion_trainer_20230918_152932/Training vs. Validation Loss_Training/events.out.tfevents.1695043773.msip-dell.ims.rwth-aachen.de.807707.10 b/runs/fashion_trainer_20230918_152932/Training vs. Validation Loss_Training/events.out.tfevents.1695043773.msip-dell.ims.rwth-aachen.de.807707.10
new file mode 100644
index 0000000000000000000000000000000000000000..793d4dd73b9f4d32d6819638e6d7d138d88fa1d4
Binary files /dev/null and b/runs/fashion_trainer_20230918_152932/Training vs. Validation Loss_Training/events.out.tfevents.1695043773.msip-dell.ims.rwth-aachen.de.807707.10 differ
diff --git a/runs/fashion_trainer_20230918_152932/Training vs. Validation Loss_Validation/events.out.tfevents.1695043773.msip-dell.ims.rwth-aachen.de.807707.11 b/runs/fashion_trainer_20230918_152932/Training vs. Validation Loss_Validation/events.out.tfevents.1695043773.msip-dell.ims.rwth-aachen.de.807707.11
new file mode 100644
index 0000000000000000000000000000000000000000..530e4452894aed244d0547a60680ee897ca22a24
Binary files /dev/null and b/runs/fashion_trainer_20230918_152932/Training vs. Validation Loss_Validation/events.out.tfevents.1695043773.msip-dell.ims.rwth-aachen.de.807707.11 differ
diff --git a/runs/fashion_trainer_20230918_152932/events.out.tfevents.1695043772.msip-dell.ims.rwth-aachen.de.807707.9 b/runs/fashion_trainer_20230918_152932/events.out.tfevents.1695043772.msip-dell.ims.rwth-aachen.de.807707.9
new file mode 100644
index 0000000000000000000000000000000000000000..52d154d92316802755e8f34e4d8ce18837593ff0
Binary files /dev/null and b/runs/fashion_trainer_20230918_152932/events.out.tfevents.1695043772.msip-dell.ims.rwth-aachen.de.807707.9 differ
diff --git a/runs/fashion_trainer_20230918_153044/Training vs. Validation Loss_Training/events.out.tfevents.1695043845.msip-dell.ims.rwth-aachen.de.807707.13 b/runs/fashion_trainer_20230918_153044/Training vs. Validation Loss_Training/events.out.tfevents.1695043845.msip-dell.ims.rwth-aachen.de.807707.13
new file mode 100644
index 0000000000000000000000000000000000000000..249284e59809c2a448cba8adb2bb889eddd89e2d
Binary files /dev/null and b/runs/fashion_trainer_20230918_153044/Training vs. Validation Loss_Training/events.out.tfevents.1695043845.msip-dell.ims.rwth-aachen.de.807707.13 differ
diff --git a/runs/fashion_trainer_20230918_153044/Training vs. Validation Loss_Validation/events.out.tfevents.1695043845.msip-dell.ims.rwth-aachen.de.807707.14 b/runs/fashion_trainer_20230918_153044/Training vs. Validation Loss_Validation/events.out.tfevents.1695043845.msip-dell.ims.rwth-aachen.de.807707.14
new file mode 100644
index 0000000000000000000000000000000000000000..76330abbac0dd97031b449a32179bd9d3e874cc1
Binary files /dev/null and b/runs/fashion_trainer_20230918_153044/Training vs. Validation Loss_Validation/events.out.tfevents.1695043845.msip-dell.ims.rwth-aachen.de.807707.14 differ
diff --git a/runs/fashion_trainer_20230918_153044/events.out.tfevents.1695043844.msip-dell.ims.rwth-aachen.de.807707.12 b/runs/fashion_trainer_20230918_153044/events.out.tfevents.1695043844.msip-dell.ims.rwth-aachen.de.807707.12
new file mode 100644
index 0000000000000000000000000000000000000000..c8ab8346c8f9a7dbd75a47106989ef0c59094e74
Binary files /dev/null and b/runs/fashion_trainer_20230918_153044/events.out.tfevents.1695043844.msip-dell.ims.rwth-aachen.de.807707.12 differ
diff --git a/runs/fashion_trainer_20230918_153148/Training vs. Validation Loss_Training/events.out.tfevents.1695043909.msip-dell.ims.rwth-aachen.de.807707.16 b/runs/fashion_trainer_20230918_153148/Training vs. Validation Loss_Training/events.out.tfevents.1695043909.msip-dell.ims.rwth-aachen.de.807707.16
new file mode 100644
index 0000000000000000000000000000000000000000..f63a648bf7d5627a7bb17961d036555b25807a61
Binary files /dev/null and b/runs/fashion_trainer_20230918_153148/Training vs. Validation Loss_Training/events.out.tfevents.1695043909.msip-dell.ims.rwth-aachen.de.807707.16 differ
diff --git a/runs/fashion_trainer_20230918_153148/Training vs. Validation Loss_Validation/events.out.tfevents.1695043909.msip-dell.ims.rwth-aachen.de.807707.17 b/runs/fashion_trainer_20230918_153148/Training vs. Validation Loss_Validation/events.out.tfevents.1695043909.msip-dell.ims.rwth-aachen.de.807707.17
new file mode 100644
index 0000000000000000000000000000000000000000..ebc232d70a2424d163f1f050f1e7b7887a953671
Binary files /dev/null and b/runs/fashion_trainer_20230918_153148/Training vs. Validation Loss_Validation/events.out.tfevents.1695043909.msip-dell.ims.rwth-aachen.de.807707.17 differ
diff --git a/runs/fashion_trainer_20230918_153148/events.out.tfevents.1695043908.msip-dell.ims.rwth-aachen.de.807707.15 b/runs/fashion_trainer_20230918_153148/events.out.tfevents.1695043908.msip-dell.ims.rwth-aachen.de.807707.15
new file mode 100644
index 0000000000000000000000000000000000000000..d0809f6707cf4058a8df0f8a7e3856549c1f75fa
Binary files /dev/null and b/runs/fashion_trainer_20230918_153148/events.out.tfevents.1695043908.msip-dell.ims.rwth-aachen.de.807707.15 differ
diff --git a/runs/fashion_trainer_20230918_155406/events.out.tfevents.1695045246.msip-dell.ims.rwth-aachen.de.811322.0 b/runs/fashion_trainer_20230918_155406/events.out.tfevents.1695045246.msip-dell.ims.rwth-aachen.de.811322.0
new file mode 100644
index 0000000000000000000000000000000000000000..8436afcdc7f87ac89c213cd10bb100091d1459f1
Binary files /dev/null and b/runs/fashion_trainer_20230918_155406/events.out.tfevents.1695045246.msip-dell.ims.rwth-aachen.de.811322.0 differ
diff --git a/runs/fashion_trainer_20230918_155441/Training vs. Validation Loss_Training/events.out.tfevents.1695045282.msip-dell.ims.rwth-aachen.de.811677.1 b/runs/fashion_trainer_20230918_155441/Training vs. Validation Loss_Training/events.out.tfevents.1695045282.msip-dell.ims.rwth-aachen.de.811677.1
new file mode 100644
index 0000000000000000000000000000000000000000..d2786d0598e5cca583dc71b401217605c48466aa
Binary files /dev/null and b/runs/fashion_trainer_20230918_155441/Training vs. Validation Loss_Training/events.out.tfevents.1695045282.msip-dell.ims.rwth-aachen.de.811677.1 differ
diff --git a/runs/fashion_trainer_20230918_155441/Training vs. Validation Loss_Validation/events.out.tfevents.1695045282.msip-dell.ims.rwth-aachen.de.811677.2 b/runs/fashion_trainer_20230918_155441/Training vs. Validation Loss_Validation/events.out.tfevents.1695045282.msip-dell.ims.rwth-aachen.de.811677.2
new file mode 100644
index 0000000000000000000000000000000000000000..08d2a5d802d3be4525d7b10314fc70ad2d1ae4ff
Binary files /dev/null and b/runs/fashion_trainer_20230918_155441/Training vs. Validation Loss_Validation/events.out.tfevents.1695045282.msip-dell.ims.rwth-aachen.de.811677.2 differ
diff --git a/runs/fashion_trainer_20230918_155441/events.out.tfevents.1695045281.msip-dell.ims.rwth-aachen.de.811677.0 b/runs/fashion_trainer_20230918_155441/events.out.tfevents.1695045281.msip-dell.ims.rwth-aachen.de.811677.0
new file mode 100644
index 0000000000000000000000000000000000000000..f0d6bc83e31f8a94797a4c6e68ef8265195adbaf
Binary files /dev/null and b/runs/fashion_trainer_20230918_155441/events.out.tfevents.1695045281.msip-dell.ims.rwth-aachen.de.811677.0 differ
diff --git a/runs/fashion_trainer_20230918_155451/Training vs. Validation Loss_Training/events.out.tfevents.1695045292.msip-dell.ims.rwth-aachen.de.811677.4 b/runs/fashion_trainer_20230918_155451/Training vs. Validation Loss_Training/events.out.tfevents.1695045292.msip-dell.ims.rwth-aachen.de.811677.4
new file mode 100644
index 0000000000000000000000000000000000000000..0cb5c29228b9cbecf4a9d10756488ed1018b6bdc
Binary files /dev/null and b/runs/fashion_trainer_20230918_155451/Training vs. Validation Loss_Training/events.out.tfevents.1695045292.msip-dell.ims.rwth-aachen.de.811677.4 differ
diff --git a/runs/fashion_trainer_20230918_155451/Training vs. Validation Loss_Validation/events.out.tfevents.1695045292.msip-dell.ims.rwth-aachen.de.811677.5 b/runs/fashion_trainer_20230918_155451/Training vs. Validation Loss_Validation/events.out.tfevents.1695045292.msip-dell.ims.rwth-aachen.de.811677.5
new file mode 100644
index 0000000000000000000000000000000000000000..56ad5cb430009f64c470e3b778677d1b3b371a69
Binary files /dev/null and b/runs/fashion_trainer_20230918_155451/Training vs. Validation Loss_Validation/events.out.tfevents.1695045292.msip-dell.ims.rwth-aachen.de.811677.5 differ
diff --git a/runs/fashion_trainer_20230918_155451/events.out.tfevents.1695045291.msip-dell.ims.rwth-aachen.de.811677.3 b/runs/fashion_trainer_20230918_155451/events.out.tfevents.1695045291.msip-dell.ims.rwth-aachen.de.811677.3
new file mode 100644
index 0000000000000000000000000000000000000000..32b859999dcd49e81af0a9134a13a7da56691747
Binary files /dev/null and b/runs/fashion_trainer_20230918_155451/events.out.tfevents.1695045291.msip-dell.ims.rwth-aachen.de.811677.3 differ
diff --git a/runs/fashion_trainer_20230918_155502/Training vs. Validation Loss_Training/events.out.tfevents.1695045303.msip-dell.ims.rwth-aachen.de.811677.7 b/runs/fashion_trainer_20230918_155502/Training vs. Validation Loss_Training/events.out.tfevents.1695045303.msip-dell.ims.rwth-aachen.de.811677.7
new file mode 100644
index 0000000000000000000000000000000000000000..75fb02615318cb41aae93f28b1c58747e1f40020
Binary files /dev/null and b/runs/fashion_trainer_20230918_155502/Training vs. Validation Loss_Training/events.out.tfevents.1695045303.msip-dell.ims.rwth-aachen.de.811677.7 differ
diff --git a/runs/fashion_trainer_20230918_155502/Training vs. Validation Loss_Validation/events.out.tfevents.1695045303.msip-dell.ims.rwth-aachen.de.811677.8 b/runs/fashion_trainer_20230918_155502/Training vs. Validation Loss_Validation/events.out.tfevents.1695045303.msip-dell.ims.rwth-aachen.de.811677.8
new file mode 100644
index 0000000000000000000000000000000000000000..598f365d26dd1c49ec5a6fbf4b314b2085301bf0
Binary files /dev/null and b/runs/fashion_trainer_20230918_155502/Training vs. Validation Loss_Validation/events.out.tfevents.1695045303.msip-dell.ims.rwth-aachen.de.811677.8 differ
diff --git a/runs/fashion_trainer_20230918_155502/events.out.tfevents.1695045302.msip-dell.ims.rwth-aachen.de.811677.6 b/runs/fashion_trainer_20230918_155502/events.out.tfevents.1695045302.msip-dell.ims.rwth-aachen.de.811677.6
new file mode 100644
index 0000000000000000000000000000000000000000..126ca4a6ad8e86609c747622526c25ddf4b2cca1
Binary files /dev/null and b/runs/fashion_trainer_20230918_155502/events.out.tfevents.1695045302.msip-dell.ims.rwth-aachen.de.811677.6 differ
diff --git a/runs/fashion_trainer_20230918_155512/Training vs. Validation Loss_Training/events.out.tfevents.1695045314.msip-dell.ims.rwth-aachen.de.811677.10 b/runs/fashion_trainer_20230918_155512/Training vs. Validation Loss_Training/events.out.tfevents.1695045314.msip-dell.ims.rwth-aachen.de.811677.10
new file mode 100644
index 0000000000000000000000000000000000000000..5b5c573ed24d07c12965be27870213016b24f4e6
Binary files /dev/null and b/runs/fashion_trainer_20230918_155512/Training vs. Validation Loss_Training/events.out.tfevents.1695045314.msip-dell.ims.rwth-aachen.de.811677.10 differ
diff --git a/runs/fashion_trainer_20230918_155512/Training vs. Validation Loss_Validation/events.out.tfevents.1695045314.msip-dell.ims.rwth-aachen.de.811677.11 b/runs/fashion_trainer_20230918_155512/Training vs. Validation Loss_Validation/events.out.tfevents.1695045314.msip-dell.ims.rwth-aachen.de.811677.11
new file mode 100644
index 0000000000000000000000000000000000000000..c4ee5b4b8c1404648ef01f5ecc17d2e028410baa
Binary files /dev/null and b/runs/fashion_trainer_20230918_155512/Training vs. Validation Loss_Validation/events.out.tfevents.1695045314.msip-dell.ims.rwth-aachen.de.811677.11 differ
diff --git a/runs/fashion_trainer_20230918_155512/events.out.tfevents.1695045312.msip-dell.ims.rwth-aachen.de.811677.9 b/runs/fashion_trainer_20230918_155512/events.out.tfevents.1695045312.msip-dell.ims.rwth-aachen.de.811677.9
new file mode 100644
index 0000000000000000000000000000000000000000..08973759e0004d5d54fc3c7a766d67b677e30472
Binary files /dev/null and b/runs/fashion_trainer_20230918_155512/events.out.tfevents.1695045312.msip-dell.ims.rwth-aachen.de.811677.9 differ
diff --git a/runs/fashion_trainer_20230918_155523/Training vs. Validation Loss_Training/events.out.tfevents.1695045323.msip-dell.ims.rwth-aachen.de.811677.13 b/runs/fashion_trainer_20230918_155523/Training vs. Validation Loss_Training/events.out.tfevents.1695045323.msip-dell.ims.rwth-aachen.de.811677.13
new file mode 100644
index 0000000000000000000000000000000000000000..204db6da7c235da1e11167f416f082eaf3c389eb
Binary files /dev/null and b/runs/fashion_trainer_20230918_155523/Training vs. Validation Loss_Training/events.out.tfevents.1695045323.msip-dell.ims.rwth-aachen.de.811677.13 differ
diff --git a/runs/fashion_trainer_20230918_155523/Training vs. Validation Loss_Validation/events.out.tfevents.1695045323.msip-dell.ims.rwth-aachen.de.811677.14 b/runs/fashion_trainer_20230918_155523/Training vs. Validation Loss_Validation/events.out.tfevents.1695045323.msip-dell.ims.rwth-aachen.de.811677.14
new file mode 100644
index 0000000000000000000000000000000000000000..abd27229117cdcff59dca3e2092c96450dd025c1
Binary files /dev/null and b/runs/fashion_trainer_20230918_155523/Training vs. Validation Loss_Validation/events.out.tfevents.1695045323.msip-dell.ims.rwth-aachen.de.811677.14 differ
diff --git a/runs/fashion_trainer_20230918_155523/events.out.tfevents.1695045323.msip-dell.ims.rwth-aachen.de.811677.12 b/runs/fashion_trainer_20230918_155523/events.out.tfevents.1695045323.msip-dell.ims.rwth-aachen.de.811677.12
new file mode 100644
index 0000000000000000000000000000000000000000..573bfeef37701ca8c86bd10f1f3671452a33ab96
Binary files /dev/null and b/runs/fashion_trainer_20230918_155523/events.out.tfevents.1695045323.msip-dell.ims.rwth-aachen.de.811677.12 differ
diff --git a/runs/fashion_trainer_20230918_155535/Training vs. Validation Loss_Training/events.out.tfevents.1695045336.msip-dell.ims.rwth-aachen.de.811677.16 b/runs/fashion_trainer_20230918_155535/Training vs. Validation Loss_Training/events.out.tfevents.1695045336.msip-dell.ims.rwth-aachen.de.811677.16
new file mode 100644
index 0000000000000000000000000000000000000000..3f65d32016cb5f5be56cc956a1b7383d913c9cb6
Binary files /dev/null and b/runs/fashion_trainer_20230918_155535/Training vs. Validation Loss_Training/events.out.tfevents.1695045336.msip-dell.ims.rwth-aachen.de.811677.16 differ
diff --git a/runs/fashion_trainer_20230918_155535/Training vs. Validation Loss_Validation/events.out.tfevents.1695045336.msip-dell.ims.rwth-aachen.de.811677.17 b/runs/fashion_trainer_20230918_155535/Training vs. Validation Loss_Validation/events.out.tfevents.1695045336.msip-dell.ims.rwth-aachen.de.811677.17
new file mode 100644
index 0000000000000000000000000000000000000000..7c3d67d7ccaae79ca223766546ac63036323bd5e
Binary files /dev/null and b/runs/fashion_trainer_20230918_155535/Training vs. Validation Loss_Validation/events.out.tfevents.1695045336.msip-dell.ims.rwth-aachen.de.811677.17 differ
diff --git a/runs/fashion_trainer_20230918_155535/events.out.tfevents.1695045335.msip-dell.ims.rwth-aachen.de.811677.15 b/runs/fashion_trainer_20230918_155535/events.out.tfevents.1695045335.msip-dell.ims.rwth-aachen.de.811677.15
new file mode 100644
index 0000000000000000000000000000000000000000..5e9e40ee02eaca33c18d79d3eb61099ebcbf9699
Binary files /dev/null and b/runs/fashion_trainer_20230918_155535/events.out.tfevents.1695045335.msip-dell.ims.rwth-aachen.de.811677.15 differ
diff --git a/runs/fashion_trainer_20230918_155548/Training vs. Validation Loss_Training/events.out.tfevents.1695045349.msip-dell.ims.rwth-aachen.de.811677.19 b/runs/fashion_trainer_20230918_155548/Training vs. Validation Loss_Training/events.out.tfevents.1695045349.msip-dell.ims.rwth-aachen.de.811677.19
new file mode 100644
index 0000000000000000000000000000000000000000..5f92754b9272845bf73aa57b20da41a833bcb3a8
Binary files /dev/null and b/runs/fashion_trainer_20230918_155548/Training vs. Validation Loss_Training/events.out.tfevents.1695045349.msip-dell.ims.rwth-aachen.de.811677.19 differ
diff --git a/runs/fashion_trainer_20230918_155548/Training vs. Validation Loss_Validation/events.out.tfevents.1695045349.msip-dell.ims.rwth-aachen.de.811677.20 b/runs/fashion_trainer_20230918_155548/Training vs. Validation Loss_Validation/events.out.tfevents.1695045349.msip-dell.ims.rwth-aachen.de.811677.20
new file mode 100644
index 0000000000000000000000000000000000000000..c45226e2c9a8e621bb1fe999a251000591cc6fd9
Binary files /dev/null and b/runs/fashion_trainer_20230918_155548/Training vs. Validation Loss_Validation/events.out.tfevents.1695045349.msip-dell.ims.rwth-aachen.de.811677.20 differ
diff --git a/runs/fashion_trainer_20230918_155548/events.out.tfevents.1695045348.msip-dell.ims.rwth-aachen.de.811677.18 b/runs/fashion_trainer_20230918_155548/events.out.tfevents.1695045348.msip-dell.ims.rwth-aachen.de.811677.18
new file mode 100644
index 0000000000000000000000000000000000000000..57a42b1688047154446f40ead885b37f0db9f549
Binary files /dev/null and b/runs/fashion_trainer_20230918_155548/events.out.tfevents.1695045348.msip-dell.ims.rwth-aachen.de.811677.18 differ
diff --git a/runs/fashion_trainer_20230918_155600/Training vs. Validation Loss_Training/events.out.tfevents.1695045361.msip-dell.ims.rwth-aachen.de.811677.22 b/runs/fashion_trainer_20230918_155600/Training vs. Validation Loss_Training/events.out.tfevents.1695045361.msip-dell.ims.rwth-aachen.de.811677.22
new file mode 100644
index 0000000000000000000000000000000000000000..8f92bee85f47421ae8286d4e5eb55d512554cc62
Binary files /dev/null and b/runs/fashion_trainer_20230918_155600/Training vs. Validation Loss_Training/events.out.tfevents.1695045361.msip-dell.ims.rwth-aachen.de.811677.22 differ
diff --git a/runs/fashion_trainer_20230918_155600/Training vs. Validation Loss_Validation/events.out.tfevents.1695045361.msip-dell.ims.rwth-aachen.de.811677.23 b/runs/fashion_trainer_20230918_155600/Training vs. Validation Loss_Validation/events.out.tfevents.1695045361.msip-dell.ims.rwth-aachen.de.811677.23
new file mode 100644
index 0000000000000000000000000000000000000000..7b598a6c342f97551717472a9b47e7e3c4465248
Binary files /dev/null and b/runs/fashion_trainer_20230918_155600/Training vs. Validation Loss_Validation/events.out.tfevents.1695045361.msip-dell.ims.rwth-aachen.de.811677.23 differ
diff --git a/runs/fashion_trainer_20230918_155600/events.out.tfevents.1695045360.msip-dell.ims.rwth-aachen.de.811677.21 b/runs/fashion_trainer_20230918_155600/events.out.tfevents.1695045360.msip-dell.ims.rwth-aachen.de.811677.21
new file mode 100644
index 0000000000000000000000000000000000000000..face52e249140b5106ce8d155e53cb1ea42ad244
Binary files /dev/null and b/runs/fashion_trainer_20230918_155600/events.out.tfevents.1695045360.msip-dell.ims.rwth-aachen.de.811677.21 differ
diff --git a/runs/fashion_trainer_20230918_155800/Training vs. Validation Loss_Training/events.out.tfevents.1695045481.msip-dell.ims.rwth-aachen.de.812787.1 b/runs/fashion_trainer_20230918_155800/Training vs. Validation Loss_Training/events.out.tfevents.1695045481.msip-dell.ims.rwth-aachen.de.812787.1
new file mode 100644
index 0000000000000000000000000000000000000000..734cbdb63ad839bd076d23751ffc12c4ce0a0ff9
Binary files /dev/null and b/runs/fashion_trainer_20230918_155800/Training vs. Validation Loss_Training/events.out.tfevents.1695045481.msip-dell.ims.rwth-aachen.de.812787.1 differ
diff --git a/runs/fashion_trainer_20230918_155800/Training vs. Validation Loss_Validation/events.out.tfevents.1695045481.msip-dell.ims.rwth-aachen.de.812787.2 b/runs/fashion_trainer_20230918_155800/Training vs. Validation Loss_Validation/events.out.tfevents.1695045481.msip-dell.ims.rwth-aachen.de.812787.2
new file mode 100644
index 0000000000000000000000000000000000000000..aa57fa375e2a564b3b32148395e2925db1cc56d9
Binary files /dev/null and b/runs/fashion_trainer_20230918_155800/Training vs. Validation Loss_Validation/events.out.tfevents.1695045481.msip-dell.ims.rwth-aachen.de.812787.2 differ
diff --git a/runs/fashion_trainer_20230918_155800/events.out.tfevents.1695045480.msip-dell.ims.rwth-aachen.de.812787.0 b/runs/fashion_trainer_20230918_155800/events.out.tfevents.1695045480.msip-dell.ims.rwth-aachen.de.812787.0
new file mode 100644
index 0000000000000000000000000000000000000000..900348320ddb2056d1f302dd9eecd1b12183a254
Binary files /dev/null and b/runs/fashion_trainer_20230918_155800/events.out.tfevents.1695045480.msip-dell.ims.rwth-aachen.de.812787.0 differ
diff --git a/runs/fashion_trainer_20230918_155900/Training vs. Validation Loss_Training/events.out.tfevents.1695045541.msip-dell.ims.rwth-aachen.de.812787.4 b/runs/fashion_trainer_20230918_155900/Training vs. Validation Loss_Training/events.out.tfevents.1695045541.msip-dell.ims.rwth-aachen.de.812787.4
new file mode 100644
index 0000000000000000000000000000000000000000..d419b409a0accd9ba4a8cbc51adb608ad4b4c422
Binary files /dev/null and b/runs/fashion_trainer_20230918_155900/Training vs. Validation Loss_Training/events.out.tfevents.1695045541.msip-dell.ims.rwth-aachen.de.812787.4 differ
diff --git a/runs/fashion_trainer_20230918_155900/Training vs. Validation Loss_Validation/events.out.tfevents.1695045541.msip-dell.ims.rwth-aachen.de.812787.5 b/runs/fashion_trainer_20230918_155900/Training vs. Validation Loss_Validation/events.out.tfevents.1695045541.msip-dell.ims.rwth-aachen.de.812787.5
new file mode 100644
index 0000000000000000000000000000000000000000..f9252a800e90df0b156b8d59d7e95424541c7b8f
Binary files /dev/null and b/runs/fashion_trainer_20230918_155900/Training vs. Validation Loss_Validation/events.out.tfevents.1695045541.msip-dell.ims.rwth-aachen.de.812787.5 differ
diff --git a/runs/fashion_trainer_20230918_155900/events.out.tfevents.1695045540.msip-dell.ims.rwth-aachen.de.812787.3 b/runs/fashion_trainer_20230918_155900/events.out.tfevents.1695045540.msip-dell.ims.rwth-aachen.de.812787.3
new file mode 100644
index 0000000000000000000000000000000000000000..11411a1be458f1a524714803e008402d77e697d0
Binary files /dev/null and b/runs/fashion_trainer_20230918_155900/events.out.tfevents.1695045540.msip-dell.ims.rwth-aachen.de.812787.3 differ
diff --git a/runs/fashion_trainer_20230918_155958/Training vs. Validation Loss_Training/events.out.tfevents.1695045599.msip-dell.ims.rwth-aachen.de.812787.7 b/runs/fashion_trainer_20230918_155958/Training vs. Validation Loss_Training/events.out.tfevents.1695045599.msip-dell.ims.rwth-aachen.de.812787.7
new file mode 100644
index 0000000000000000000000000000000000000000..af2d11a7d75310884adda6f74ddd512b6427813f
Binary files /dev/null and b/runs/fashion_trainer_20230918_155958/Training vs. Validation Loss_Training/events.out.tfevents.1695045599.msip-dell.ims.rwth-aachen.de.812787.7 differ
diff --git a/runs/fashion_trainer_20230918_155958/Training vs. Validation Loss_Validation/events.out.tfevents.1695045599.msip-dell.ims.rwth-aachen.de.812787.8 b/runs/fashion_trainer_20230918_155958/Training vs. Validation Loss_Validation/events.out.tfevents.1695045599.msip-dell.ims.rwth-aachen.de.812787.8
new file mode 100644
index 0000000000000000000000000000000000000000..d1b21b5b92c6838e6df4763974123df0094ef789
Binary files /dev/null and b/runs/fashion_trainer_20230918_155958/Training vs. Validation Loss_Validation/events.out.tfevents.1695045599.msip-dell.ims.rwth-aachen.de.812787.8 differ
diff --git a/runs/fashion_trainer_20230918_155958/events.out.tfevents.1695045598.msip-dell.ims.rwth-aachen.de.812787.6 b/runs/fashion_trainer_20230918_155958/events.out.tfevents.1695045598.msip-dell.ims.rwth-aachen.de.812787.6
new file mode 100644
index 0000000000000000000000000000000000000000..5d44f7311c8192ae5cf767d76613c580403395c0
Binary files /dev/null and b/runs/fashion_trainer_20230918_155958/events.out.tfevents.1695045598.msip-dell.ims.rwth-aachen.de.812787.6 differ
diff --git a/runs/fashion_trainer_20230918_160057/Training vs. Validation Loss_Training/events.out.tfevents.1695045658.msip-dell.ims.rwth-aachen.de.812787.10 b/runs/fashion_trainer_20230918_160057/Training vs. Validation Loss_Training/events.out.tfevents.1695045658.msip-dell.ims.rwth-aachen.de.812787.10
new file mode 100644
index 0000000000000000000000000000000000000000..c21cc778c18fd35626f99b8dc0a4096d8b2ccc25
Binary files /dev/null and b/runs/fashion_trainer_20230918_160057/Training vs. Validation Loss_Training/events.out.tfevents.1695045658.msip-dell.ims.rwth-aachen.de.812787.10 differ
diff --git a/runs/fashion_trainer_20230918_160057/Training vs. Validation Loss_Validation/events.out.tfevents.1695045658.msip-dell.ims.rwth-aachen.de.812787.11 b/runs/fashion_trainer_20230918_160057/Training vs. Validation Loss_Validation/events.out.tfevents.1695045658.msip-dell.ims.rwth-aachen.de.812787.11
new file mode 100644
index 0000000000000000000000000000000000000000..be7dd8d28caedd01d806e0ff200fe78487b0d6d6
Binary files /dev/null and b/runs/fashion_trainer_20230918_160057/Training vs. Validation Loss_Validation/events.out.tfevents.1695045658.msip-dell.ims.rwth-aachen.de.812787.11 differ
diff --git a/runs/fashion_trainer_20230918_160057/events.out.tfevents.1695045657.msip-dell.ims.rwth-aachen.de.812787.9 b/runs/fashion_trainer_20230918_160057/events.out.tfevents.1695045657.msip-dell.ims.rwth-aachen.de.812787.9
new file mode 100644
index 0000000000000000000000000000000000000000..8229d8db2f4741c55292c441a97c78ba2c5cdc56
Binary files /dev/null and b/runs/fashion_trainer_20230918_160057/events.out.tfevents.1695045657.msip-dell.ims.rwth-aachen.de.812787.9 differ
diff --git a/runs/fashion_trainer_20230918_160207/Training vs. Validation Loss_Training/events.out.tfevents.1695045728.msip-dell.ims.rwth-aachen.de.812787.13 b/runs/fashion_trainer_20230918_160207/Training vs. Validation Loss_Training/events.out.tfevents.1695045728.msip-dell.ims.rwth-aachen.de.812787.13
new file mode 100644
index 0000000000000000000000000000000000000000..f66fece2d4d89512129c591533fdf9bfd6ace8ac
Binary files /dev/null and b/runs/fashion_trainer_20230918_160207/Training vs. Validation Loss_Training/events.out.tfevents.1695045728.msip-dell.ims.rwth-aachen.de.812787.13 differ
diff --git a/runs/fashion_trainer_20230918_160207/Training vs. Validation Loss_Validation/events.out.tfevents.1695045728.msip-dell.ims.rwth-aachen.de.812787.14 b/runs/fashion_trainer_20230918_160207/Training vs. Validation Loss_Validation/events.out.tfevents.1695045728.msip-dell.ims.rwth-aachen.de.812787.14
new file mode 100644
index 0000000000000000000000000000000000000000..498c15aa37f39756abc2b91ffd87b9aa618672e5
Binary files /dev/null and b/runs/fashion_trainer_20230918_160207/Training vs. Validation Loss_Validation/events.out.tfevents.1695045728.msip-dell.ims.rwth-aachen.de.812787.14 differ
diff --git a/runs/fashion_trainer_20230918_160207/events.out.tfevents.1695045727.msip-dell.ims.rwth-aachen.de.812787.12 b/runs/fashion_trainer_20230918_160207/events.out.tfevents.1695045727.msip-dell.ims.rwth-aachen.de.812787.12
new file mode 100644
index 0000000000000000000000000000000000000000..c8e306ee3a26ebe71c493cf40dafb47c7a3ced45
Binary files /dev/null and b/runs/fashion_trainer_20230918_160207/events.out.tfevents.1695045727.msip-dell.ims.rwth-aachen.de.812787.12 differ
diff --git a/runs/fashion_trainer_20230918_160312/Training vs. Validation Loss_Training/events.out.tfevents.1695045793.msip-dell.ims.rwth-aachen.de.812787.16 b/runs/fashion_trainer_20230918_160312/Training vs. Validation Loss_Training/events.out.tfevents.1695045793.msip-dell.ims.rwth-aachen.de.812787.16
new file mode 100644
index 0000000000000000000000000000000000000000..dc2ac4f2ea2ce093467d81054c25e1071bae3963
Binary files /dev/null and b/runs/fashion_trainer_20230918_160312/Training vs. Validation Loss_Training/events.out.tfevents.1695045793.msip-dell.ims.rwth-aachen.de.812787.16 differ
diff --git a/runs/fashion_trainer_20230918_160312/Training vs. Validation Loss_Validation/events.out.tfevents.1695045793.msip-dell.ims.rwth-aachen.de.812787.17 b/runs/fashion_trainer_20230918_160312/Training vs. Validation Loss_Validation/events.out.tfevents.1695045793.msip-dell.ims.rwth-aachen.de.812787.17
new file mode 100644
index 0000000000000000000000000000000000000000..6ca3815b532aa4a5ac451e4b9a31227a78f4f6fa
Binary files /dev/null and b/runs/fashion_trainer_20230918_160312/Training vs. Validation Loss_Validation/events.out.tfevents.1695045793.msip-dell.ims.rwth-aachen.de.812787.17 differ
diff --git a/runs/fashion_trainer_20230918_160312/events.out.tfevents.1695045792.msip-dell.ims.rwth-aachen.de.812787.15 b/runs/fashion_trainer_20230918_160312/events.out.tfevents.1695045792.msip-dell.ims.rwth-aachen.de.812787.15
new file mode 100644
index 0000000000000000000000000000000000000000..cbc776360d7c84cb7a41ad8b9c7f714c09274119
Binary files /dev/null and b/runs/fashion_trainer_20230918_160312/events.out.tfevents.1695045792.msip-dell.ims.rwth-aachen.de.812787.15 differ
diff --git a/runs/fashion_trainer_20230918_160428/Training vs. Validation Loss_Training/events.out.tfevents.1695045869.msip-dell.ims.rwth-aachen.de.812787.19 b/runs/fashion_trainer_20230918_160428/Training vs. Validation Loss_Training/events.out.tfevents.1695045869.msip-dell.ims.rwth-aachen.de.812787.19
new file mode 100644
index 0000000000000000000000000000000000000000..258123d389e4aa8463dd31f0fa54f50eea958089
Binary files /dev/null and b/runs/fashion_trainer_20230918_160428/Training vs. Validation Loss_Training/events.out.tfevents.1695045869.msip-dell.ims.rwth-aachen.de.812787.19 differ
diff --git a/runs/fashion_trainer_20230918_160428/Training vs. Validation Loss_Validation/events.out.tfevents.1695045869.msip-dell.ims.rwth-aachen.de.812787.20 b/runs/fashion_trainer_20230918_160428/Training vs. Validation Loss_Validation/events.out.tfevents.1695045869.msip-dell.ims.rwth-aachen.de.812787.20
new file mode 100644
index 0000000000000000000000000000000000000000..7b11d2bade519339c2232f4221841c846315e2f3
Binary files /dev/null and b/runs/fashion_trainer_20230918_160428/Training vs. Validation Loss_Validation/events.out.tfevents.1695045869.msip-dell.ims.rwth-aachen.de.812787.20 differ
diff --git a/runs/fashion_trainer_20230918_160428/events.out.tfevents.1695045868.msip-dell.ims.rwth-aachen.de.812787.18 b/runs/fashion_trainer_20230918_160428/events.out.tfevents.1695045868.msip-dell.ims.rwth-aachen.de.812787.18
new file mode 100644
index 0000000000000000000000000000000000000000..330b9266b25ffe40bba2210dbbcaf2d1f7a1d5fb
Binary files /dev/null and b/runs/fashion_trainer_20230918_160428/events.out.tfevents.1695045868.msip-dell.ims.rwth-aachen.de.812787.18 differ
diff --git a/runs/fashion_trainer_20230918_160525/Training vs. Validation Loss_Training/events.out.tfevents.1695045926.msip-dell.ims.rwth-aachen.de.812787.22 b/runs/fashion_trainer_20230918_160525/Training vs. Validation Loss_Training/events.out.tfevents.1695045926.msip-dell.ims.rwth-aachen.de.812787.22
new file mode 100644
index 0000000000000000000000000000000000000000..7abcf967f3e3afd1a3a3f1cad8a6112ef79e3a8a
Binary files /dev/null and b/runs/fashion_trainer_20230918_160525/Training vs. Validation Loss_Training/events.out.tfevents.1695045926.msip-dell.ims.rwth-aachen.de.812787.22 differ
diff --git a/runs/fashion_trainer_20230918_160525/Training vs. Validation Loss_Validation/events.out.tfevents.1695045926.msip-dell.ims.rwth-aachen.de.812787.23 b/runs/fashion_trainer_20230918_160525/Training vs. Validation Loss_Validation/events.out.tfevents.1695045926.msip-dell.ims.rwth-aachen.de.812787.23
new file mode 100644
index 0000000000000000000000000000000000000000..0b34cfe993b4ed0dd3bbec5bb847c0f6b4daeaf7
Binary files /dev/null and b/runs/fashion_trainer_20230918_160525/Training vs. Validation Loss_Validation/events.out.tfevents.1695045926.msip-dell.ims.rwth-aachen.de.812787.23 differ
diff --git a/runs/fashion_trainer_20230918_160525/events.out.tfevents.1695045925.msip-dell.ims.rwth-aachen.de.812787.21 b/runs/fashion_trainer_20230918_160525/events.out.tfevents.1695045925.msip-dell.ims.rwth-aachen.de.812787.21
new file mode 100644
index 0000000000000000000000000000000000000000..e1bb30678991196d2c9cfc8e69f9bd90ebf9da00
Binary files /dev/null and b/runs/fashion_trainer_20230918_160525/events.out.tfevents.1695045925.msip-dell.ims.rwth-aachen.de.812787.21 differ
diff --git a/runs/fashion_trainer_20230918_161126/Training vs. Validation Loss_Training/events.out.tfevents.1695046287.msip-dell.ims.rwth-aachen.de.814940.1 b/runs/fashion_trainer_20230918_161126/Training vs. Validation Loss_Training/events.out.tfevents.1695046287.msip-dell.ims.rwth-aachen.de.814940.1
new file mode 100644
index 0000000000000000000000000000000000000000..18a6df0eafdea9521942785092d391f0f2af37b8
Binary files /dev/null and b/runs/fashion_trainer_20230918_161126/Training vs. Validation Loss_Training/events.out.tfevents.1695046287.msip-dell.ims.rwth-aachen.de.814940.1 differ
diff --git a/runs/fashion_trainer_20230918_161126/Training vs. Validation Loss_Validation/events.out.tfevents.1695046287.msip-dell.ims.rwth-aachen.de.814940.2 b/runs/fashion_trainer_20230918_161126/Training vs. Validation Loss_Validation/events.out.tfevents.1695046287.msip-dell.ims.rwth-aachen.de.814940.2
new file mode 100644
index 0000000000000000000000000000000000000000..b786881e6c6d633365e81550abb35445d65e63c1
Binary files /dev/null and b/runs/fashion_trainer_20230918_161126/Training vs. Validation Loss_Validation/events.out.tfevents.1695046287.msip-dell.ims.rwth-aachen.de.814940.2 differ
diff --git a/runs/fashion_trainer_20230918_161126/events.out.tfevents.1695046286.msip-dell.ims.rwth-aachen.de.814940.0 b/runs/fashion_trainer_20230918_161126/events.out.tfevents.1695046286.msip-dell.ims.rwth-aachen.de.814940.0
new file mode 100644
index 0000000000000000000000000000000000000000..a86e46e90a1881a52d441eaea3d39cb6508b8fdd
Binary files /dev/null and b/runs/fashion_trainer_20230918_161126/events.out.tfevents.1695046286.msip-dell.ims.rwth-aachen.de.814940.0 differ
diff --git a/runs/fashion_trainer_20230918_161131/Training vs. Validation Loss_Training/events.out.tfevents.1695046292.msip-dell.ims.rwth-aachen.de.814940.4 b/runs/fashion_trainer_20230918_161131/Training vs. Validation Loss_Training/events.out.tfevents.1695046292.msip-dell.ims.rwth-aachen.de.814940.4
new file mode 100644
index 0000000000000000000000000000000000000000..6160e6230583477e8afa569b5be6b74431960579
Binary files /dev/null and b/runs/fashion_trainer_20230918_161131/Training vs. Validation Loss_Training/events.out.tfevents.1695046292.msip-dell.ims.rwth-aachen.de.814940.4 differ
diff --git a/runs/fashion_trainer_20230918_161131/Training vs. Validation Loss_Validation/events.out.tfevents.1695046292.msip-dell.ims.rwth-aachen.de.814940.5 b/runs/fashion_trainer_20230918_161131/Training vs. Validation Loss_Validation/events.out.tfevents.1695046292.msip-dell.ims.rwth-aachen.de.814940.5
new file mode 100644
index 0000000000000000000000000000000000000000..e9aa8254da5248587b5bdb8f45e2e702d066c32c
Binary files /dev/null and b/runs/fashion_trainer_20230918_161131/Training vs. Validation Loss_Validation/events.out.tfevents.1695046292.msip-dell.ims.rwth-aachen.de.814940.5 differ
diff --git a/runs/fashion_trainer_20230918_161131/events.out.tfevents.1695046291.msip-dell.ims.rwth-aachen.de.814940.3 b/runs/fashion_trainer_20230918_161131/events.out.tfevents.1695046291.msip-dell.ims.rwth-aachen.de.814940.3
new file mode 100644
index 0000000000000000000000000000000000000000..7861c879ec49dec9181d72d5eb33095dfff08a3f
Binary files /dev/null and b/runs/fashion_trainer_20230918_161131/events.out.tfevents.1695046291.msip-dell.ims.rwth-aachen.de.814940.3 differ
diff --git a/runs/fashion_trainer_20230918_161135/Training vs. Validation Loss_Training/events.out.tfevents.1695046296.msip-dell.ims.rwth-aachen.de.814940.7 b/runs/fashion_trainer_20230918_161135/Training vs. Validation Loss_Training/events.out.tfevents.1695046296.msip-dell.ims.rwth-aachen.de.814940.7
new file mode 100644
index 0000000000000000000000000000000000000000..0421c04aa226a3381af2cee0d611f0a434086213
Binary files /dev/null and b/runs/fashion_trainer_20230918_161135/Training vs. Validation Loss_Training/events.out.tfevents.1695046296.msip-dell.ims.rwth-aachen.de.814940.7 differ
diff --git a/runs/fashion_trainer_20230918_161135/Training vs. Validation Loss_Validation/events.out.tfevents.1695046296.msip-dell.ims.rwth-aachen.de.814940.8 b/runs/fashion_trainer_20230918_161135/Training vs. Validation Loss_Validation/events.out.tfevents.1695046296.msip-dell.ims.rwth-aachen.de.814940.8
new file mode 100644
index 0000000000000000000000000000000000000000..428fd35907373bfc28f58a7270eda2af62bf5096
Binary files /dev/null and b/runs/fashion_trainer_20230918_161135/Training vs. Validation Loss_Validation/events.out.tfevents.1695046296.msip-dell.ims.rwth-aachen.de.814940.8 differ
diff --git a/runs/fashion_trainer_20230918_161135/events.out.tfevents.1695046295.msip-dell.ims.rwth-aachen.de.814940.6 b/runs/fashion_trainer_20230918_161135/events.out.tfevents.1695046295.msip-dell.ims.rwth-aachen.de.814940.6
new file mode 100644
index 0000000000000000000000000000000000000000..63b440b2ec01d51985a31e86a77875a7a203b991
Binary files /dev/null and b/runs/fashion_trainer_20230918_161135/events.out.tfevents.1695046295.msip-dell.ims.rwth-aachen.de.814940.6 differ
diff --git a/runs/fashion_trainer_20230918_161138/Training vs. Validation Loss_Training/events.out.tfevents.1695046299.msip-dell.ims.rwth-aachen.de.814940.10 b/runs/fashion_trainer_20230918_161138/Training vs. Validation Loss_Training/events.out.tfevents.1695046299.msip-dell.ims.rwth-aachen.de.814940.10
new file mode 100644
index 0000000000000000000000000000000000000000..7e38b13a4c9e9ce12e050a041f24306f57a40801
Binary files /dev/null and b/runs/fashion_trainer_20230918_161138/Training vs. Validation Loss_Training/events.out.tfevents.1695046299.msip-dell.ims.rwth-aachen.de.814940.10 differ
diff --git a/runs/fashion_trainer_20230918_161138/Training vs. Validation Loss_Validation/events.out.tfevents.1695046299.msip-dell.ims.rwth-aachen.de.814940.11 b/runs/fashion_trainer_20230918_161138/Training vs. Validation Loss_Validation/events.out.tfevents.1695046299.msip-dell.ims.rwth-aachen.de.814940.11
new file mode 100644
index 0000000000000000000000000000000000000000..1351a1ff727985990cfc2910782a1fc2c5592c80
Binary files /dev/null and b/runs/fashion_trainer_20230918_161138/Training vs. Validation Loss_Validation/events.out.tfevents.1695046299.msip-dell.ims.rwth-aachen.de.814940.11 differ
diff --git a/runs/fashion_trainer_20230918_161138/events.out.tfevents.1695046298.msip-dell.ims.rwth-aachen.de.814940.9 b/runs/fashion_trainer_20230918_161138/events.out.tfevents.1695046298.msip-dell.ims.rwth-aachen.de.814940.9
new file mode 100644
index 0000000000000000000000000000000000000000..c03b30f37da974c099d3191103c3329f765284cb
Binary files /dev/null and b/runs/fashion_trainer_20230918_161138/events.out.tfevents.1695046298.msip-dell.ims.rwth-aachen.de.814940.9 differ
diff --git a/runs/fashion_trainer_20230918_161142/Training vs. Validation Loss_Training/events.out.tfevents.1695046303.msip-dell.ims.rwth-aachen.de.814940.13 b/runs/fashion_trainer_20230918_161142/Training vs. Validation Loss_Training/events.out.tfevents.1695046303.msip-dell.ims.rwth-aachen.de.814940.13
new file mode 100644
index 0000000000000000000000000000000000000000..899e1ad4c4d1dadcaa610d8d7190e25da7cd2d9b
Binary files /dev/null and b/runs/fashion_trainer_20230918_161142/Training vs. Validation Loss_Training/events.out.tfevents.1695046303.msip-dell.ims.rwth-aachen.de.814940.13 differ
diff --git a/runs/fashion_trainer_20230918_161142/Training vs. Validation Loss_Validation/events.out.tfevents.1695046303.msip-dell.ims.rwth-aachen.de.814940.14 b/runs/fashion_trainer_20230918_161142/Training vs. Validation Loss_Validation/events.out.tfevents.1695046303.msip-dell.ims.rwth-aachen.de.814940.14
new file mode 100644
index 0000000000000000000000000000000000000000..dddf052afcc79e49641d55516dfa1a30de65182c
Binary files /dev/null and b/runs/fashion_trainer_20230918_161142/Training vs. Validation Loss_Validation/events.out.tfevents.1695046303.msip-dell.ims.rwth-aachen.de.814940.14 differ
diff --git a/runs/fashion_trainer_20230918_161142/events.out.tfevents.1695046302.msip-dell.ims.rwth-aachen.de.814940.12 b/runs/fashion_trainer_20230918_161142/events.out.tfevents.1695046302.msip-dell.ims.rwth-aachen.de.814940.12
new file mode 100644
index 0000000000000000000000000000000000000000..f8b6d802016a2228577fcadfff22f640f0c0c8c6
Binary files /dev/null and b/runs/fashion_trainer_20230918_161142/events.out.tfevents.1695046302.msip-dell.ims.rwth-aachen.de.814940.12 differ
diff --git a/runs/fashion_trainer_20230918_161146/Training vs. Validation Loss_Training/events.out.tfevents.1695046307.msip-dell.ims.rwth-aachen.de.814940.16 b/runs/fashion_trainer_20230918_161146/Training vs. Validation Loss_Training/events.out.tfevents.1695046307.msip-dell.ims.rwth-aachen.de.814940.16
new file mode 100644
index 0000000000000000000000000000000000000000..8ac2fa83bff5548ad210d6e36b3b8be64b10e9aa
Binary files /dev/null and b/runs/fashion_trainer_20230918_161146/Training vs. Validation Loss_Training/events.out.tfevents.1695046307.msip-dell.ims.rwth-aachen.de.814940.16 differ
diff --git a/runs/fashion_trainer_20230918_161146/Training vs. Validation Loss_Validation/events.out.tfevents.1695046307.msip-dell.ims.rwth-aachen.de.814940.17 b/runs/fashion_trainer_20230918_161146/Training vs. Validation Loss_Validation/events.out.tfevents.1695046307.msip-dell.ims.rwth-aachen.de.814940.17
new file mode 100644
index 0000000000000000000000000000000000000000..f8e7b74cea018f88468a6d9ca0926abca496dfd3
Binary files /dev/null and b/runs/fashion_trainer_20230918_161146/Training vs. Validation Loss_Validation/events.out.tfevents.1695046307.msip-dell.ims.rwth-aachen.de.814940.17 differ
diff --git a/runs/fashion_trainer_20230918_161146/events.out.tfevents.1695046306.msip-dell.ims.rwth-aachen.de.814940.15 b/runs/fashion_trainer_20230918_161146/events.out.tfevents.1695046306.msip-dell.ims.rwth-aachen.de.814940.15
new file mode 100644
index 0000000000000000000000000000000000000000..18605662592c8bec27e7b242baf2ba5b257d8a90
Binary files /dev/null and b/runs/fashion_trainer_20230918_161146/events.out.tfevents.1695046306.msip-dell.ims.rwth-aachen.de.814940.15 differ
diff --git a/runs/fashion_trainer_20230918_161150/Training vs. Validation Loss_Training/events.out.tfevents.1695046311.msip-dell.ims.rwth-aachen.de.814940.19 b/runs/fashion_trainer_20230918_161150/Training vs. Validation Loss_Training/events.out.tfevents.1695046311.msip-dell.ims.rwth-aachen.de.814940.19
new file mode 100644
index 0000000000000000000000000000000000000000..87fe67ea49e2b39cd3a5dbf7f37af9cd03ca12f3
Binary files /dev/null and b/runs/fashion_trainer_20230918_161150/Training vs. Validation Loss_Training/events.out.tfevents.1695046311.msip-dell.ims.rwth-aachen.de.814940.19 differ
diff --git a/runs/fashion_trainer_20230918_161150/Training vs. Validation Loss_Validation/events.out.tfevents.1695046311.msip-dell.ims.rwth-aachen.de.814940.20 b/runs/fashion_trainer_20230918_161150/Training vs. Validation Loss_Validation/events.out.tfevents.1695046311.msip-dell.ims.rwth-aachen.de.814940.20
new file mode 100644
index 0000000000000000000000000000000000000000..cf3c724b3a14a5656a719e251e5515f97eaaa6fe
Binary files /dev/null and b/runs/fashion_trainer_20230918_161150/Training vs. Validation Loss_Validation/events.out.tfevents.1695046311.msip-dell.ims.rwth-aachen.de.814940.20 differ
diff --git a/runs/fashion_trainer_20230918_161150/events.out.tfevents.1695046310.msip-dell.ims.rwth-aachen.de.814940.18 b/runs/fashion_trainer_20230918_161150/events.out.tfevents.1695046310.msip-dell.ims.rwth-aachen.de.814940.18
new file mode 100644
index 0000000000000000000000000000000000000000..0bdc454ed48737d621b0e90852192572f14a15ae
Binary files /dev/null and b/runs/fashion_trainer_20230918_161150/events.out.tfevents.1695046310.msip-dell.ims.rwth-aachen.de.814940.18 differ
diff --git a/runs/fashion_trainer_20230918_161154/Training vs. Validation Loss_Training/events.out.tfevents.1695046315.msip-dell.ims.rwth-aachen.de.814940.22 b/runs/fashion_trainer_20230918_161154/Training vs. Validation Loss_Training/events.out.tfevents.1695046315.msip-dell.ims.rwth-aachen.de.814940.22
new file mode 100644
index 0000000000000000000000000000000000000000..34b9ce65682714f65b10a66a0f95ab03bea6680b
Binary files /dev/null and b/runs/fashion_trainer_20230918_161154/Training vs. Validation Loss_Training/events.out.tfevents.1695046315.msip-dell.ims.rwth-aachen.de.814940.22 differ
diff --git a/runs/fashion_trainer_20230918_161154/Training vs. Validation Loss_Validation/events.out.tfevents.1695046315.msip-dell.ims.rwth-aachen.de.814940.23 b/runs/fashion_trainer_20230918_161154/Training vs. Validation Loss_Validation/events.out.tfevents.1695046315.msip-dell.ims.rwth-aachen.de.814940.23
new file mode 100644
index 0000000000000000000000000000000000000000..750f6541069ae6120b1c72b8caeec7d2464d4f56
Binary files /dev/null and b/runs/fashion_trainer_20230918_161154/Training vs. Validation Loss_Validation/events.out.tfevents.1695046315.msip-dell.ims.rwth-aachen.de.814940.23 differ
diff --git a/runs/fashion_trainer_20230918_161154/events.out.tfevents.1695046314.msip-dell.ims.rwth-aachen.de.814940.21 b/runs/fashion_trainer_20230918_161154/events.out.tfevents.1695046314.msip-dell.ims.rwth-aachen.de.814940.21
new file mode 100644
index 0000000000000000000000000000000000000000..a9a605d193482b4c386f9335cc5a79368f46ca8e
Binary files /dev/null and b/runs/fashion_trainer_20230918_161154/events.out.tfevents.1695046314.msip-dell.ims.rwth-aachen.de.814940.21 differ
diff --git a/runs/fashion_trainer_20230918_161308/Training vs. Validation Loss_Training/events.out.tfevents.1695046389.msip-dell.ims.rwth-aachen.de.815285.1 b/runs/fashion_trainer_20230918_161308/Training vs. Validation Loss_Training/events.out.tfevents.1695046389.msip-dell.ims.rwth-aachen.de.815285.1
new file mode 100644
index 0000000000000000000000000000000000000000..2cf53853109a7926ed6fd0291caecbb7c8c7dc97
Binary files /dev/null and b/runs/fashion_trainer_20230918_161308/Training vs. Validation Loss_Training/events.out.tfevents.1695046389.msip-dell.ims.rwth-aachen.de.815285.1 differ
diff --git a/runs/fashion_trainer_20230918_161308/Training vs. Validation Loss_Validation/events.out.tfevents.1695046389.msip-dell.ims.rwth-aachen.de.815285.2 b/runs/fashion_trainer_20230918_161308/Training vs. Validation Loss_Validation/events.out.tfevents.1695046389.msip-dell.ims.rwth-aachen.de.815285.2
new file mode 100644
index 0000000000000000000000000000000000000000..a8e66d5aa63933ae69f46e1ac9417a989bfc5396
Binary files /dev/null and b/runs/fashion_trainer_20230918_161308/Training vs. Validation Loss_Validation/events.out.tfevents.1695046389.msip-dell.ims.rwth-aachen.de.815285.2 differ
diff --git a/runs/fashion_trainer_20230918_161308/events.out.tfevents.1695046388.msip-dell.ims.rwth-aachen.de.815285.0 b/runs/fashion_trainer_20230918_161308/events.out.tfevents.1695046388.msip-dell.ims.rwth-aachen.de.815285.0
new file mode 100644
index 0000000000000000000000000000000000000000..e1a61f12a0be54152d7bb06e4edd94accc3211fe
Binary files /dev/null and b/runs/fashion_trainer_20230918_161308/events.out.tfevents.1695046388.msip-dell.ims.rwth-aachen.de.815285.0 differ
diff --git a/runs/fashion_trainer_20230918_161312/Training vs. Validation Loss_Training/events.out.tfevents.1695046393.msip-dell.ims.rwth-aachen.de.815285.4 b/runs/fashion_trainer_20230918_161312/Training vs. Validation Loss_Training/events.out.tfevents.1695046393.msip-dell.ims.rwth-aachen.de.815285.4
new file mode 100644
index 0000000000000000000000000000000000000000..bba2cc9ef98d3b8863038117e4727c04d5b9406a
Binary files /dev/null and b/runs/fashion_trainer_20230918_161312/Training vs. Validation Loss_Training/events.out.tfevents.1695046393.msip-dell.ims.rwth-aachen.de.815285.4 differ
diff --git a/runs/fashion_trainer_20230918_161312/Training vs. Validation Loss_Validation/events.out.tfevents.1695046393.msip-dell.ims.rwth-aachen.de.815285.5 b/runs/fashion_trainer_20230918_161312/Training vs. Validation Loss_Validation/events.out.tfevents.1695046393.msip-dell.ims.rwth-aachen.de.815285.5
new file mode 100644
index 0000000000000000000000000000000000000000..93b657ce2f4dcf36d6b6e4fcb9ec542fd6661198
Binary files /dev/null and b/runs/fashion_trainer_20230918_161312/Training vs. Validation Loss_Validation/events.out.tfevents.1695046393.msip-dell.ims.rwth-aachen.de.815285.5 differ
diff --git a/runs/fashion_trainer_20230918_161312/events.out.tfevents.1695046392.msip-dell.ims.rwth-aachen.de.815285.3 b/runs/fashion_trainer_20230918_161312/events.out.tfevents.1695046392.msip-dell.ims.rwth-aachen.de.815285.3
new file mode 100644
index 0000000000000000000000000000000000000000..10b7fc3ee6a1c7be8abe99ab2385522b8d8b8d7b
Binary files /dev/null and b/runs/fashion_trainer_20230918_161312/events.out.tfevents.1695046392.msip-dell.ims.rwth-aachen.de.815285.3 differ
diff --git a/runs/fashion_trainer_20230918_161316/Training vs. Validation Loss_Training/events.out.tfevents.1695046397.msip-dell.ims.rwth-aachen.de.815285.7 b/runs/fashion_trainer_20230918_161316/Training vs. Validation Loss_Training/events.out.tfevents.1695046397.msip-dell.ims.rwth-aachen.de.815285.7
new file mode 100644
index 0000000000000000000000000000000000000000..6fd4b927a3bc0f81881a4b6709e1921d7eccba9b
Binary files /dev/null and b/runs/fashion_trainer_20230918_161316/Training vs. Validation Loss_Training/events.out.tfevents.1695046397.msip-dell.ims.rwth-aachen.de.815285.7 differ
diff --git a/runs/fashion_trainer_20230918_161316/Training vs. Validation Loss_Validation/events.out.tfevents.1695046397.msip-dell.ims.rwth-aachen.de.815285.8 b/runs/fashion_trainer_20230918_161316/Training vs. Validation Loss_Validation/events.out.tfevents.1695046397.msip-dell.ims.rwth-aachen.de.815285.8
new file mode 100644
index 0000000000000000000000000000000000000000..f2ca8b82cc60245446af39aac7a002e9fc0afd14
Binary files /dev/null and b/runs/fashion_trainer_20230918_161316/Training vs. Validation Loss_Validation/events.out.tfevents.1695046397.msip-dell.ims.rwth-aachen.de.815285.8 differ
diff --git a/runs/fashion_trainer_20230918_161316/events.out.tfevents.1695046396.msip-dell.ims.rwth-aachen.de.815285.6 b/runs/fashion_trainer_20230918_161316/events.out.tfevents.1695046396.msip-dell.ims.rwth-aachen.de.815285.6
new file mode 100644
index 0000000000000000000000000000000000000000..083dbf17df3de5b6b8013b9506e7789a34400d58
Binary files /dev/null and b/runs/fashion_trainer_20230918_161316/events.out.tfevents.1695046396.msip-dell.ims.rwth-aachen.de.815285.6 differ
diff --git a/runs/fashion_trainer_20230918_161320/Training vs. Validation Loss_Training/events.out.tfevents.1695046401.msip-dell.ims.rwth-aachen.de.815285.10 b/runs/fashion_trainer_20230918_161320/Training vs. Validation Loss_Training/events.out.tfevents.1695046401.msip-dell.ims.rwth-aachen.de.815285.10
new file mode 100644
index 0000000000000000000000000000000000000000..dac25bd11463f45b105189102a75162b05269cf3
Binary files /dev/null and b/runs/fashion_trainer_20230918_161320/Training vs. Validation Loss_Training/events.out.tfevents.1695046401.msip-dell.ims.rwth-aachen.de.815285.10 differ
diff --git a/runs/fashion_trainer_20230918_161320/Training vs. Validation Loss_Validation/events.out.tfevents.1695046401.msip-dell.ims.rwth-aachen.de.815285.11 b/runs/fashion_trainer_20230918_161320/Training vs. Validation Loss_Validation/events.out.tfevents.1695046401.msip-dell.ims.rwth-aachen.de.815285.11
new file mode 100644
index 0000000000000000000000000000000000000000..de61d74ebb8781c14e886ca5851f7cf17e20410f
Binary files /dev/null and b/runs/fashion_trainer_20230918_161320/Training vs. Validation Loss_Validation/events.out.tfevents.1695046401.msip-dell.ims.rwth-aachen.de.815285.11 differ
diff --git a/runs/fashion_trainer_20230918_161320/events.out.tfevents.1695046400.msip-dell.ims.rwth-aachen.de.815285.9 b/runs/fashion_trainer_20230918_161320/events.out.tfevents.1695046400.msip-dell.ims.rwth-aachen.de.815285.9
new file mode 100644
index 0000000000000000000000000000000000000000..b64f6a08553c0a15f8427b70af8dcecb195eac40
Binary files /dev/null and b/runs/fashion_trainer_20230918_161320/events.out.tfevents.1695046400.msip-dell.ims.rwth-aachen.de.815285.9 differ
diff --git a/runs/fashion_trainer_20230918_161323/Training vs. Validation Loss_Training/events.out.tfevents.1695046405.msip-dell.ims.rwth-aachen.de.815285.13 b/runs/fashion_trainer_20230918_161323/Training vs. Validation Loss_Training/events.out.tfevents.1695046405.msip-dell.ims.rwth-aachen.de.815285.13
new file mode 100644
index 0000000000000000000000000000000000000000..056326c494e007c690246c02174b929762fe9781
Binary files /dev/null and b/runs/fashion_trainer_20230918_161323/Training vs. Validation Loss_Training/events.out.tfevents.1695046405.msip-dell.ims.rwth-aachen.de.815285.13 differ
diff --git a/runs/fashion_trainer_20230918_161323/Training vs. Validation Loss_Validation/events.out.tfevents.1695046405.msip-dell.ims.rwth-aachen.de.815285.14 b/runs/fashion_trainer_20230918_161323/Training vs. Validation Loss_Validation/events.out.tfevents.1695046405.msip-dell.ims.rwth-aachen.de.815285.14
new file mode 100644
index 0000000000000000000000000000000000000000..3c55a461ccbc4a52f481f71bb24db34ee2cd1528
Binary files /dev/null and b/runs/fashion_trainer_20230918_161323/Training vs. Validation Loss_Validation/events.out.tfevents.1695046405.msip-dell.ims.rwth-aachen.de.815285.14 differ
diff --git a/runs/fashion_trainer_20230918_161323/events.out.tfevents.1695046403.msip-dell.ims.rwth-aachen.de.815285.12 b/runs/fashion_trainer_20230918_161323/events.out.tfevents.1695046403.msip-dell.ims.rwth-aachen.de.815285.12
new file mode 100644
index 0000000000000000000000000000000000000000..91878f370008b9838211eca066765b2febc5ebaf
Binary files /dev/null and b/runs/fashion_trainer_20230918_161323/events.out.tfevents.1695046403.msip-dell.ims.rwth-aachen.de.815285.12 differ
diff --git a/runs/fashion_trainer_20230918_161327/Training vs. Validation Loss_Training/events.out.tfevents.1695046409.msip-dell.ims.rwth-aachen.de.815285.16 b/runs/fashion_trainer_20230918_161327/Training vs. Validation Loss_Training/events.out.tfevents.1695046409.msip-dell.ims.rwth-aachen.de.815285.16
new file mode 100644
index 0000000000000000000000000000000000000000..5e4d0bc3ab3fbbada177380187e480cba414c7dc
Binary files /dev/null and b/runs/fashion_trainer_20230918_161327/Training vs. Validation Loss_Training/events.out.tfevents.1695046409.msip-dell.ims.rwth-aachen.de.815285.16 differ
diff --git a/runs/fashion_trainer_20230918_161327/Training vs. Validation Loss_Validation/events.out.tfevents.1695046409.msip-dell.ims.rwth-aachen.de.815285.17 b/runs/fashion_trainer_20230918_161327/Training vs. Validation Loss_Validation/events.out.tfevents.1695046409.msip-dell.ims.rwth-aachen.de.815285.17
new file mode 100644
index 0000000000000000000000000000000000000000..9f3721039744a96e55adb02170800f12676aded5
Binary files /dev/null and b/runs/fashion_trainer_20230918_161327/Training vs. Validation Loss_Validation/events.out.tfevents.1695046409.msip-dell.ims.rwth-aachen.de.815285.17 differ
diff --git a/runs/fashion_trainer_20230918_161327/events.out.tfevents.1695046407.msip-dell.ims.rwth-aachen.de.815285.15 b/runs/fashion_trainer_20230918_161327/events.out.tfevents.1695046407.msip-dell.ims.rwth-aachen.de.815285.15
new file mode 100644
index 0000000000000000000000000000000000000000..d08e941185f7ed0773318afdfc210bccb00a9bec
Binary files /dev/null and b/runs/fashion_trainer_20230918_161327/events.out.tfevents.1695046407.msip-dell.ims.rwth-aachen.de.815285.15 differ
diff --git a/runs/fashion_trainer_20230918_161332/Training vs. Validation Loss_Training/events.out.tfevents.1695046413.msip-dell.ims.rwth-aachen.de.815285.19 b/runs/fashion_trainer_20230918_161332/Training vs. Validation Loss_Training/events.out.tfevents.1695046413.msip-dell.ims.rwth-aachen.de.815285.19
new file mode 100644
index 0000000000000000000000000000000000000000..211dd268002aa32918674ff49788adacbcec74e7
Binary files /dev/null and b/runs/fashion_trainer_20230918_161332/Training vs. Validation Loss_Training/events.out.tfevents.1695046413.msip-dell.ims.rwth-aachen.de.815285.19 differ
diff --git a/runs/fashion_trainer_20230918_161332/Training vs. Validation Loss_Validation/events.out.tfevents.1695046413.msip-dell.ims.rwth-aachen.de.815285.20 b/runs/fashion_trainer_20230918_161332/Training vs. Validation Loss_Validation/events.out.tfevents.1695046413.msip-dell.ims.rwth-aachen.de.815285.20
new file mode 100644
index 0000000000000000000000000000000000000000..a107295069df1d3de1d626da6f46ac0b40b4e464
Binary files /dev/null and b/runs/fashion_trainer_20230918_161332/Training vs. Validation Loss_Validation/events.out.tfevents.1695046413.msip-dell.ims.rwth-aachen.de.815285.20 differ
diff --git a/runs/fashion_trainer_20230918_161332/events.out.tfevents.1695046412.msip-dell.ims.rwth-aachen.de.815285.18 b/runs/fashion_trainer_20230918_161332/events.out.tfevents.1695046412.msip-dell.ims.rwth-aachen.de.815285.18
new file mode 100644
index 0000000000000000000000000000000000000000..34adcf2a868efc64218e8d6a44f776afa3f24870
Binary files /dev/null and b/runs/fashion_trainer_20230918_161332/events.out.tfevents.1695046412.msip-dell.ims.rwth-aachen.de.815285.18 differ
diff --git a/runs/fashion_trainer_20230918_161336/Training vs. Validation Loss_Training/events.out.tfevents.1695046417.msip-dell.ims.rwth-aachen.de.815285.22 b/runs/fashion_trainer_20230918_161336/Training vs. Validation Loss_Training/events.out.tfevents.1695046417.msip-dell.ims.rwth-aachen.de.815285.22
new file mode 100644
index 0000000000000000000000000000000000000000..86edf3ac1f86c9baa4e719b59cffb4e1aae92437
Binary files /dev/null and b/runs/fashion_trainer_20230918_161336/Training vs. Validation Loss_Training/events.out.tfevents.1695046417.msip-dell.ims.rwth-aachen.de.815285.22 differ
diff --git a/runs/fashion_trainer_20230918_161336/Training vs. Validation Loss_Validation/events.out.tfevents.1695046417.msip-dell.ims.rwth-aachen.de.815285.23 b/runs/fashion_trainer_20230918_161336/Training vs. Validation Loss_Validation/events.out.tfevents.1695046417.msip-dell.ims.rwth-aachen.de.815285.23
new file mode 100644
index 0000000000000000000000000000000000000000..6ac60591d639b25254c8200f34aaaf954784f6ba
Binary files /dev/null and b/runs/fashion_trainer_20230918_161336/Training vs. Validation Loss_Validation/events.out.tfevents.1695046417.msip-dell.ims.rwth-aachen.de.815285.23 differ
diff --git a/runs/fashion_trainer_20230918_161336/events.out.tfevents.1695046416.msip-dell.ims.rwth-aachen.de.815285.21 b/runs/fashion_trainer_20230918_161336/events.out.tfevents.1695046416.msip-dell.ims.rwth-aachen.de.815285.21
new file mode 100644
index 0000000000000000000000000000000000000000..a819c1b55bf2ea0eb60cc5603fef1da480a0eaa2
Binary files /dev/null and b/runs/fashion_trainer_20230918_161336/events.out.tfevents.1695046416.msip-dell.ims.rwth-aachen.de.815285.21 differ
diff --git a/runs/fashion_trainer_20230918_161638/Training vs. Validation Loss_Training/events.out.tfevents.1695046599.msip-dell.ims.rwth-aachen.de.816512.1 b/runs/fashion_trainer_20230918_161638/Training vs. Validation Loss_Training/events.out.tfevents.1695046599.msip-dell.ims.rwth-aachen.de.816512.1
new file mode 100644
index 0000000000000000000000000000000000000000..f08c565b6a64caee9a8bb906d45aa40efa6dfa66
Binary files /dev/null and b/runs/fashion_trainer_20230918_161638/Training vs. Validation Loss_Training/events.out.tfevents.1695046599.msip-dell.ims.rwth-aachen.de.816512.1 differ
diff --git a/runs/fashion_trainer_20230918_161638/Training vs. Validation Loss_Validation/events.out.tfevents.1695046599.msip-dell.ims.rwth-aachen.de.816512.2 b/runs/fashion_trainer_20230918_161638/Training vs. Validation Loss_Validation/events.out.tfevents.1695046599.msip-dell.ims.rwth-aachen.de.816512.2
new file mode 100644
index 0000000000000000000000000000000000000000..d4286f5c675d6b70678d953436bfe720cebd60a9
Binary files /dev/null and b/runs/fashion_trainer_20230918_161638/Training vs. Validation Loss_Validation/events.out.tfevents.1695046599.msip-dell.ims.rwth-aachen.de.816512.2 differ
diff --git a/runs/fashion_trainer_20230918_161638/events.out.tfevents.1695046598.msip-dell.ims.rwth-aachen.de.816512.0 b/runs/fashion_trainer_20230918_161638/events.out.tfevents.1695046598.msip-dell.ims.rwth-aachen.de.816512.0
new file mode 100644
index 0000000000000000000000000000000000000000..1134606b1ef6c356f63681ce44d9d68249f94c9e
Binary files /dev/null and b/runs/fashion_trainer_20230918_161638/events.out.tfevents.1695046598.msip-dell.ims.rwth-aachen.de.816512.0 differ
diff --git a/runs/fashion_trainer_20230918_161642/Training vs. Validation Loss_Training/events.out.tfevents.1695046603.msip-dell.ims.rwth-aachen.de.816512.4 b/runs/fashion_trainer_20230918_161642/Training vs. Validation Loss_Training/events.out.tfevents.1695046603.msip-dell.ims.rwth-aachen.de.816512.4
new file mode 100644
index 0000000000000000000000000000000000000000..ec2cc11c1e244451f7aefd4b4a4b2ee54e34a044
Binary files /dev/null and b/runs/fashion_trainer_20230918_161642/Training vs. Validation Loss_Training/events.out.tfevents.1695046603.msip-dell.ims.rwth-aachen.de.816512.4 differ
diff --git a/runs/fashion_trainer_20230918_161642/Training vs. Validation Loss_Validation/events.out.tfevents.1695046603.msip-dell.ims.rwth-aachen.de.816512.5 b/runs/fashion_trainer_20230918_161642/Training vs. Validation Loss_Validation/events.out.tfevents.1695046603.msip-dell.ims.rwth-aachen.de.816512.5
new file mode 100644
index 0000000000000000000000000000000000000000..48f8b5ec9be3ba29f37d69f42b883437d66ab335
Binary files /dev/null and b/runs/fashion_trainer_20230918_161642/Training vs. Validation Loss_Validation/events.out.tfevents.1695046603.msip-dell.ims.rwth-aachen.de.816512.5 differ
diff --git a/runs/fashion_trainer_20230918_161642/events.out.tfevents.1695046602.msip-dell.ims.rwth-aachen.de.816512.3 b/runs/fashion_trainer_20230918_161642/events.out.tfevents.1695046602.msip-dell.ims.rwth-aachen.de.816512.3
new file mode 100644
index 0000000000000000000000000000000000000000..e72ec0ad3d1fa65ea947a41321a585d6b6ce6651
Binary files /dev/null and b/runs/fashion_trainer_20230918_161642/events.out.tfevents.1695046602.msip-dell.ims.rwth-aachen.de.816512.3 differ
diff --git a/runs/fashion_trainer_20230918_161646/Training vs. Validation Loss_Training/events.out.tfevents.1695046607.msip-dell.ims.rwth-aachen.de.816512.7 b/runs/fashion_trainer_20230918_161646/Training vs. Validation Loss_Training/events.out.tfevents.1695046607.msip-dell.ims.rwth-aachen.de.816512.7
new file mode 100644
index 0000000000000000000000000000000000000000..8613b52b87ac879208cf7a49e2388f8a98e7a32f
Binary files /dev/null and b/runs/fashion_trainer_20230918_161646/Training vs. Validation Loss_Training/events.out.tfevents.1695046607.msip-dell.ims.rwth-aachen.de.816512.7 differ
diff --git a/runs/fashion_trainer_20230918_161646/Training vs. Validation Loss_Validation/events.out.tfevents.1695046607.msip-dell.ims.rwth-aachen.de.816512.8 b/runs/fashion_trainer_20230918_161646/Training vs. Validation Loss_Validation/events.out.tfevents.1695046607.msip-dell.ims.rwth-aachen.de.816512.8
new file mode 100644
index 0000000000000000000000000000000000000000..148974c6bfc4978bea7753af4543d93750119c00
Binary files /dev/null and b/runs/fashion_trainer_20230918_161646/Training vs. Validation Loss_Validation/events.out.tfevents.1695046607.msip-dell.ims.rwth-aachen.de.816512.8 differ
diff --git a/runs/fashion_trainer_20230918_161646/events.out.tfevents.1695046606.msip-dell.ims.rwth-aachen.de.816512.6 b/runs/fashion_trainer_20230918_161646/events.out.tfevents.1695046606.msip-dell.ims.rwth-aachen.de.816512.6
new file mode 100644
index 0000000000000000000000000000000000000000..ef8cb9c7113a0fd664e7355b1d9bea7144b82005
Binary files /dev/null and b/runs/fashion_trainer_20230918_161646/events.out.tfevents.1695046606.msip-dell.ims.rwth-aachen.de.816512.6 differ
diff --git a/runs/fashion_trainer_20230918_161650/Training vs. Validation Loss_Training/events.out.tfevents.1695046611.msip-dell.ims.rwth-aachen.de.816512.10 b/runs/fashion_trainer_20230918_161650/Training vs. Validation Loss_Training/events.out.tfevents.1695046611.msip-dell.ims.rwth-aachen.de.816512.10
new file mode 100644
index 0000000000000000000000000000000000000000..055fa64ced87c673254e659f218e7e14ff21b746
Binary files /dev/null and b/runs/fashion_trainer_20230918_161650/Training vs. Validation Loss_Training/events.out.tfevents.1695046611.msip-dell.ims.rwth-aachen.de.816512.10 differ
diff --git a/runs/fashion_trainer_20230918_161650/Training vs. Validation Loss_Validation/events.out.tfevents.1695046611.msip-dell.ims.rwth-aachen.de.816512.11 b/runs/fashion_trainer_20230918_161650/Training vs. Validation Loss_Validation/events.out.tfevents.1695046611.msip-dell.ims.rwth-aachen.de.816512.11
new file mode 100644
index 0000000000000000000000000000000000000000..ff3fb2c22568965d78dc942053fd2a3d15143925
Binary files /dev/null and b/runs/fashion_trainer_20230918_161650/Training vs. Validation Loss_Validation/events.out.tfevents.1695046611.msip-dell.ims.rwth-aachen.de.816512.11 differ
diff --git a/runs/fashion_trainer_20230918_161650/events.out.tfevents.1695046610.msip-dell.ims.rwth-aachen.de.816512.9 b/runs/fashion_trainer_20230918_161650/events.out.tfevents.1695046610.msip-dell.ims.rwth-aachen.de.816512.9
new file mode 100644
index 0000000000000000000000000000000000000000..ff7306cb5824875581116d1032a402f3585e12ca
Binary files /dev/null and b/runs/fashion_trainer_20230918_161650/events.out.tfevents.1695046610.msip-dell.ims.rwth-aachen.de.816512.9 differ
diff --git a/runs/fashion_trainer_20230918_161654/Training vs. Validation Loss_Training/events.out.tfevents.1695046615.msip-dell.ims.rwth-aachen.de.816512.13 b/runs/fashion_trainer_20230918_161654/Training vs. Validation Loss_Training/events.out.tfevents.1695046615.msip-dell.ims.rwth-aachen.de.816512.13
new file mode 100644
index 0000000000000000000000000000000000000000..13bebafaa538ca2fb8b1591bebe325444c901842
Binary files /dev/null and b/runs/fashion_trainer_20230918_161654/Training vs. Validation Loss_Training/events.out.tfevents.1695046615.msip-dell.ims.rwth-aachen.de.816512.13 differ
diff --git a/runs/fashion_trainer_20230918_161654/Training vs. Validation Loss_Validation/events.out.tfevents.1695046615.msip-dell.ims.rwth-aachen.de.816512.14 b/runs/fashion_trainer_20230918_161654/Training vs. Validation Loss_Validation/events.out.tfevents.1695046615.msip-dell.ims.rwth-aachen.de.816512.14
new file mode 100644
index 0000000000000000000000000000000000000000..5a6e9bf441632751170937ae0457412f6211cc27
Binary files /dev/null and b/runs/fashion_trainer_20230918_161654/Training vs. Validation Loss_Validation/events.out.tfevents.1695046615.msip-dell.ims.rwth-aachen.de.816512.14 differ
diff --git a/runs/fashion_trainer_20230918_161654/events.out.tfevents.1695046614.msip-dell.ims.rwth-aachen.de.816512.12 b/runs/fashion_trainer_20230918_161654/events.out.tfevents.1695046614.msip-dell.ims.rwth-aachen.de.816512.12
new file mode 100644
index 0000000000000000000000000000000000000000..078970b776150abf4868601ad7d0eba324d69398
Binary files /dev/null and b/runs/fashion_trainer_20230918_161654/events.out.tfevents.1695046614.msip-dell.ims.rwth-aachen.de.816512.12 differ
diff --git a/runs/fashion_trainer_20230918_161658/Training vs. Validation Loss_Training/events.out.tfevents.1695046619.msip-dell.ims.rwth-aachen.de.816512.16 b/runs/fashion_trainer_20230918_161658/Training vs. Validation Loss_Training/events.out.tfevents.1695046619.msip-dell.ims.rwth-aachen.de.816512.16
new file mode 100644
index 0000000000000000000000000000000000000000..23e242bdd9d9173c70c05488835568d9fcca4acd
Binary files /dev/null and b/runs/fashion_trainer_20230918_161658/Training vs. Validation Loss_Training/events.out.tfevents.1695046619.msip-dell.ims.rwth-aachen.de.816512.16 differ
diff --git a/runs/fashion_trainer_20230918_161658/Training vs. Validation Loss_Validation/events.out.tfevents.1695046619.msip-dell.ims.rwth-aachen.de.816512.17 b/runs/fashion_trainer_20230918_161658/Training vs. Validation Loss_Validation/events.out.tfevents.1695046619.msip-dell.ims.rwth-aachen.de.816512.17
new file mode 100644
index 0000000000000000000000000000000000000000..8753a7c5d69b9b1e7c4a9110321395362eb057e5
Binary files /dev/null and b/runs/fashion_trainer_20230918_161658/Training vs. Validation Loss_Validation/events.out.tfevents.1695046619.msip-dell.ims.rwth-aachen.de.816512.17 differ
diff --git a/runs/fashion_trainer_20230918_161658/events.out.tfevents.1695046618.msip-dell.ims.rwth-aachen.de.816512.15 b/runs/fashion_trainer_20230918_161658/events.out.tfevents.1695046618.msip-dell.ims.rwth-aachen.de.816512.15
new file mode 100644
index 0000000000000000000000000000000000000000..e7ea2a008fd9c96c214f6a076d42ec7b9b3b69e9
Binary files /dev/null and b/runs/fashion_trainer_20230918_161658/events.out.tfevents.1695046618.msip-dell.ims.rwth-aachen.de.816512.15 differ
diff --git a/runs/fashion_trainer_20230918_161702/Training vs. Validation Loss_Training/events.out.tfevents.1695046623.msip-dell.ims.rwth-aachen.de.816512.19 b/runs/fashion_trainer_20230918_161702/Training vs. Validation Loss_Training/events.out.tfevents.1695046623.msip-dell.ims.rwth-aachen.de.816512.19
new file mode 100644
index 0000000000000000000000000000000000000000..684fdf24a853b42402cce220d9dc690f43eeb524
Binary files /dev/null and b/runs/fashion_trainer_20230918_161702/Training vs. Validation Loss_Training/events.out.tfevents.1695046623.msip-dell.ims.rwth-aachen.de.816512.19 differ
diff --git a/runs/fashion_trainer_20230918_161702/Training vs. Validation Loss_Validation/events.out.tfevents.1695046623.msip-dell.ims.rwth-aachen.de.816512.20 b/runs/fashion_trainer_20230918_161702/Training vs. Validation Loss_Validation/events.out.tfevents.1695046623.msip-dell.ims.rwth-aachen.de.816512.20
new file mode 100644
index 0000000000000000000000000000000000000000..0ec460c8413e95a0b1b227e6adbba9d9dd0c4853
Binary files /dev/null and b/runs/fashion_trainer_20230918_161702/Training vs. Validation Loss_Validation/events.out.tfevents.1695046623.msip-dell.ims.rwth-aachen.de.816512.20 differ
diff --git a/runs/fashion_trainer_20230918_161702/events.out.tfevents.1695046622.msip-dell.ims.rwth-aachen.de.816512.18 b/runs/fashion_trainer_20230918_161702/events.out.tfevents.1695046622.msip-dell.ims.rwth-aachen.de.816512.18
new file mode 100644
index 0000000000000000000000000000000000000000..0579c017ba8ca1f1f6a5e0ac6f4df8ca16c2323d
Binary files /dev/null and b/runs/fashion_trainer_20230918_161702/events.out.tfevents.1695046622.msip-dell.ims.rwth-aachen.de.816512.18 differ
diff --git a/runs/fashion_trainer_20230918_161706/Training vs. Validation Loss_Training/events.out.tfevents.1695046627.msip-dell.ims.rwth-aachen.de.816512.22 b/runs/fashion_trainer_20230918_161706/Training vs. Validation Loss_Training/events.out.tfevents.1695046627.msip-dell.ims.rwth-aachen.de.816512.22
new file mode 100644
index 0000000000000000000000000000000000000000..138a21191a3ef744c00b6e07879594abedaab215
Binary files /dev/null and b/runs/fashion_trainer_20230918_161706/Training vs. Validation Loss_Training/events.out.tfevents.1695046627.msip-dell.ims.rwth-aachen.de.816512.22 differ
diff --git a/runs/fashion_trainer_20230918_161706/Training vs. Validation Loss_Validation/events.out.tfevents.1695046627.msip-dell.ims.rwth-aachen.de.816512.23 b/runs/fashion_trainer_20230918_161706/Training vs. Validation Loss_Validation/events.out.tfevents.1695046627.msip-dell.ims.rwth-aachen.de.816512.23
new file mode 100644
index 0000000000000000000000000000000000000000..700d30caccb93e605062ad8877bdac20f41e45e1
Binary files /dev/null and b/runs/fashion_trainer_20230918_161706/Training vs. Validation Loss_Validation/events.out.tfevents.1695046627.msip-dell.ims.rwth-aachen.de.816512.23 differ
diff --git a/runs/fashion_trainer_20230918_161706/events.out.tfevents.1695046626.msip-dell.ims.rwth-aachen.de.816512.21 b/runs/fashion_trainer_20230918_161706/events.out.tfevents.1695046626.msip-dell.ims.rwth-aachen.de.816512.21
new file mode 100644
index 0000000000000000000000000000000000000000..55c8b2316f52e5194b890e2d097b6b776235361c
Binary files /dev/null and b/runs/fashion_trainer_20230918_161706/events.out.tfevents.1695046626.msip-dell.ims.rwth-aachen.de.816512.21 differ
diff --git a/runs/fashion_trainer_20230918_161730/Training vs. Validation Loss_Training/events.out.tfevents.1695046651.msip-dell.ims.rwth-aachen.de.816765.1 b/runs/fashion_trainer_20230918_161730/Training vs. Validation Loss_Training/events.out.tfevents.1695046651.msip-dell.ims.rwth-aachen.de.816765.1
new file mode 100644
index 0000000000000000000000000000000000000000..99f765f40e6d9eeb5c88c02c0073b04f34b1a0b2
Binary files /dev/null and b/runs/fashion_trainer_20230918_161730/Training vs. Validation Loss_Training/events.out.tfevents.1695046651.msip-dell.ims.rwth-aachen.de.816765.1 differ
diff --git a/runs/fashion_trainer_20230918_161730/Training vs. Validation Loss_Validation/events.out.tfevents.1695046651.msip-dell.ims.rwth-aachen.de.816765.2 b/runs/fashion_trainer_20230918_161730/Training vs. Validation Loss_Validation/events.out.tfevents.1695046651.msip-dell.ims.rwth-aachen.de.816765.2
new file mode 100644
index 0000000000000000000000000000000000000000..77db57a59d4611fd1f383c25ad847c968280685a
Binary files /dev/null and b/runs/fashion_trainer_20230918_161730/Training vs. Validation Loss_Validation/events.out.tfevents.1695046651.msip-dell.ims.rwth-aachen.de.816765.2 differ
diff --git a/runs/fashion_trainer_20230918_161730/events.out.tfevents.1695046650.msip-dell.ims.rwth-aachen.de.816765.0 b/runs/fashion_trainer_20230918_161730/events.out.tfevents.1695046650.msip-dell.ims.rwth-aachen.de.816765.0
new file mode 100644
index 0000000000000000000000000000000000000000..7e5022186d4bd28a12f4403b63fc271e424c22aa
Binary files /dev/null and b/runs/fashion_trainer_20230918_161730/events.out.tfevents.1695046650.msip-dell.ims.rwth-aachen.de.816765.0 differ
diff --git a/runs/fashion_trainer_20230918_161734/Training vs. Validation Loss_Training/events.out.tfevents.1695046654.msip-dell.ims.rwth-aachen.de.816765.4 b/runs/fashion_trainer_20230918_161734/Training vs. Validation Loss_Training/events.out.tfevents.1695046654.msip-dell.ims.rwth-aachen.de.816765.4
new file mode 100644
index 0000000000000000000000000000000000000000..6bf020b8ca5d8296c59fe2b5e20aee76b28bbfc1
Binary files /dev/null and b/runs/fashion_trainer_20230918_161734/Training vs. Validation Loss_Training/events.out.tfevents.1695046654.msip-dell.ims.rwth-aachen.de.816765.4 differ
diff --git a/runs/fashion_trainer_20230918_161734/Training vs. Validation Loss_Validation/events.out.tfevents.1695046654.msip-dell.ims.rwth-aachen.de.816765.5 b/runs/fashion_trainer_20230918_161734/Training vs. Validation Loss_Validation/events.out.tfevents.1695046654.msip-dell.ims.rwth-aachen.de.816765.5
new file mode 100644
index 0000000000000000000000000000000000000000..77e8b0f6b0598b6a778bbaf4bc6e17d79b577496
Binary files /dev/null and b/runs/fashion_trainer_20230918_161734/Training vs. Validation Loss_Validation/events.out.tfevents.1695046654.msip-dell.ims.rwth-aachen.de.816765.5 differ
diff --git a/runs/fashion_trainer_20230918_161734/events.out.tfevents.1695046654.msip-dell.ims.rwth-aachen.de.816765.3 b/runs/fashion_trainer_20230918_161734/events.out.tfevents.1695046654.msip-dell.ims.rwth-aachen.de.816765.3
new file mode 100644
index 0000000000000000000000000000000000000000..1e00e95e1d3f512b035624ce65142f81a2e84a92
Binary files /dev/null and b/runs/fashion_trainer_20230918_161734/events.out.tfevents.1695046654.msip-dell.ims.rwth-aachen.de.816765.3 differ
diff --git a/runs/fashion_trainer_20230918_161736/Training vs. Validation Loss_Training/events.out.tfevents.1695046657.msip-dell.ims.rwth-aachen.de.816765.7 b/runs/fashion_trainer_20230918_161736/Training vs. Validation Loss_Training/events.out.tfevents.1695046657.msip-dell.ims.rwth-aachen.de.816765.7
new file mode 100644
index 0000000000000000000000000000000000000000..3d5e031ae0c120c8dc5809c2663e31d27f12d028
Binary files /dev/null and b/runs/fashion_trainer_20230918_161736/Training vs. Validation Loss_Training/events.out.tfevents.1695046657.msip-dell.ims.rwth-aachen.de.816765.7 differ
diff --git a/runs/fashion_trainer_20230918_161736/Training vs. Validation Loss_Validation/events.out.tfevents.1695046657.msip-dell.ims.rwth-aachen.de.816765.8 b/runs/fashion_trainer_20230918_161736/Training vs. Validation Loss_Validation/events.out.tfevents.1695046657.msip-dell.ims.rwth-aachen.de.816765.8
new file mode 100644
index 0000000000000000000000000000000000000000..671cbeee8abdd238c74fb771ca87ea6425315676
Binary files /dev/null and b/runs/fashion_trainer_20230918_161736/Training vs. Validation Loss_Validation/events.out.tfevents.1695046657.msip-dell.ims.rwth-aachen.de.816765.8 differ
diff --git a/runs/fashion_trainer_20230918_161736/events.out.tfevents.1695046656.msip-dell.ims.rwth-aachen.de.816765.6 b/runs/fashion_trainer_20230918_161736/events.out.tfevents.1695046656.msip-dell.ims.rwth-aachen.de.816765.6
new file mode 100644
index 0000000000000000000000000000000000000000..423eed1ccbda7af67d8e556d19c795511b548cc1
Binary files /dev/null and b/runs/fashion_trainer_20230918_161736/events.out.tfevents.1695046656.msip-dell.ims.rwth-aachen.de.816765.6 differ
diff --git a/runs/fashion_trainer_20230918_161739/Training vs. Validation Loss_Training/events.out.tfevents.1695046661.msip-dell.ims.rwth-aachen.de.816765.10 b/runs/fashion_trainer_20230918_161739/Training vs. Validation Loss_Training/events.out.tfevents.1695046661.msip-dell.ims.rwth-aachen.de.816765.10
new file mode 100644
index 0000000000000000000000000000000000000000..6d3b81dd9dca12359b970258d39dc4aa0f07a4fe
Binary files /dev/null and b/runs/fashion_trainer_20230918_161739/Training vs. Validation Loss_Training/events.out.tfevents.1695046661.msip-dell.ims.rwth-aachen.de.816765.10 differ
diff --git a/runs/fashion_trainer_20230918_161739/Training vs. Validation Loss_Validation/events.out.tfevents.1695046661.msip-dell.ims.rwth-aachen.de.816765.11 b/runs/fashion_trainer_20230918_161739/Training vs. Validation Loss_Validation/events.out.tfevents.1695046661.msip-dell.ims.rwth-aachen.de.816765.11
new file mode 100644
index 0000000000000000000000000000000000000000..f730adfd9553c5940c8c7f2fcc83464e4deecf85
Binary files /dev/null and b/runs/fashion_trainer_20230918_161739/Training vs. Validation Loss_Validation/events.out.tfevents.1695046661.msip-dell.ims.rwth-aachen.de.816765.11 differ
diff --git a/runs/fashion_trainer_20230918_161739/events.out.tfevents.1695046659.msip-dell.ims.rwth-aachen.de.816765.9 b/runs/fashion_trainer_20230918_161739/events.out.tfevents.1695046659.msip-dell.ims.rwth-aachen.de.816765.9
new file mode 100644
index 0000000000000000000000000000000000000000..35f64c6b3f6b906c8b258504060ab3e363a3554c
Binary files /dev/null and b/runs/fashion_trainer_20230918_161739/events.out.tfevents.1695046659.msip-dell.ims.rwth-aachen.de.816765.9 differ
diff --git a/runs/fashion_trainer_20230918_161743/Training vs. Validation Loss_Training/events.out.tfevents.1695046664.msip-dell.ims.rwth-aachen.de.816765.13 b/runs/fashion_trainer_20230918_161743/Training vs. Validation Loss_Training/events.out.tfevents.1695046664.msip-dell.ims.rwth-aachen.de.816765.13
new file mode 100644
index 0000000000000000000000000000000000000000..fbd04c37df21f2cdf930dfc58af3a851e417cfee
Binary files /dev/null and b/runs/fashion_trainer_20230918_161743/Training vs. Validation Loss_Training/events.out.tfevents.1695046664.msip-dell.ims.rwth-aachen.de.816765.13 differ
diff --git a/runs/fashion_trainer_20230918_161743/Training vs. Validation Loss_Validation/events.out.tfevents.1695046664.msip-dell.ims.rwth-aachen.de.816765.14 b/runs/fashion_trainer_20230918_161743/Training vs. Validation Loss_Validation/events.out.tfevents.1695046664.msip-dell.ims.rwth-aachen.de.816765.14
new file mode 100644
index 0000000000000000000000000000000000000000..b4ab1c8fe7ab1706afb3ba3a7db7fd9954f75397
Binary files /dev/null and b/runs/fashion_trainer_20230918_161743/Training vs. Validation Loss_Validation/events.out.tfevents.1695046664.msip-dell.ims.rwth-aachen.de.816765.14 differ
diff --git a/runs/fashion_trainer_20230918_161743/events.out.tfevents.1695046663.msip-dell.ims.rwth-aachen.de.816765.12 b/runs/fashion_trainer_20230918_161743/events.out.tfevents.1695046663.msip-dell.ims.rwth-aachen.de.816765.12
new file mode 100644
index 0000000000000000000000000000000000000000..5478cc8fa1c7b6822c47ca3b8179f9e135e749ce
Binary files /dev/null and b/runs/fashion_trainer_20230918_161743/events.out.tfevents.1695046663.msip-dell.ims.rwth-aachen.de.816765.12 differ
diff --git a/runs/fashion_trainer_20230918_161747/Training vs. Validation Loss_Training/events.out.tfevents.1695046668.msip-dell.ims.rwth-aachen.de.816765.16 b/runs/fashion_trainer_20230918_161747/Training vs. Validation Loss_Training/events.out.tfevents.1695046668.msip-dell.ims.rwth-aachen.de.816765.16
new file mode 100644
index 0000000000000000000000000000000000000000..afb7cbfcd2101f746627e6ace4dd2f7756e485aa
Binary files /dev/null and b/runs/fashion_trainer_20230918_161747/Training vs. Validation Loss_Training/events.out.tfevents.1695046668.msip-dell.ims.rwth-aachen.de.816765.16 differ
diff --git a/runs/fashion_trainer_20230918_161747/Training vs. Validation Loss_Validation/events.out.tfevents.1695046668.msip-dell.ims.rwth-aachen.de.816765.17 b/runs/fashion_trainer_20230918_161747/Training vs. Validation Loss_Validation/events.out.tfevents.1695046668.msip-dell.ims.rwth-aachen.de.816765.17
new file mode 100644
index 0000000000000000000000000000000000000000..c36730e33b574c3dfd43b492deb221fcf86d40e7
Binary files /dev/null and b/runs/fashion_trainer_20230918_161747/Training vs. Validation Loss_Validation/events.out.tfevents.1695046668.msip-dell.ims.rwth-aachen.de.816765.17 differ
diff --git a/runs/fashion_trainer_20230918_161747/events.out.tfevents.1695046667.msip-dell.ims.rwth-aachen.de.816765.15 b/runs/fashion_trainer_20230918_161747/events.out.tfevents.1695046667.msip-dell.ims.rwth-aachen.de.816765.15
new file mode 100644
index 0000000000000000000000000000000000000000..808f74733508fec717bacba8008a00169cd5b9b9
Binary files /dev/null and b/runs/fashion_trainer_20230918_161747/events.out.tfevents.1695046667.msip-dell.ims.rwth-aachen.de.816765.15 differ
diff --git a/runs/fashion_trainer_20230918_161820/Training vs. Validation Loss_Training/events.out.tfevents.1695046700.msip-dell.ims.rwth-aachen.de.817116.1 b/runs/fashion_trainer_20230918_161820/Training vs. Validation Loss_Training/events.out.tfevents.1695046700.msip-dell.ims.rwth-aachen.de.817116.1
new file mode 100644
index 0000000000000000000000000000000000000000..e9b03d1f21f08c00d5b9ce62c481730321c9cc7f
Binary files /dev/null and b/runs/fashion_trainer_20230918_161820/Training vs. Validation Loss_Training/events.out.tfevents.1695046700.msip-dell.ims.rwth-aachen.de.817116.1 differ
diff --git a/runs/fashion_trainer_20230918_161820/Training vs. Validation Loss_Validation/events.out.tfevents.1695046700.msip-dell.ims.rwth-aachen.de.817116.2 b/runs/fashion_trainer_20230918_161820/Training vs. Validation Loss_Validation/events.out.tfevents.1695046700.msip-dell.ims.rwth-aachen.de.817116.2
new file mode 100644
index 0000000000000000000000000000000000000000..e747feea68a8e0cd9b3a50e7b26896715403c1dd
Binary files /dev/null and b/runs/fashion_trainer_20230918_161820/Training vs. Validation Loss_Validation/events.out.tfevents.1695046700.msip-dell.ims.rwth-aachen.de.817116.2 differ
diff --git a/runs/fashion_trainer_20230918_161820/events.out.tfevents.1695046700.msip-dell.ims.rwth-aachen.de.817116.0 b/runs/fashion_trainer_20230918_161820/events.out.tfevents.1695046700.msip-dell.ims.rwth-aachen.de.817116.0
new file mode 100644
index 0000000000000000000000000000000000000000..21e09600c03fb3632c214f5b9b0e89abd485b983
Binary files /dev/null and b/runs/fashion_trainer_20230918_161820/events.out.tfevents.1695046700.msip-dell.ims.rwth-aachen.de.817116.0 differ
diff --git a/runs/fashion_trainer_20230918_161823/Training vs. Validation Loss_Training/events.out.tfevents.1695046704.msip-dell.ims.rwth-aachen.de.817116.4 b/runs/fashion_trainer_20230918_161823/Training vs. Validation Loss_Training/events.out.tfevents.1695046704.msip-dell.ims.rwth-aachen.de.817116.4
new file mode 100644
index 0000000000000000000000000000000000000000..67a25c627a1c6ad79d01262d5f8641a484dd7236
Binary files /dev/null and b/runs/fashion_trainer_20230918_161823/Training vs. Validation Loss_Training/events.out.tfevents.1695046704.msip-dell.ims.rwth-aachen.de.817116.4 differ
diff --git a/runs/fashion_trainer_20230918_161823/Training vs. Validation Loss_Validation/events.out.tfevents.1695046704.msip-dell.ims.rwth-aachen.de.817116.5 b/runs/fashion_trainer_20230918_161823/Training vs. Validation Loss_Validation/events.out.tfevents.1695046704.msip-dell.ims.rwth-aachen.de.817116.5
new file mode 100644
index 0000000000000000000000000000000000000000..33e1f14571e57a3c8360e6c184decda171301332
Binary files /dev/null and b/runs/fashion_trainer_20230918_161823/Training vs. Validation Loss_Validation/events.out.tfevents.1695046704.msip-dell.ims.rwth-aachen.de.817116.5 differ
diff --git a/runs/fashion_trainer_20230918_161823/events.out.tfevents.1695046703.msip-dell.ims.rwth-aachen.de.817116.3 b/runs/fashion_trainer_20230918_161823/events.out.tfevents.1695046703.msip-dell.ims.rwth-aachen.de.817116.3
new file mode 100644
index 0000000000000000000000000000000000000000..5463b88523d0f32519c1b317acdc75e321ea387d
Binary files /dev/null and b/runs/fashion_trainer_20230918_161823/events.out.tfevents.1695046703.msip-dell.ims.rwth-aachen.de.817116.3 differ
diff --git a/runs/fashion_trainer_20230918_161826/Training vs. Validation Loss_Training/events.out.tfevents.1695046707.msip-dell.ims.rwth-aachen.de.817116.7 b/runs/fashion_trainer_20230918_161826/Training vs. Validation Loss_Training/events.out.tfevents.1695046707.msip-dell.ims.rwth-aachen.de.817116.7
new file mode 100644
index 0000000000000000000000000000000000000000..dee1fbfec6cc33241806d693999edab88f375f16
Binary files /dev/null and b/runs/fashion_trainer_20230918_161826/Training vs. Validation Loss_Training/events.out.tfevents.1695046707.msip-dell.ims.rwth-aachen.de.817116.7 differ
diff --git a/runs/fashion_trainer_20230918_161826/Training vs. Validation Loss_Validation/events.out.tfevents.1695046707.msip-dell.ims.rwth-aachen.de.817116.8 b/runs/fashion_trainer_20230918_161826/Training vs. Validation Loss_Validation/events.out.tfevents.1695046707.msip-dell.ims.rwth-aachen.de.817116.8
new file mode 100644
index 0000000000000000000000000000000000000000..5f954ecd8d6c304c433ae19a5eacfd205746ad2f
Binary files /dev/null and b/runs/fashion_trainer_20230918_161826/Training vs. Validation Loss_Validation/events.out.tfevents.1695046707.msip-dell.ims.rwth-aachen.de.817116.8 differ
diff --git a/runs/fashion_trainer_20230918_161826/events.out.tfevents.1695046706.msip-dell.ims.rwth-aachen.de.817116.6 b/runs/fashion_trainer_20230918_161826/events.out.tfevents.1695046706.msip-dell.ims.rwth-aachen.de.817116.6
new file mode 100644
index 0000000000000000000000000000000000000000..e3f8cbd064f47c34dd212389c05591e4b44e4fe2
Binary files /dev/null and b/runs/fashion_trainer_20230918_161826/events.out.tfevents.1695046706.msip-dell.ims.rwth-aachen.de.817116.6 differ
diff --git a/runs/fashion_trainer_20230918_161830/Training vs. Validation Loss_Training/events.out.tfevents.1695046710.msip-dell.ims.rwth-aachen.de.817116.10 b/runs/fashion_trainer_20230918_161830/Training vs. Validation Loss_Training/events.out.tfevents.1695046710.msip-dell.ims.rwth-aachen.de.817116.10
new file mode 100644
index 0000000000000000000000000000000000000000..3859c2255530f7852a528e02264277d64855e5df
Binary files /dev/null and b/runs/fashion_trainer_20230918_161830/Training vs. Validation Loss_Training/events.out.tfevents.1695046710.msip-dell.ims.rwth-aachen.de.817116.10 differ
diff --git a/runs/fashion_trainer_20230918_161830/Training vs. Validation Loss_Validation/events.out.tfevents.1695046710.msip-dell.ims.rwth-aachen.de.817116.11 b/runs/fashion_trainer_20230918_161830/Training vs. Validation Loss_Validation/events.out.tfevents.1695046710.msip-dell.ims.rwth-aachen.de.817116.11
new file mode 100644
index 0000000000000000000000000000000000000000..89d22567b88c3c1a53fe9534bc8bfd62d9adcadf
Binary files /dev/null and b/runs/fashion_trainer_20230918_161830/Training vs. Validation Loss_Validation/events.out.tfevents.1695046710.msip-dell.ims.rwth-aachen.de.817116.11 differ
diff --git a/runs/fashion_trainer_20230918_161830/events.out.tfevents.1695046710.msip-dell.ims.rwth-aachen.de.817116.9 b/runs/fashion_trainer_20230918_161830/events.out.tfevents.1695046710.msip-dell.ims.rwth-aachen.de.817116.9
new file mode 100644
index 0000000000000000000000000000000000000000..15c98f69931e04228ec6cbde6e75ff548fe958f8
Binary files /dev/null and b/runs/fashion_trainer_20230918_161830/events.out.tfevents.1695046710.msip-dell.ims.rwth-aachen.de.817116.9 differ
diff --git a/runs/fashion_trainer_20230918_161833/Training vs. Validation Loss_Training/events.out.tfevents.1695046714.msip-dell.ims.rwth-aachen.de.817116.13 b/runs/fashion_trainer_20230918_161833/Training vs. Validation Loss_Training/events.out.tfevents.1695046714.msip-dell.ims.rwth-aachen.de.817116.13
new file mode 100644
index 0000000000000000000000000000000000000000..c218b3741db5dd91df0e9a7bd236e5e29bb30c4f
Binary files /dev/null and b/runs/fashion_trainer_20230918_161833/Training vs. Validation Loss_Training/events.out.tfevents.1695046714.msip-dell.ims.rwth-aachen.de.817116.13 differ
diff --git a/runs/fashion_trainer_20230918_161833/Training vs. Validation Loss_Validation/events.out.tfevents.1695046714.msip-dell.ims.rwth-aachen.de.817116.14 b/runs/fashion_trainer_20230918_161833/Training vs. Validation Loss_Validation/events.out.tfevents.1695046714.msip-dell.ims.rwth-aachen.de.817116.14
new file mode 100644
index 0000000000000000000000000000000000000000..e5c2be8c35943300a2bdfae3e006311303bc15d3
Binary files /dev/null and b/runs/fashion_trainer_20230918_161833/Training vs. Validation Loss_Validation/events.out.tfevents.1695046714.msip-dell.ims.rwth-aachen.de.817116.14 differ
diff --git a/runs/fashion_trainer_20230918_161833/events.out.tfevents.1695046713.msip-dell.ims.rwth-aachen.de.817116.12 b/runs/fashion_trainer_20230918_161833/events.out.tfevents.1695046713.msip-dell.ims.rwth-aachen.de.817116.12
new file mode 100644
index 0000000000000000000000000000000000000000..5b69b99b9df1ca8f6c3d2d9f2e87820cbeea11c0
Binary files /dev/null and b/runs/fashion_trainer_20230918_161833/events.out.tfevents.1695046713.msip-dell.ims.rwth-aachen.de.817116.12 differ
diff --git a/runs/fashion_trainer_20230918_161837/Training vs. Validation Loss_Training/events.out.tfevents.1695046718.msip-dell.ims.rwth-aachen.de.817116.16 b/runs/fashion_trainer_20230918_161837/Training vs. Validation Loss_Training/events.out.tfevents.1695046718.msip-dell.ims.rwth-aachen.de.817116.16
new file mode 100644
index 0000000000000000000000000000000000000000..950b6735ef464794ec4b3ae88b62c8483448c87a
Binary files /dev/null and b/runs/fashion_trainer_20230918_161837/Training vs. Validation Loss_Training/events.out.tfevents.1695046718.msip-dell.ims.rwth-aachen.de.817116.16 differ
diff --git a/runs/fashion_trainer_20230918_161837/Training vs. Validation Loss_Validation/events.out.tfevents.1695046718.msip-dell.ims.rwth-aachen.de.817116.17 b/runs/fashion_trainer_20230918_161837/Training vs. Validation Loss_Validation/events.out.tfevents.1695046718.msip-dell.ims.rwth-aachen.de.817116.17
new file mode 100644
index 0000000000000000000000000000000000000000..00d00298c3f957efd64b2939c07c32d478a445fa
Binary files /dev/null and b/runs/fashion_trainer_20230918_161837/Training vs. Validation Loss_Validation/events.out.tfevents.1695046718.msip-dell.ims.rwth-aachen.de.817116.17 differ
diff --git a/runs/fashion_trainer_20230918_161837/events.out.tfevents.1695046717.msip-dell.ims.rwth-aachen.de.817116.15 b/runs/fashion_trainer_20230918_161837/events.out.tfevents.1695046717.msip-dell.ims.rwth-aachen.de.817116.15
new file mode 100644
index 0000000000000000000000000000000000000000..fd42f7e26909646b4b202a2345dedf614179067a
Binary files /dev/null and b/runs/fashion_trainer_20230918_161837/events.out.tfevents.1695046717.msip-dell.ims.rwth-aachen.de.817116.15 differ
diff --git a/runs/fashion_trainer_20230918_161841/Training vs. Validation Loss_Training/events.out.tfevents.1695046722.msip-dell.ims.rwth-aachen.de.817116.19 b/runs/fashion_trainer_20230918_161841/Training vs. Validation Loss_Training/events.out.tfevents.1695046722.msip-dell.ims.rwth-aachen.de.817116.19
new file mode 100644
index 0000000000000000000000000000000000000000..cf7e2d49f1f0b384db037ea2c6d90a4ceff6633d
Binary files /dev/null and b/runs/fashion_trainer_20230918_161841/Training vs. Validation Loss_Training/events.out.tfevents.1695046722.msip-dell.ims.rwth-aachen.de.817116.19 differ
diff --git a/runs/fashion_trainer_20230918_161841/Training vs. Validation Loss_Validation/events.out.tfevents.1695046722.msip-dell.ims.rwth-aachen.de.817116.20 b/runs/fashion_trainer_20230918_161841/Training vs. Validation Loss_Validation/events.out.tfevents.1695046722.msip-dell.ims.rwth-aachen.de.817116.20
new file mode 100644
index 0000000000000000000000000000000000000000..1206b80c7a71bd9910d76d4b39b35f8ebbd6224b
Binary files /dev/null and b/runs/fashion_trainer_20230918_161841/Training vs. Validation Loss_Validation/events.out.tfevents.1695046722.msip-dell.ims.rwth-aachen.de.817116.20 differ
diff --git a/runs/fashion_trainer_20230918_161841/events.out.tfevents.1695046721.msip-dell.ims.rwth-aachen.de.817116.18 b/runs/fashion_trainer_20230918_161841/events.out.tfevents.1695046721.msip-dell.ims.rwth-aachen.de.817116.18
new file mode 100644
index 0000000000000000000000000000000000000000..168ef57adb852a07e5d2f25ef7c4522490c6eaaa
Binary files /dev/null and b/runs/fashion_trainer_20230918_161841/events.out.tfevents.1695046721.msip-dell.ims.rwth-aachen.de.817116.18 differ
diff --git a/runs/fashion_trainer_20230918_161845/Training vs. Validation Loss_Training/events.out.tfevents.1695046726.msip-dell.ims.rwth-aachen.de.817116.22 b/runs/fashion_trainer_20230918_161845/Training vs. Validation Loss_Training/events.out.tfevents.1695046726.msip-dell.ims.rwth-aachen.de.817116.22
new file mode 100644
index 0000000000000000000000000000000000000000..efdc0368e5e34ce458cd4115c6f6b2f276b49a4a
Binary files /dev/null and b/runs/fashion_trainer_20230918_161845/Training vs. Validation Loss_Training/events.out.tfevents.1695046726.msip-dell.ims.rwth-aachen.de.817116.22 differ
diff --git a/runs/fashion_trainer_20230918_161845/Training vs. Validation Loss_Validation/events.out.tfevents.1695046726.msip-dell.ims.rwth-aachen.de.817116.23 b/runs/fashion_trainer_20230918_161845/Training vs. Validation Loss_Validation/events.out.tfevents.1695046726.msip-dell.ims.rwth-aachen.de.817116.23
new file mode 100644
index 0000000000000000000000000000000000000000..e82d087c5ffaf5a577f4f1a58fd36dfbc22eeae0
Binary files /dev/null and b/runs/fashion_trainer_20230918_161845/Training vs. Validation Loss_Validation/events.out.tfevents.1695046726.msip-dell.ims.rwth-aachen.de.817116.23 differ
diff --git a/runs/fashion_trainer_20230918_161845/events.out.tfevents.1695046725.msip-dell.ims.rwth-aachen.de.817116.21 b/runs/fashion_trainer_20230918_161845/events.out.tfevents.1695046725.msip-dell.ims.rwth-aachen.de.817116.21
new file mode 100644
index 0000000000000000000000000000000000000000..12c77ba46aa14dcc7a2f5af12ebc99df50679b00
Binary files /dev/null and b/runs/fashion_trainer_20230918_161845/events.out.tfevents.1695046725.msip-dell.ims.rwth-aachen.de.817116.21 differ
diff --git a/runs/fashion_trainer_20230918_162403/Training vs. Validation Loss_Training/events.out.tfevents.1695047044.msip-dell.ims.rwth-aachen.de.818457.1 b/runs/fashion_trainer_20230918_162403/Training vs. Validation Loss_Training/events.out.tfevents.1695047044.msip-dell.ims.rwth-aachen.de.818457.1
new file mode 100644
index 0000000000000000000000000000000000000000..5b759c8b1c326e9c08999b92492187c54e6e5ef5
Binary files /dev/null and b/runs/fashion_trainer_20230918_162403/Training vs. Validation Loss_Training/events.out.tfevents.1695047044.msip-dell.ims.rwth-aachen.de.818457.1 differ
diff --git a/runs/fashion_trainer_20230918_162403/Training vs. Validation Loss_Validation/events.out.tfevents.1695047044.msip-dell.ims.rwth-aachen.de.818457.2 b/runs/fashion_trainer_20230918_162403/Training vs. Validation Loss_Validation/events.out.tfevents.1695047044.msip-dell.ims.rwth-aachen.de.818457.2
new file mode 100644
index 0000000000000000000000000000000000000000..be348036e3d5de55186382ee80c988c6b83cf08a
Binary files /dev/null and b/runs/fashion_trainer_20230918_162403/Training vs. Validation Loss_Validation/events.out.tfevents.1695047044.msip-dell.ims.rwth-aachen.de.818457.2 differ
diff --git a/runs/fashion_trainer_20230918_162403/events.out.tfevents.1695047043.msip-dell.ims.rwth-aachen.de.818457.0 b/runs/fashion_trainer_20230918_162403/events.out.tfevents.1695047043.msip-dell.ims.rwth-aachen.de.818457.0
new file mode 100644
index 0000000000000000000000000000000000000000..dfcd9d52ffe49952e799e275bb5ebcd034f5b157
Binary files /dev/null and b/runs/fashion_trainer_20230918_162403/events.out.tfevents.1695047043.msip-dell.ims.rwth-aachen.de.818457.0 differ
diff --git a/runs/fashion_trainer_20230918_162436/Training vs. Validation Loss_Training/events.out.tfevents.1695047077.msip-dell.ims.rwth-aachen.de.818821.1 b/runs/fashion_trainer_20230918_162436/Training vs. Validation Loss_Training/events.out.tfevents.1695047077.msip-dell.ims.rwth-aachen.de.818821.1
new file mode 100644
index 0000000000000000000000000000000000000000..eaa1f65c9dbfd8587fb5990a0afd9faa324b6ade
Binary files /dev/null and b/runs/fashion_trainer_20230918_162436/Training vs. Validation Loss_Training/events.out.tfevents.1695047077.msip-dell.ims.rwth-aachen.de.818821.1 differ
diff --git a/runs/fashion_trainer_20230918_162436/Training vs. Validation Loss_Validation/events.out.tfevents.1695047077.msip-dell.ims.rwth-aachen.de.818821.2 b/runs/fashion_trainer_20230918_162436/Training vs. Validation Loss_Validation/events.out.tfevents.1695047077.msip-dell.ims.rwth-aachen.de.818821.2
new file mode 100644
index 0000000000000000000000000000000000000000..4b9612d1c52915170ba5bfb7514ae55ce3f95e52
Binary files /dev/null and b/runs/fashion_trainer_20230918_162436/Training vs. Validation Loss_Validation/events.out.tfevents.1695047077.msip-dell.ims.rwth-aachen.de.818821.2 differ
diff --git a/runs/fashion_trainer_20230918_162436/events.out.tfevents.1695047076.msip-dell.ims.rwth-aachen.de.818821.0 b/runs/fashion_trainer_20230918_162436/events.out.tfevents.1695047076.msip-dell.ims.rwth-aachen.de.818821.0
new file mode 100644
index 0000000000000000000000000000000000000000..97bb3d24862359ff81cb1f97b22fd49cf2ec05f8
Binary files /dev/null and b/runs/fashion_trainer_20230918_162436/events.out.tfevents.1695047076.msip-dell.ims.rwth-aachen.de.818821.0 differ
diff --git a/runs/fashion_trainer_20230918_162440/Training vs. Validation Loss_Training/events.out.tfevents.1695047081.msip-dell.ims.rwth-aachen.de.818821.4 b/runs/fashion_trainer_20230918_162440/Training vs. Validation Loss_Training/events.out.tfevents.1695047081.msip-dell.ims.rwth-aachen.de.818821.4
new file mode 100644
index 0000000000000000000000000000000000000000..eda64f7feb99751186b219ab46d422a3c95cf6bf
Binary files /dev/null and b/runs/fashion_trainer_20230918_162440/Training vs. Validation Loss_Training/events.out.tfevents.1695047081.msip-dell.ims.rwth-aachen.de.818821.4 differ
diff --git a/runs/fashion_trainer_20230918_162440/Training vs. Validation Loss_Validation/events.out.tfevents.1695047081.msip-dell.ims.rwth-aachen.de.818821.5 b/runs/fashion_trainer_20230918_162440/Training vs. Validation Loss_Validation/events.out.tfevents.1695047081.msip-dell.ims.rwth-aachen.de.818821.5
new file mode 100644
index 0000000000000000000000000000000000000000..1a85ad39dc29ed0bd9a424cd0b55629fc3b12a7e
Binary files /dev/null and b/runs/fashion_trainer_20230918_162440/Training vs. Validation Loss_Validation/events.out.tfevents.1695047081.msip-dell.ims.rwth-aachen.de.818821.5 differ
diff --git a/runs/fashion_trainer_20230918_162440/events.out.tfevents.1695047080.msip-dell.ims.rwth-aachen.de.818821.3 b/runs/fashion_trainer_20230918_162440/events.out.tfevents.1695047080.msip-dell.ims.rwth-aachen.de.818821.3
new file mode 100644
index 0000000000000000000000000000000000000000..e3541cc2eb23267cd30470add3c6d526094fab04
Binary files /dev/null and b/runs/fashion_trainer_20230918_162440/events.out.tfevents.1695047080.msip-dell.ims.rwth-aachen.de.818821.3 differ
diff --git a/runs/fashion_trainer_20230918_162443/Training vs. Validation Loss_Training/events.out.tfevents.1695047084.msip-dell.ims.rwth-aachen.de.818821.7 b/runs/fashion_trainer_20230918_162443/Training vs. Validation Loss_Training/events.out.tfevents.1695047084.msip-dell.ims.rwth-aachen.de.818821.7
new file mode 100644
index 0000000000000000000000000000000000000000..e7c983d5b943e8b69e4acbcf71739a04f65c95bf
Binary files /dev/null and b/runs/fashion_trainer_20230918_162443/Training vs. Validation Loss_Training/events.out.tfevents.1695047084.msip-dell.ims.rwth-aachen.de.818821.7 differ
diff --git a/runs/fashion_trainer_20230918_162443/Training vs. Validation Loss_Validation/events.out.tfevents.1695047084.msip-dell.ims.rwth-aachen.de.818821.8 b/runs/fashion_trainer_20230918_162443/Training vs. Validation Loss_Validation/events.out.tfevents.1695047084.msip-dell.ims.rwth-aachen.de.818821.8
new file mode 100644
index 0000000000000000000000000000000000000000..935c4f2df6e26c4456eca659eea32926090d646a
Binary files /dev/null and b/runs/fashion_trainer_20230918_162443/Training vs. Validation Loss_Validation/events.out.tfevents.1695047084.msip-dell.ims.rwth-aachen.de.818821.8 differ
diff --git a/runs/fashion_trainer_20230918_162443/events.out.tfevents.1695047083.msip-dell.ims.rwth-aachen.de.818821.6 b/runs/fashion_trainer_20230918_162443/events.out.tfevents.1695047083.msip-dell.ims.rwth-aachen.de.818821.6
new file mode 100644
index 0000000000000000000000000000000000000000..41dfe90e7a7f2a1450a803732fe7fffae50e57bd
Binary files /dev/null and b/runs/fashion_trainer_20230918_162443/events.out.tfevents.1695047083.msip-dell.ims.rwth-aachen.de.818821.6 differ
diff --git a/runs/fashion_trainer_20230918_162446/Training vs. Validation Loss_Training/events.out.tfevents.1695047087.msip-dell.ims.rwth-aachen.de.818821.10 b/runs/fashion_trainer_20230918_162446/Training vs. Validation Loss_Training/events.out.tfevents.1695047087.msip-dell.ims.rwth-aachen.de.818821.10
new file mode 100644
index 0000000000000000000000000000000000000000..e36f04a4677ec0d617bcb09da55d5a2eb309aa82
Binary files /dev/null and b/runs/fashion_trainer_20230918_162446/Training vs. Validation Loss_Training/events.out.tfevents.1695047087.msip-dell.ims.rwth-aachen.de.818821.10 differ
diff --git a/runs/fashion_trainer_20230918_162446/Training vs. Validation Loss_Validation/events.out.tfevents.1695047087.msip-dell.ims.rwth-aachen.de.818821.11 b/runs/fashion_trainer_20230918_162446/Training vs. Validation Loss_Validation/events.out.tfevents.1695047087.msip-dell.ims.rwth-aachen.de.818821.11
new file mode 100644
index 0000000000000000000000000000000000000000..7cc7769a572b68f310f754a36c9b09f72cc44b69
Binary files /dev/null and b/runs/fashion_trainer_20230918_162446/Training vs. Validation Loss_Validation/events.out.tfevents.1695047087.msip-dell.ims.rwth-aachen.de.818821.11 differ
diff --git a/runs/fashion_trainer_20230918_162446/events.out.tfevents.1695047086.msip-dell.ims.rwth-aachen.de.818821.9 b/runs/fashion_trainer_20230918_162446/events.out.tfevents.1695047086.msip-dell.ims.rwth-aachen.de.818821.9
new file mode 100644
index 0000000000000000000000000000000000000000..f7b23144f54065bc89eca4a3b915f887ad35ea2e
Binary files /dev/null and b/runs/fashion_trainer_20230918_162446/events.out.tfevents.1695047086.msip-dell.ims.rwth-aachen.de.818821.9 differ
diff --git a/runs/fashion_trainer_20230918_162450/Training vs. Validation Loss_Training/events.out.tfevents.1695047091.msip-dell.ims.rwth-aachen.de.818821.13 b/runs/fashion_trainer_20230918_162450/Training vs. Validation Loss_Training/events.out.tfevents.1695047091.msip-dell.ims.rwth-aachen.de.818821.13
new file mode 100644
index 0000000000000000000000000000000000000000..a4a4f51285631ca89edde3ab9a523bb7585366c9
Binary files /dev/null and b/runs/fashion_trainer_20230918_162450/Training vs. Validation Loss_Training/events.out.tfevents.1695047091.msip-dell.ims.rwth-aachen.de.818821.13 differ
diff --git a/runs/fashion_trainer_20230918_162450/Training vs. Validation Loss_Validation/events.out.tfevents.1695047091.msip-dell.ims.rwth-aachen.de.818821.14 b/runs/fashion_trainer_20230918_162450/Training vs. Validation Loss_Validation/events.out.tfevents.1695047091.msip-dell.ims.rwth-aachen.de.818821.14
new file mode 100644
index 0000000000000000000000000000000000000000..6ac739d45fc1ac363bb87727715b5aec9dc00553
Binary files /dev/null and b/runs/fashion_trainer_20230918_162450/Training vs. Validation Loss_Validation/events.out.tfevents.1695047091.msip-dell.ims.rwth-aachen.de.818821.14 differ
diff --git a/runs/fashion_trainer_20230918_162450/events.out.tfevents.1695047090.msip-dell.ims.rwth-aachen.de.818821.12 b/runs/fashion_trainer_20230918_162450/events.out.tfevents.1695047090.msip-dell.ims.rwth-aachen.de.818821.12
new file mode 100644
index 0000000000000000000000000000000000000000..e9e8f6eb5b228ec2de8281a9330eb9abc7927deb
Binary files /dev/null and b/runs/fashion_trainer_20230918_162450/events.out.tfevents.1695047090.msip-dell.ims.rwth-aachen.de.818821.12 differ
diff --git a/runs/fashion_trainer_20230918_162453/Training vs. Validation Loss_Training/events.out.tfevents.1695047094.msip-dell.ims.rwth-aachen.de.818821.16 b/runs/fashion_trainer_20230918_162453/Training vs. Validation Loss_Training/events.out.tfevents.1695047094.msip-dell.ims.rwth-aachen.de.818821.16
new file mode 100644
index 0000000000000000000000000000000000000000..38486569d40f1f1397a459959d1afdb943fa23ca
Binary files /dev/null and b/runs/fashion_trainer_20230918_162453/Training vs. Validation Loss_Training/events.out.tfevents.1695047094.msip-dell.ims.rwth-aachen.de.818821.16 differ
diff --git a/runs/fashion_trainer_20230918_162453/Training vs. Validation Loss_Validation/events.out.tfevents.1695047094.msip-dell.ims.rwth-aachen.de.818821.17 b/runs/fashion_trainer_20230918_162453/Training vs. Validation Loss_Validation/events.out.tfevents.1695047094.msip-dell.ims.rwth-aachen.de.818821.17
new file mode 100644
index 0000000000000000000000000000000000000000..cac03d4c4c7b77757f4a0269f65c79bc45b8a7ae
Binary files /dev/null and b/runs/fashion_trainer_20230918_162453/Training vs. Validation Loss_Validation/events.out.tfevents.1695047094.msip-dell.ims.rwth-aachen.de.818821.17 differ
diff --git a/runs/fashion_trainer_20230918_162453/events.out.tfevents.1695047093.msip-dell.ims.rwth-aachen.de.818821.15 b/runs/fashion_trainer_20230918_162453/events.out.tfevents.1695047093.msip-dell.ims.rwth-aachen.de.818821.15
new file mode 100644
index 0000000000000000000000000000000000000000..94faaa4afc397745d657791358d7cc2a7104fc0f
Binary files /dev/null and b/runs/fashion_trainer_20230918_162453/events.out.tfevents.1695047093.msip-dell.ims.rwth-aachen.de.818821.15 differ
diff --git a/runs/fashion_trainer_20230918_162457/Training vs. Validation Loss_Training/events.out.tfevents.1695047098.msip-dell.ims.rwth-aachen.de.818821.19 b/runs/fashion_trainer_20230918_162457/Training vs. Validation Loss_Training/events.out.tfevents.1695047098.msip-dell.ims.rwth-aachen.de.818821.19
new file mode 100644
index 0000000000000000000000000000000000000000..4cd4c45cfab1282072c7aa105e040dee1978808c
Binary files /dev/null and b/runs/fashion_trainer_20230918_162457/Training vs. Validation Loss_Training/events.out.tfevents.1695047098.msip-dell.ims.rwth-aachen.de.818821.19 differ
diff --git a/runs/fashion_trainer_20230918_162457/Training vs. Validation Loss_Validation/events.out.tfevents.1695047098.msip-dell.ims.rwth-aachen.de.818821.20 b/runs/fashion_trainer_20230918_162457/Training vs. Validation Loss_Validation/events.out.tfevents.1695047098.msip-dell.ims.rwth-aachen.de.818821.20
new file mode 100644
index 0000000000000000000000000000000000000000..0425e2719416532afdc318c3c05b333b6522be5f
Binary files /dev/null and b/runs/fashion_trainer_20230918_162457/Training vs. Validation Loss_Validation/events.out.tfevents.1695047098.msip-dell.ims.rwth-aachen.de.818821.20 differ
diff --git a/runs/fashion_trainer_20230918_162457/events.out.tfevents.1695047097.msip-dell.ims.rwth-aachen.de.818821.18 b/runs/fashion_trainer_20230918_162457/events.out.tfevents.1695047097.msip-dell.ims.rwth-aachen.de.818821.18
new file mode 100644
index 0000000000000000000000000000000000000000..b8c67b0940b59a28cbc0e16d584be233c96e96e0
Binary files /dev/null and b/runs/fashion_trainer_20230918_162457/events.out.tfevents.1695047097.msip-dell.ims.rwth-aachen.de.818821.18 differ
diff --git a/runs/fashion_trainer_20230918_162500/Training vs. Validation Loss_Training/events.out.tfevents.1695047101.msip-dell.ims.rwth-aachen.de.818821.22 b/runs/fashion_trainer_20230918_162500/Training vs. Validation Loss_Training/events.out.tfevents.1695047101.msip-dell.ims.rwth-aachen.de.818821.22
new file mode 100644
index 0000000000000000000000000000000000000000..f84134ab0b3cf2294a5a3826a9dafbaa04b88eee
Binary files /dev/null and b/runs/fashion_trainer_20230918_162500/Training vs. Validation Loss_Training/events.out.tfevents.1695047101.msip-dell.ims.rwth-aachen.de.818821.22 differ
diff --git a/runs/fashion_trainer_20230918_162500/Training vs. Validation Loss_Validation/events.out.tfevents.1695047101.msip-dell.ims.rwth-aachen.de.818821.23 b/runs/fashion_trainer_20230918_162500/Training vs. Validation Loss_Validation/events.out.tfevents.1695047101.msip-dell.ims.rwth-aachen.de.818821.23
new file mode 100644
index 0000000000000000000000000000000000000000..a04de44e34bcea774e0bbc43d1e1b2e7157c7533
Binary files /dev/null and b/runs/fashion_trainer_20230918_162500/Training vs. Validation Loss_Validation/events.out.tfevents.1695047101.msip-dell.ims.rwth-aachen.de.818821.23 differ
diff --git a/runs/fashion_trainer_20230918_162500/events.out.tfevents.1695047100.msip-dell.ims.rwth-aachen.de.818821.21 b/runs/fashion_trainer_20230918_162500/events.out.tfevents.1695047100.msip-dell.ims.rwth-aachen.de.818821.21
new file mode 100644
index 0000000000000000000000000000000000000000..1e4c1705225c90c02883dffcdcd54c169d8bcd90
Binary files /dev/null and b/runs/fashion_trainer_20230918_162500/events.out.tfevents.1695047100.msip-dell.ims.rwth-aachen.de.818821.21 differ
diff --git a/runs/fashion_trainer_20230918_162758/Training vs. Validation Loss_Training/events.out.tfevents.1695047279.msip-dell.ims.rwth-aachen.de.819338.1 b/runs/fashion_trainer_20230918_162758/Training vs. Validation Loss_Training/events.out.tfevents.1695047279.msip-dell.ims.rwth-aachen.de.819338.1
new file mode 100644
index 0000000000000000000000000000000000000000..80ead4399b6161af16d84f935e12bd0fc903f7d6
Binary files /dev/null and b/runs/fashion_trainer_20230918_162758/Training vs. Validation Loss_Training/events.out.tfevents.1695047279.msip-dell.ims.rwth-aachen.de.819338.1 differ
diff --git a/runs/fashion_trainer_20230918_162758/Training vs. Validation Loss_Validation/events.out.tfevents.1695047279.msip-dell.ims.rwth-aachen.de.819338.2 b/runs/fashion_trainer_20230918_162758/Training vs. Validation Loss_Validation/events.out.tfevents.1695047279.msip-dell.ims.rwth-aachen.de.819338.2
new file mode 100644
index 0000000000000000000000000000000000000000..c8878b8b9934f46beb885cd03f742a7467aa140a
Binary files /dev/null and b/runs/fashion_trainer_20230918_162758/Training vs. Validation Loss_Validation/events.out.tfevents.1695047279.msip-dell.ims.rwth-aachen.de.819338.2 differ
diff --git a/runs/fashion_trainer_20230918_162758/events.out.tfevents.1695047278.msip-dell.ims.rwth-aachen.de.819338.0 b/runs/fashion_trainer_20230918_162758/events.out.tfevents.1695047278.msip-dell.ims.rwth-aachen.de.819338.0
new file mode 100644
index 0000000000000000000000000000000000000000..0be538f965c474829ee00f4f64bc54a88afe39bb
Binary files /dev/null and b/runs/fashion_trainer_20230918_162758/events.out.tfevents.1695047278.msip-dell.ims.rwth-aachen.de.819338.0 differ
diff --git a/runs/fashion_trainer_20230918_162801/Training vs. Validation Loss_Training/events.out.tfevents.1695047282.msip-dell.ims.rwth-aachen.de.819338.4 b/runs/fashion_trainer_20230918_162801/Training vs. Validation Loss_Training/events.out.tfevents.1695047282.msip-dell.ims.rwth-aachen.de.819338.4
new file mode 100644
index 0000000000000000000000000000000000000000..c1e3089035ad25718f0eef7859466312ce18756c
Binary files /dev/null and b/runs/fashion_trainer_20230918_162801/Training vs. Validation Loss_Training/events.out.tfevents.1695047282.msip-dell.ims.rwth-aachen.de.819338.4 differ
diff --git a/runs/fashion_trainer_20230918_162801/Training vs. Validation Loss_Validation/events.out.tfevents.1695047282.msip-dell.ims.rwth-aachen.de.819338.5 b/runs/fashion_trainer_20230918_162801/Training vs. Validation Loss_Validation/events.out.tfevents.1695047282.msip-dell.ims.rwth-aachen.de.819338.5
new file mode 100644
index 0000000000000000000000000000000000000000..0b678a9007fdea5534144df0a7bff5a3017297ca
Binary files /dev/null and b/runs/fashion_trainer_20230918_162801/Training vs. Validation Loss_Validation/events.out.tfevents.1695047282.msip-dell.ims.rwth-aachen.de.819338.5 differ
diff --git a/runs/fashion_trainer_20230918_162801/events.out.tfevents.1695047281.msip-dell.ims.rwth-aachen.de.819338.3 b/runs/fashion_trainer_20230918_162801/events.out.tfevents.1695047281.msip-dell.ims.rwth-aachen.de.819338.3
new file mode 100644
index 0000000000000000000000000000000000000000..f5f825f8d4ec9c933f9c5a73fa50a1b574244d12
Binary files /dev/null and b/runs/fashion_trainer_20230918_162801/events.out.tfevents.1695047281.msip-dell.ims.rwth-aachen.de.819338.3 differ
diff --git a/runs/fashion_trainer_20230918_162811/Training vs. Validation Loss_Training/events.out.tfevents.1695047292.msip-dell.ims.rwth-aachen.de.819495.1 b/runs/fashion_trainer_20230918_162811/Training vs. Validation Loss_Training/events.out.tfevents.1695047292.msip-dell.ims.rwth-aachen.de.819495.1
new file mode 100644
index 0000000000000000000000000000000000000000..43b9eaebc0049119651b2707d3fcc27ede312e9d
Binary files /dev/null and b/runs/fashion_trainer_20230918_162811/Training vs. Validation Loss_Training/events.out.tfevents.1695047292.msip-dell.ims.rwth-aachen.de.819495.1 differ
diff --git a/runs/fashion_trainer_20230918_162811/Training vs. Validation Loss_Validation/events.out.tfevents.1695047292.msip-dell.ims.rwth-aachen.de.819495.2 b/runs/fashion_trainer_20230918_162811/Training vs. Validation Loss_Validation/events.out.tfevents.1695047292.msip-dell.ims.rwth-aachen.de.819495.2
new file mode 100644
index 0000000000000000000000000000000000000000..cf0f880615f0a8a69a953dc5a0548dcea256393d
Binary files /dev/null and b/runs/fashion_trainer_20230918_162811/Training vs. Validation Loss_Validation/events.out.tfevents.1695047292.msip-dell.ims.rwth-aachen.de.819495.2 differ
diff --git a/runs/fashion_trainer_20230918_162811/events.out.tfevents.1695047291.msip-dell.ims.rwth-aachen.de.819495.0 b/runs/fashion_trainer_20230918_162811/events.out.tfevents.1695047291.msip-dell.ims.rwth-aachen.de.819495.0
new file mode 100644
index 0000000000000000000000000000000000000000..e89971ca336333749124a561f22308d6e76e11bc
Binary files /dev/null and b/runs/fashion_trainer_20230918_162811/events.out.tfevents.1695047291.msip-dell.ims.rwth-aachen.de.819495.0 differ
diff --git a/runs/fashion_trainer_20230918_162815/Training vs. Validation Loss_Training/events.out.tfevents.1695047296.msip-dell.ims.rwth-aachen.de.819495.4 b/runs/fashion_trainer_20230918_162815/Training vs. Validation Loss_Training/events.out.tfevents.1695047296.msip-dell.ims.rwth-aachen.de.819495.4
new file mode 100644
index 0000000000000000000000000000000000000000..abc909964798b9c9a6b49c384b93ce45ab9a7b45
Binary files /dev/null and b/runs/fashion_trainer_20230918_162815/Training vs. Validation Loss_Training/events.out.tfevents.1695047296.msip-dell.ims.rwth-aachen.de.819495.4 differ
diff --git a/runs/fashion_trainer_20230918_162815/Training vs. Validation Loss_Validation/events.out.tfevents.1695047296.msip-dell.ims.rwth-aachen.de.819495.5 b/runs/fashion_trainer_20230918_162815/Training vs. Validation Loss_Validation/events.out.tfevents.1695047296.msip-dell.ims.rwth-aachen.de.819495.5
new file mode 100644
index 0000000000000000000000000000000000000000..26bd744a40a1217479f79ee6d0c20318a63aa517
Binary files /dev/null and b/runs/fashion_trainer_20230918_162815/Training vs. Validation Loss_Validation/events.out.tfevents.1695047296.msip-dell.ims.rwth-aachen.de.819495.5 differ
diff --git a/runs/fashion_trainer_20230918_162815/events.out.tfevents.1695047295.msip-dell.ims.rwth-aachen.de.819495.3 b/runs/fashion_trainer_20230918_162815/events.out.tfevents.1695047295.msip-dell.ims.rwth-aachen.de.819495.3
new file mode 100644
index 0000000000000000000000000000000000000000..ab4ca4fc5233b83d37bdd3c27137d5ef7753c4c0
Binary files /dev/null and b/runs/fashion_trainer_20230918_162815/events.out.tfevents.1695047295.msip-dell.ims.rwth-aachen.de.819495.3 differ
diff --git a/runs/fashion_trainer_20230918_162818/Training vs. Validation Loss_Training/events.out.tfevents.1695047299.msip-dell.ims.rwth-aachen.de.819495.7 b/runs/fashion_trainer_20230918_162818/Training vs. Validation Loss_Training/events.out.tfevents.1695047299.msip-dell.ims.rwth-aachen.de.819495.7
new file mode 100644
index 0000000000000000000000000000000000000000..af6c2618943f726efd854fc50ca63ffb49815a9c
Binary files /dev/null and b/runs/fashion_trainer_20230918_162818/Training vs. Validation Loss_Training/events.out.tfevents.1695047299.msip-dell.ims.rwth-aachen.de.819495.7 differ
diff --git a/runs/fashion_trainer_20230918_162818/Training vs. Validation Loss_Validation/events.out.tfevents.1695047299.msip-dell.ims.rwth-aachen.de.819495.8 b/runs/fashion_trainer_20230918_162818/Training vs. Validation Loss_Validation/events.out.tfevents.1695047299.msip-dell.ims.rwth-aachen.de.819495.8
new file mode 100644
index 0000000000000000000000000000000000000000..47f8790e94e7a0ecc27cbd9a450829c3b911da8b
Binary files /dev/null and b/runs/fashion_trainer_20230918_162818/Training vs. Validation Loss_Validation/events.out.tfevents.1695047299.msip-dell.ims.rwth-aachen.de.819495.8 differ
diff --git a/runs/fashion_trainer_20230918_162818/events.out.tfevents.1695047298.msip-dell.ims.rwth-aachen.de.819495.6 b/runs/fashion_trainer_20230918_162818/events.out.tfevents.1695047298.msip-dell.ims.rwth-aachen.de.819495.6
new file mode 100644
index 0000000000000000000000000000000000000000..a0133c4cb7a64a36e193738ddf8636afc67abebf
Binary files /dev/null and b/runs/fashion_trainer_20230918_162818/events.out.tfevents.1695047298.msip-dell.ims.rwth-aachen.de.819495.6 differ
diff --git a/runs/fashion_trainer_20230918_162821/Training vs. Validation Loss_Training/events.out.tfevents.1695047302.msip-dell.ims.rwth-aachen.de.819495.10 b/runs/fashion_trainer_20230918_162821/Training vs. Validation Loss_Training/events.out.tfevents.1695047302.msip-dell.ims.rwth-aachen.de.819495.10
new file mode 100644
index 0000000000000000000000000000000000000000..466e5af8e3db1ae422fc9acf297566814c179e4f
Binary files /dev/null and b/runs/fashion_trainer_20230918_162821/Training vs. Validation Loss_Training/events.out.tfevents.1695047302.msip-dell.ims.rwth-aachen.de.819495.10 differ
diff --git a/runs/fashion_trainer_20230918_162821/Training vs. Validation Loss_Validation/events.out.tfevents.1695047302.msip-dell.ims.rwth-aachen.de.819495.11 b/runs/fashion_trainer_20230918_162821/Training vs. Validation Loss_Validation/events.out.tfevents.1695047302.msip-dell.ims.rwth-aachen.de.819495.11
new file mode 100644
index 0000000000000000000000000000000000000000..39666ed4da84d6a21cb8e42ee07b9cf2ec6a0d7a
Binary files /dev/null and b/runs/fashion_trainer_20230918_162821/Training vs. Validation Loss_Validation/events.out.tfevents.1695047302.msip-dell.ims.rwth-aachen.de.819495.11 differ
diff --git a/runs/fashion_trainer_20230918_162821/events.out.tfevents.1695047301.msip-dell.ims.rwth-aachen.de.819495.9 b/runs/fashion_trainer_20230918_162821/events.out.tfevents.1695047301.msip-dell.ims.rwth-aachen.de.819495.9
new file mode 100644
index 0000000000000000000000000000000000000000..0af74731c0cf5e693467268c202ebb22582d1130
Binary files /dev/null and b/runs/fashion_trainer_20230918_162821/events.out.tfevents.1695047301.msip-dell.ims.rwth-aachen.de.819495.9 differ
diff --git a/runs/fashion_trainer_20230918_162824/Training vs. Validation Loss_Training/events.out.tfevents.1695047305.msip-dell.ims.rwth-aachen.de.819495.13 b/runs/fashion_trainer_20230918_162824/Training vs. Validation Loss_Training/events.out.tfevents.1695047305.msip-dell.ims.rwth-aachen.de.819495.13
new file mode 100644
index 0000000000000000000000000000000000000000..0d390ca09e44d62590672f4cf3c6813e14b90a5f
Binary files /dev/null and b/runs/fashion_trainer_20230918_162824/Training vs. Validation Loss_Training/events.out.tfevents.1695047305.msip-dell.ims.rwth-aachen.de.819495.13 differ
diff --git a/runs/fashion_trainer_20230918_162824/Training vs. Validation Loss_Validation/events.out.tfevents.1695047305.msip-dell.ims.rwth-aachen.de.819495.14 b/runs/fashion_trainer_20230918_162824/Training vs. Validation Loss_Validation/events.out.tfevents.1695047305.msip-dell.ims.rwth-aachen.de.819495.14
new file mode 100644
index 0000000000000000000000000000000000000000..b3e6ed954d1dcb93f1025b024a9bd12685dd5040
Binary files /dev/null and b/runs/fashion_trainer_20230918_162824/Training vs. Validation Loss_Validation/events.out.tfevents.1695047305.msip-dell.ims.rwth-aachen.de.819495.14 differ
diff --git a/runs/fashion_trainer_20230918_162824/events.out.tfevents.1695047304.msip-dell.ims.rwth-aachen.de.819495.12 b/runs/fashion_trainer_20230918_162824/events.out.tfevents.1695047304.msip-dell.ims.rwth-aachen.de.819495.12
new file mode 100644
index 0000000000000000000000000000000000000000..5fecf0340ea346b7f15a42cada21134f5d439c64
Binary files /dev/null and b/runs/fashion_trainer_20230918_162824/events.out.tfevents.1695047304.msip-dell.ims.rwth-aachen.de.819495.12 differ
diff --git a/runs/fashion_trainer_20230918_162827/Training vs. Validation Loss_Training/events.out.tfevents.1695047308.msip-dell.ims.rwth-aachen.de.819495.16 b/runs/fashion_trainer_20230918_162827/Training vs. Validation Loss_Training/events.out.tfevents.1695047308.msip-dell.ims.rwth-aachen.de.819495.16
new file mode 100644
index 0000000000000000000000000000000000000000..94d8603a393d990da6289cbe567b4297913c8896
Binary files /dev/null and b/runs/fashion_trainer_20230918_162827/Training vs. Validation Loss_Training/events.out.tfevents.1695047308.msip-dell.ims.rwth-aachen.de.819495.16 differ
diff --git a/runs/fashion_trainer_20230918_162827/Training vs. Validation Loss_Validation/events.out.tfevents.1695047308.msip-dell.ims.rwth-aachen.de.819495.17 b/runs/fashion_trainer_20230918_162827/Training vs. Validation Loss_Validation/events.out.tfevents.1695047308.msip-dell.ims.rwth-aachen.de.819495.17
new file mode 100644
index 0000000000000000000000000000000000000000..4df8fbc3427f795e5b75c03f3b6d62fc34007054
Binary files /dev/null and b/runs/fashion_trainer_20230918_162827/Training vs. Validation Loss_Validation/events.out.tfevents.1695047308.msip-dell.ims.rwth-aachen.de.819495.17 differ
diff --git a/runs/fashion_trainer_20230918_162827/events.out.tfevents.1695047307.msip-dell.ims.rwth-aachen.de.819495.15 b/runs/fashion_trainer_20230918_162827/events.out.tfevents.1695047307.msip-dell.ims.rwth-aachen.de.819495.15
new file mode 100644
index 0000000000000000000000000000000000000000..5e4028c08c0b23f3881b6e485f01b5e7a478e0e4
Binary files /dev/null and b/runs/fashion_trainer_20230918_162827/events.out.tfevents.1695047307.msip-dell.ims.rwth-aachen.de.819495.15 differ
diff --git a/runs/fashion_trainer_20230918_162831/Training vs. Validation Loss_Training/events.out.tfevents.1695047311.msip-dell.ims.rwth-aachen.de.819495.19 b/runs/fashion_trainer_20230918_162831/Training vs. Validation Loss_Training/events.out.tfevents.1695047311.msip-dell.ims.rwth-aachen.de.819495.19
new file mode 100644
index 0000000000000000000000000000000000000000..1c6a834d9a2c32d760876ba9e0e9e5453fcc2a13
Binary files /dev/null and b/runs/fashion_trainer_20230918_162831/Training vs. Validation Loss_Training/events.out.tfevents.1695047311.msip-dell.ims.rwth-aachen.de.819495.19 differ
diff --git a/runs/fashion_trainer_20230918_162831/Training vs. Validation Loss_Validation/events.out.tfevents.1695047311.msip-dell.ims.rwth-aachen.de.819495.20 b/runs/fashion_trainer_20230918_162831/Training vs. Validation Loss_Validation/events.out.tfevents.1695047311.msip-dell.ims.rwth-aachen.de.819495.20
new file mode 100644
index 0000000000000000000000000000000000000000..f556735784294da41e6b87efa1b5d41071f9fffb
Binary files /dev/null and b/runs/fashion_trainer_20230918_162831/Training vs. Validation Loss_Validation/events.out.tfevents.1695047311.msip-dell.ims.rwth-aachen.de.819495.20 differ
diff --git a/runs/fashion_trainer_20230918_162831/events.out.tfevents.1695047311.msip-dell.ims.rwth-aachen.de.819495.18 b/runs/fashion_trainer_20230918_162831/events.out.tfevents.1695047311.msip-dell.ims.rwth-aachen.de.819495.18
new file mode 100644
index 0000000000000000000000000000000000000000..d497354838fffe76318d429da5930b1a9eb2bba3
Binary files /dev/null and b/runs/fashion_trainer_20230918_162831/events.out.tfevents.1695047311.msip-dell.ims.rwth-aachen.de.819495.18 differ
diff --git a/runs/fashion_trainer_20230918_162833/Training vs. Validation Loss_Training/events.out.tfevents.1695047314.msip-dell.ims.rwth-aachen.de.819495.22 b/runs/fashion_trainer_20230918_162833/Training vs. Validation Loss_Training/events.out.tfevents.1695047314.msip-dell.ims.rwth-aachen.de.819495.22
new file mode 100644
index 0000000000000000000000000000000000000000..dc178d1b44122867119344372f9d1b30bc5325db
Binary files /dev/null and b/runs/fashion_trainer_20230918_162833/Training vs. Validation Loss_Training/events.out.tfevents.1695047314.msip-dell.ims.rwth-aachen.de.819495.22 differ
diff --git a/runs/fashion_trainer_20230918_162833/Training vs. Validation Loss_Validation/events.out.tfevents.1695047314.msip-dell.ims.rwth-aachen.de.819495.23 b/runs/fashion_trainer_20230918_162833/Training vs. Validation Loss_Validation/events.out.tfevents.1695047314.msip-dell.ims.rwth-aachen.de.819495.23
new file mode 100644
index 0000000000000000000000000000000000000000..2f724488e77ffc2a0b931ea70178071ae487f4ba
Binary files /dev/null and b/runs/fashion_trainer_20230918_162833/Training vs. Validation Loss_Validation/events.out.tfevents.1695047314.msip-dell.ims.rwth-aachen.de.819495.23 differ
diff --git a/runs/fashion_trainer_20230918_162833/events.out.tfevents.1695047313.msip-dell.ims.rwth-aachen.de.819495.21 b/runs/fashion_trainer_20230918_162833/events.out.tfevents.1695047313.msip-dell.ims.rwth-aachen.de.819495.21
new file mode 100644
index 0000000000000000000000000000000000000000..752718c4c218cec2f6c409d9906e94ab24630cbb
Binary files /dev/null and b/runs/fashion_trainer_20230918_162833/events.out.tfevents.1695047313.msip-dell.ims.rwth-aachen.de.819495.21 differ
diff --git a/runs/fashion_trainer_20230918_162922/Training vs. Validation Loss_Training/events.out.tfevents.1695047365.msip-dell.ims.rwth-aachen.de.819843.1 b/runs/fashion_trainer_20230918_162922/Training vs. Validation Loss_Training/events.out.tfevents.1695047365.msip-dell.ims.rwth-aachen.de.819843.1
new file mode 100644
index 0000000000000000000000000000000000000000..35c1dd5500a5ca1b44019f6c97a2ec33bda14bd4
Binary files /dev/null and b/runs/fashion_trainer_20230918_162922/Training vs. Validation Loss_Training/events.out.tfevents.1695047365.msip-dell.ims.rwth-aachen.de.819843.1 differ
diff --git a/runs/fashion_trainer_20230918_162922/Training vs. Validation Loss_Validation/events.out.tfevents.1695047365.msip-dell.ims.rwth-aachen.de.819843.2 b/runs/fashion_trainer_20230918_162922/Training vs. Validation Loss_Validation/events.out.tfevents.1695047365.msip-dell.ims.rwth-aachen.de.819843.2
new file mode 100644
index 0000000000000000000000000000000000000000..53c6e412407feb4f03bbfb0320a5dfcf816f7b08
Binary files /dev/null and b/runs/fashion_trainer_20230918_162922/Training vs. Validation Loss_Validation/events.out.tfevents.1695047365.msip-dell.ims.rwth-aachen.de.819843.2 differ
diff --git a/runs/fashion_trainer_20230918_162922/events.out.tfevents.1695047362.msip-dell.ims.rwth-aachen.de.819843.0 b/runs/fashion_trainer_20230918_162922/events.out.tfevents.1695047362.msip-dell.ims.rwth-aachen.de.819843.0
new file mode 100644
index 0000000000000000000000000000000000000000..6ff46788b2c845de3e05d46d3fc617f5b34bbaec
Binary files /dev/null and b/runs/fashion_trainer_20230918_162922/events.out.tfevents.1695047362.msip-dell.ims.rwth-aachen.de.819843.0 differ
diff --git a/runs/fashion_trainer_20230918_162933/Training vs. Validation Loss_Training/events.out.tfevents.1695047377.msip-dell.ims.rwth-aachen.de.819843.4 b/runs/fashion_trainer_20230918_162933/Training vs. Validation Loss_Training/events.out.tfevents.1695047377.msip-dell.ims.rwth-aachen.de.819843.4
new file mode 100644
index 0000000000000000000000000000000000000000..1c613bdf3ce942da7ec9e5778bd675a6eaaa2ed9
Binary files /dev/null and b/runs/fashion_trainer_20230918_162933/Training vs. Validation Loss_Training/events.out.tfevents.1695047377.msip-dell.ims.rwth-aachen.de.819843.4 differ
diff --git a/runs/fashion_trainer_20230918_162933/Training vs. Validation Loss_Validation/events.out.tfevents.1695047377.msip-dell.ims.rwth-aachen.de.819843.5 b/runs/fashion_trainer_20230918_162933/Training vs. Validation Loss_Validation/events.out.tfevents.1695047377.msip-dell.ims.rwth-aachen.de.819843.5
new file mode 100644
index 0000000000000000000000000000000000000000..af43a241ca884f633846992cb50a8af28b38b6fc
Binary files /dev/null and b/runs/fashion_trainer_20230918_162933/Training vs. Validation Loss_Validation/events.out.tfevents.1695047377.msip-dell.ims.rwth-aachen.de.819843.5 differ
diff --git a/runs/fashion_trainer_20230918_162933/events.out.tfevents.1695047373.msip-dell.ims.rwth-aachen.de.819843.3 b/runs/fashion_trainer_20230918_162933/events.out.tfevents.1695047373.msip-dell.ims.rwth-aachen.de.819843.3
new file mode 100644
index 0000000000000000000000000000000000000000..bea78f82d25a1ac9fa61e2b1251f6a254c20bc48
Binary files /dev/null and b/runs/fashion_trainer_20230918_162933/events.out.tfevents.1695047373.msip-dell.ims.rwth-aachen.de.819843.3 differ
diff --git a/runs/fashion_trainer_20230918_163002/Training vs. Validation Loss_Training/events.out.tfevents.1695047404.msip-dell.ims.rwth-aachen.de.820235.1 b/runs/fashion_trainer_20230918_163002/Training vs. Validation Loss_Training/events.out.tfevents.1695047404.msip-dell.ims.rwth-aachen.de.820235.1
new file mode 100644
index 0000000000000000000000000000000000000000..dad6eb4097e95cbf7e683570ffa1757b1a502703
Binary files /dev/null and b/runs/fashion_trainer_20230918_163002/Training vs. Validation Loss_Training/events.out.tfevents.1695047404.msip-dell.ims.rwth-aachen.de.820235.1 differ
diff --git a/runs/fashion_trainer_20230918_163002/Training vs. Validation Loss_Validation/events.out.tfevents.1695047404.msip-dell.ims.rwth-aachen.de.820235.2 b/runs/fashion_trainer_20230918_163002/Training vs. Validation Loss_Validation/events.out.tfevents.1695047404.msip-dell.ims.rwth-aachen.de.820235.2
new file mode 100644
index 0000000000000000000000000000000000000000..276d244e673f12b90d062d13a0aa03df9ac1c2c3
Binary files /dev/null and b/runs/fashion_trainer_20230918_163002/Training vs. Validation Loss_Validation/events.out.tfevents.1695047404.msip-dell.ims.rwth-aachen.de.820235.2 differ
diff --git a/runs/fashion_trainer_20230918_163002/events.out.tfevents.1695047402.msip-dell.ims.rwth-aachen.de.820235.0 b/runs/fashion_trainer_20230918_163002/events.out.tfevents.1695047402.msip-dell.ims.rwth-aachen.de.820235.0
new file mode 100644
index 0000000000000000000000000000000000000000..fe94baae225fa68a6a35435a0318ba17bb2d50f4
Binary files /dev/null and b/runs/fashion_trainer_20230918_163002/events.out.tfevents.1695047402.msip-dell.ims.rwth-aachen.de.820235.0 differ
diff --git a/runs/fashion_trainer_20230918_163010/Training vs. Validation Loss_Training/events.out.tfevents.1695047412.msip-dell.ims.rwth-aachen.de.820235.4 b/runs/fashion_trainer_20230918_163010/Training vs. Validation Loss_Training/events.out.tfevents.1695047412.msip-dell.ims.rwth-aachen.de.820235.4
new file mode 100644
index 0000000000000000000000000000000000000000..73646afea89cfd4c346e0d1c51e7d46d3c9e3144
Binary files /dev/null and b/runs/fashion_trainer_20230918_163010/Training vs. Validation Loss_Training/events.out.tfevents.1695047412.msip-dell.ims.rwth-aachen.de.820235.4 differ
diff --git a/runs/fashion_trainer_20230918_163010/Training vs. Validation Loss_Validation/events.out.tfevents.1695047412.msip-dell.ims.rwth-aachen.de.820235.5 b/runs/fashion_trainer_20230918_163010/Training vs. Validation Loss_Validation/events.out.tfevents.1695047412.msip-dell.ims.rwth-aachen.de.820235.5
new file mode 100644
index 0000000000000000000000000000000000000000..8551a1e3753b4ab1f5712fd80f46e4f859e618b7
Binary files /dev/null and b/runs/fashion_trainer_20230918_163010/Training vs. Validation Loss_Validation/events.out.tfevents.1695047412.msip-dell.ims.rwth-aachen.de.820235.5 differ
diff --git a/runs/fashion_trainer_20230918_163010/events.out.tfevents.1695047410.msip-dell.ims.rwth-aachen.de.820235.3 b/runs/fashion_trainer_20230918_163010/events.out.tfevents.1695047410.msip-dell.ims.rwth-aachen.de.820235.3
new file mode 100644
index 0000000000000000000000000000000000000000..b5d20fc82483040f6e02226a712a42b76fcd311b
Binary files /dev/null and b/runs/fashion_trainer_20230918_163010/events.out.tfevents.1695047410.msip-dell.ims.rwth-aachen.de.820235.3 differ
diff --git a/runs/fashion_trainer_20230918_163018/Training vs. Validation Loss_Training/events.out.tfevents.1695047420.msip-dell.ims.rwth-aachen.de.820235.7 b/runs/fashion_trainer_20230918_163018/Training vs. Validation Loss_Training/events.out.tfevents.1695047420.msip-dell.ims.rwth-aachen.de.820235.7
new file mode 100644
index 0000000000000000000000000000000000000000..399797159722a909f0fad94cfb969da4f9cc7853
Binary files /dev/null and b/runs/fashion_trainer_20230918_163018/Training vs. Validation Loss_Training/events.out.tfevents.1695047420.msip-dell.ims.rwth-aachen.de.820235.7 differ
diff --git a/runs/fashion_trainer_20230918_163018/Training vs. Validation Loss_Validation/events.out.tfevents.1695047420.msip-dell.ims.rwth-aachen.de.820235.8 b/runs/fashion_trainer_20230918_163018/Training vs. Validation Loss_Validation/events.out.tfevents.1695047420.msip-dell.ims.rwth-aachen.de.820235.8
new file mode 100644
index 0000000000000000000000000000000000000000..1d72bab3303aae135bfc098e87014bc334092185
Binary files /dev/null and b/runs/fashion_trainer_20230918_163018/Training vs. Validation Loss_Validation/events.out.tfevents.1695047420.msip-dell.ims.rwth-aachen.de.820235.8 differ
diff --git a/runs/fashion_trainer_20230918_163018/events.out.tfevents.1695047418.msip-dell.ims.rwth-aachen.de.820235.6 b/runs/fashion_trainer_20230918_163018/events.out.tfevents.1695047418.msip-dell.ims.rwth-aachen.de.820235.6
new file mode 100644
index 0000000000000000000000000000000000000000..e18f50e036e077f5e9d1a5e5bc32ecf1cea8ddb5
Binary files /dev/null and b/runs/fashion_trainer_20230918_163018/events.out.tfevents.1695047418.msip-dell.ims.rwth-aachen.de.820235.6 differ
diff --git a/runs/fashion_trainer_20230918_163026/Training vs. Validation Loss_Training/events.out.tfevents.1695047429.msip-dell.ims.rwth-aachen.de.820235.10 b/runs/fashion_trainer_20230918_163026/Training vs. Validation Loss_Training/events.out.tfevents.1695047429.msip-dell.ims.rwth-aachen.de.820235.10
new file mode 100644
index 0000000000000000000000000000000000000000..eb2d7cefcc8f810c05a6cfedf291db6808415c5a
Binary files /dev/null and b/runs/fashion_trainer_20230918_163026/Training vs. Validation Loss_Training/events.out.tfevents.1695047429.msip-dell.ims.rwth-aachen.de.820235.10 differ
diff --git a/runs/fashion_trainer_20230918_163026/Training vs. Validation Loss_Validation/events.out.tfevents.1695047429.msip-dell.ims.rwth-aachen.de.820235.11 b/runs/fashion_trainer_20230918_163026/Training vs. Validation Loss_Validation/events.out.tfevents.1695047429.msip-dell.ims.rwth-aachen.de.820235.11
new file mode 100644
index 0000000000000000000000000000000000000000..2be9df1742d701bd49fda6a5b39c3b2e243d0c02
Binary files /dev/null and b/runs/fashion_trainer_20230918_163026/Training vs. Validation Loss_Validation/events.out.tfevents.1695047429.msip-dell.ims.rwth-aachen.de.820235.11 differ
diff --git a/runs/fashion_trainer_20230918_163026/events.out.tfevents.1695047426.msip-dell.ims.rwth-aachen.de.820235.9 b/runs/fashion_trainer_20230918_163026/events.out.tfevents.1695047426.msip-dell.ims.rwth-aachen.de.820235.9
new file mode 100644
index 0000000000000000000000000000000000000000..1c3e112e31dc128273602f6226d32b8d1f309bed
Binary files /dev/null and b/runs/fashion_trainer_20230918_163026/events.out.tfevents.1695047426.msip-dell.ims.rwth-aachen.de.820235.9 differ
diff --git a/runs/fashion_trainer_20230918_163035/Training vs. Validation Loss_Training/events.out.tfevents.1695047437.msip-dell.ims.rwth-aachen.de.820235.13 b/runs/fashion_trainer_20230918_163035/Training vs. Validation Loss_Training/events.out.tfevents.1695047437.msip-dell.ims.rwth-aachen.de.820235.13
new file mode 100644
index 0000000000000000000000000000000000000000..7d81ac043253d961dcd21cf6a85ff2c1bd8861b8
Binary files /dev/null and b/runs/fashion_trainer_20230918_163035/Training vs. Validation Loss_Training/events.out.tfevents.1695047437.msip-dell.ims.rwth-aachen.de.820235.13 differ
diff --git a/runs/fashion_trainer_20230918_163035/Training vs. Validation Loss_Validation/events.out.tfevents.1695047437.msip-dell.ims.rwth-aachen.de.820235.14 b/runs/fashion_trainer_20230918_163035/Training vs. Validation Loss_Validation/events.out.tfevents.1695047437.msip-dell.ims.rwth-aachen.de.820235.14
new file mode 100644
index 0000000000000000000000000000000000000000..5f291b997bb01f3ab160d3d2580766bf073979ff
Binary files /dev/null and b/runs/fashion_trainer_20230918_163035/Training vs. Validation Loss_Validation/events.out.tfevents.1695047437.msip-dell.ims.rwth-aachen.de.820235.14 differ
diff --git a/runs/fashion_trainer_20230918_163035/events.out.tfevents.1695047435.msip-dell.ims.rwth-aachen.de.820235.12 b/runs/fashion_trainer_20230918_163035/events.out.tfevents.1695047435.msip-dell.ims.rwth-aachen.de.820235.12
new file mode 100644
index 0000000000000000000000000000000000000000..14f0799368f489d9bcb14f14673e2adceeed00d5
Binary files /dev/null and b/runs/fashion_trainer_20230918_163035/events.out.tfevents.1695047435.msip-dell.ims.rwth-aachen.de.820235.12 differ
diff --git a/runs/fashion_trainer_20230918_163043/Training vs. Validation Loss_Training/events.out.tfevents.1695047446.msip-dell.ims.rwth-aachen.de.820235.16 b/runs/fashion_trainer_20230918_163043/Training vs. Validation Loss_Training/events.out.tfevents.1695047446.msip-dell.ims.rwth-aachen.de.820235.16
new file mode 100644
index 0000000000000000000000000000000000000000..b17566ea79dfe9ed494eac3fa18a6f93eb5fbbdb
Binary files /dev/null and b/runs/fashion_trainer_20230918_163043/Training vs. Validation Loss_Training/events.out.tfevents.1695047446.msip-dell.ims.rwth-aachen.de.820235.16 differ
diff --git a/runs/fashion_trainer_20230918_163043/Training vs. Validation Loss_Validation/events.out.tfevents.1695047446.msip-dell.ims.rwth-aachen.de.820235.17 b/runs/fashion_trainer_20230918_163043/Training vs. Validation Loss_Validation/events.out.tfevents.1695047446.msip-dell.ims.rwth-aachen.de.820235.17
new file mode 100644
index 0000000000000000000000000000000000000000..ac311816bb12d26c31759b2ba5151a2262d2237c
Binary files /dev/null and b/runs/fashion_trainer_20230918_163043/Training vs. Validation Loss_Validation/events.out.tfevents.1695047446.msip-dell.ims.rwth-aachen.de.820235.17 differ
diff --git a/runs/fashion_trainer_20230918_163043/events.out.tfevents.1695047443.msip-dell.ims.rwth-aachen.de.820235.15 b/runs/fashion_trainer_20230918_163043/events.out.tfevents.1695047443.msip-dell.ims.rwth-aachen.de.820235.15
new file mode 100644
index 0000000000000000000000000000000000000000..8b0b3391c75fd86c9401df6c0e902ef1917de5dd
Binary files /dev/null and b/runs/fashion_trainer_20230918_163043/events.out.tfevents.1695047443.msip-dell.ims.rwth-aachen.de.820235.15 differ
diff --git a/runs/fashion_trainer_20230918_163052/Training vs. Validation Loss_Training/events.out.tfevents.1695047455.msip-dell.ims.rwth-aachen.de.820235.19 b/runs/fashion_trainer_20230918_163052/Training vs. Validation Loss_Training/events.out.tfevents.1695047455.msip-dell.ims.rwth-aachen.de.820235.19
new file mode 100644
index 0000000000000000000000000000000000000000..5f1e9c4b6b9b87caf0f2981a4cf1c7b17ca2b93a
Binary files /dev/null and b/runs/fashion_trainer_20230918_163052/Training vs. Validation Loss_Training/events.out.tfevents.1695047455.msip-dell.ims.rwth-aachen.de.820235.19 differ
diff --git a/runs/fashion_trainer_20230918_163052/Training vs. Validation Loss_Validation/events.out.tfevents.1695047455.msip-dell.ims.rwth-aachen.de.820235.20 b/runs/fashion_trainer_20230918_163052/Training vs. Validation Loss_Validation/events.out.tfevents.1695047455.msip-dell.ims.rwth-aachen.de.820235.20
new file mode 100644
index 0000000000000000000000000000000000000000..2d6ab2fe1b35edcc7038a138ebfc9939e26ae443
Binary files /dev/null and b/runs/fashion_trainer_20230918_163052/Training vs. Validation Loss_Validation/events.out.tfevents.1695047455.msip-dell.ims.rwth-aachen.de.820235.20 differ
diff --git a/runs/fashion_trainer_20230918_163052/events.out.tfevents.1695047452.msip-dell.ims.rwth-aachen.de.820235.18 b/runs/fashion_trainer_20230918_163052/events.out.tfevents.1695047452.msip-dell.ims.rwth-aachen.de.820235.18
new file mode 100644
index 0000000000000000000000000000000000000000..2741d962981ad2a09d49cb7d2dc65392970750ff
Binary files /dev/null and b/runs/fashion_trainer_20230918_163052/events.out.tfevents.1695047452.msip-dell.ims.rwth-aachen.de.820235.18 differ
diff --git a/runs/fashion_trainer_20230918_163100/Training vs. Validation Loss_Training/events.out.tfevents.1695047463.msip-dell.ims.rwth-aachen.de.820235.22 b/runs/fashion_trainer_20230918_163100/Training vs. Validation Loss_Training/events.out.tfevents.1695047463.msip-dell.ims.rwth-aachen.de.820235.22
new file mode 100644
index 0000000000000000000000000000000000000000..170175e98a13ec5041b8fd305e2cb18a09631af3
Binary files /dev/null and b/runs/fashion_trainer_20230918_163100/Training vs. Validation Loss_Training/events.out.tfevents.1695047463.msip-dell.ims.rwth-aachen.de.820235.22 differ
diff --git a/runs/fashion_trainer_20230918_163100/Training vs. Validation Loss_Validation/events.out.tfevents.1695047463.msip-dell.ims.rwth-aachen.de.820235.23 b/runs/fashion_trainer_20230918_163100/Training vs. Validation Loss_Validation/events.out.tfevents.1695047463.msip-dell.ims.rwth-aachen.de.820235.23
new file mode 100644
index 0000000000000000000000000000000000000000..1d1721c790871b0d5d13610d1dd51c0b114d7dd2
Binary files /dev/null and b/runs/fashion_trainer_20230918_163100/Training vs. Validation Loss_Validation/events.out.tfevents.1695047463.msip-dell.ims.rwth-aachen.de.820235.23 differ
diff --git a/runs/fashion_trainer_20230918_163100/events.out.tfevents.1695047460.msip-dell.ims.rwth-aachen.de.820235.21 b/runs/fashion_trainer_20230918_163100/events.out.tfevents.1695047460.msip-dell.ims.rwth-aachen.de.820235.21
new file mode 100644
index 0000000000000000000000000000000000000000..5687e792e58d9c697f186c90811aadab0f2a2fba
Binary files /dev/null and b/runs/fashion_trainer_20230918_163100/events.out.tfevents.1695047460.msip-dell.ims.rwth-aachen.de.820235.21 differ
diff --git a/runs/fashion_trainer_20230918_163412/Training vs. Validation Loss_Training/events.out.tfevents.1695047654.msip-dell.ims.rwth-aachen.de.821308.1 b/runs/fashion_trainer_20230918_163412/Training vs. Validation Loss_Training/events.out.tfevents.1695047654.msip-dell.ims.rwth-aachen.de.821308.1
new file mode 100644
index 0000000000000000000000000000000000000000..dfba1a1540a44363e4b6846f89cf3480c3a9d19a
Binary files /dev/null and b/runs/fashion_trainer_20230918_163412/Training vs. Validation Loss_Training/events.out.tfevents.1695047654.msip-dell.ims.rwth-aachen.de.821308.1 differ
diff --git a/runs/fashion_trainer_20230918_163412/Training vs. Validation Loss_Validation/events.out.tfevents.1695047654.msip-dell.ims.rwth-aachen.de.821308.2 b/runs/fashion_trainer_20230918_163412/Training vs. Validation Loss_Validation/events.out.tfevents.1695047654.msip-dell.ims.rwth-aachen.de.821308.2
new file mode 100644
index 0000000000000000000000000000000000000000..5a8c4d02faa226b83ba8d5d3ea30db394bde641c
Binary files /dev/null and b/runs/fashion_trainer_20230918_163412/Training vs. Validation Loss_Validation/events.out.tfevents.1695047654.msip-dell.ims.rwth-aachen.de.821308.2 differ
diff --git a/runs/fashion_trainer_20230918_163412/events.out.tfevents.1695047652.msip-dell.ims.rwth-aachen.de.821308.0 b/runs/fashion_trainer_20230918_163412/events.out.tfevents.1695047652.msip-dell.ims.rwth-aachen.de.821308.0
new file mode 100644
index 0000000000000000000000000000000000000000..781b587774d87a0126dc7f7d984f2becd9da42b5
Binary files /dev/null and b/runs/fashion_trainer_20230918_163412/events.out.tfevents.1695047652.msip-dell.ims.rwth-aachen.de.821308.0 differ
diff --git a/runs/fashion_trainer_20230918_163419/Training vs. Validation Loss_Training/events.out.tfevents.1695047662.msip-dell.ims.rwth-aachen.de.821308.4 b/runs/fashion_trainer_20230918_163419/Training vs. Validation Loss_Training/events.out.tfevents.1695047662.msip-dell.ims.rwth-aachen.de.821308.4
new file mode 100644
index 0000000000000000000000000000000000000000..beaa3abf469b128bc92faba6410bbb1e470d212d
Binary files /dev/null and b/runs/fashion_trainer_20230918_163419/Training vs. Validation Loss_Training/events.out.tfevents.1695047662.msip-dell.ims.rwth-aachen.de.821308.4 differ
diff --git a/runs/fashion_trainer_20230918_163419/Training vs. Validation Loss_Validation/events.out.tfevents.1695047662.msip-dell.ims.rwth-aachen.de.821308.5 b/runs/fashion_trainer_20230918_163419/Training vs. Validation Loss_Validation/events.out.tfevents.1695047662.msip-dell.ims.rwth-aachen.de.821308.5
new file mode 100644
index 0000000000000000000000000000000000000000..ba3e0f51a23b5790a95ec0362548b106212f3126
Binary files /dev/null and b/runs/fashion_trainer_20230918_163419/Training vs. Validation Loss_Validation/events.out.tfevents.1695047662.msip-dell.ims.rwth-aachen.de.821308.5 differ
diff --git a/runs/fashion_trainer_20230918_163419/events.out.tfevents.1695047659.msip-dell.ims.rwth-aachen.de.821308.3 b/runs/fashion_trainer_20230918_163419/events.out.tfevents.1695047659.msip-dell.ims.rwth-aachen.de.821308.3
new file mode 100644
index 0000000000000000000000000000000000000000..de9dd320efe5482cfef72b026a2e1577974455c2
Binary files /dev/null and b/runs/fashion_trainer_20230918_163419/events.out.tfevents.1695047659.msip-dell.ims.rwth-aachen.de.821308.3 differ
diff --git a/runs/fashion_trainer_20230918_163428/Training vs. Validation Loss_Training/events.out.tfevents.1695047670.msip-dell.ims.rwth-aachen.de.821308.7 b/runs/fashion_trainer_20230918_163428/Training vs. Validation Loss_Training/events.out.tfevents.1695047670.msip-dell.ims.rwth-aachen.de.821308.7
new file mode 100644
index 0000000000000000000000000000000000000000..024343e694ae98f123929f85a5a28f28d6da607d
Binary files /dev/null and b/runs/fashion_trainer_20230918_163428/Training vs. Validation Loss_Training/events.out.tfevents.1695047670.msip-dell.ims.rwth-aachen.de.821308.7 differ
diff --git a/runs/fashion_trainer_20230918_163428/Training vs. Validation Loss_Validation/events.out.tfevents.1695047670.msip-dell.ims.rwth-aachen.de.821308.8 b/runs/fashion_trainer_20230918_163428/Training vs. Validation Loss_Validation/events.out.tfevents.1695047670.msip-dell.ims.rwth-aachen.de.821308.8
new file mode 100644
index 0000000000000000000000000000000000000000..aec064a9543aab20b3159e96ca3fa08418f4b4c6
Binary files /dev/null and b/runs/fashion_trainer_20230918_163428/Training vs. Validation Loss_Validation/events.out.tfevents.1695047670.msip-dell.ims.rwth-aachen.de.821308.8 differ
diff --git a/runs/fashion_trainer_20230918_163428/events.out.tfevents.1695047668.msip-dell.ims.rwth-aachen.de.821308.6 b/runs/fashion_trainer_20230918_163428/events.out.tfevents.1695047668.msip-dell.ims.rwth-aachen.de.821308.6
new file mode 100644
index 0000000000000000000000000000000000000000..f9e879310b1b1cb1a030719e86331ef9706c05cf
Binary files /dev/null and b/runs/fashion_trainer_20230918_163428/events.out.tfevents.1695047668.msip-dell.ims.rwth-aachen.de.821308.6 differ
diff --git a/runs/fashion_trainer_20230918_163436/Training vs. Validation Loss_Training/events.out.tfevents.1695047679.msip-dell.ims.rwth-aachen.de.821308.10 b/runs/fashion_trainer_20230918_163436/Training vs. Validation Loss_Training/events.out.tfevents.1695047679.msip-dell.ims.rwth-aachen.de.821308.10
new file mode 100644
index 0000000000000000000000000000000000000000..c4739b629b94f767218da9c6c67f3058b85133ee
Binary files /dev/null and b/runs/fashion_trainer_20230918_163436/Training vs. Validation Loss_Training/events.out.tfevents.1695047679.msip-dell.ims.rwth-aachen.de.821308.10 differ
diff --git a/runs/fashion_trainer_20230918_163436/Training vs. Validation Loss_Validation/events.out.tfevents.1695047679.msip-dell.ims.rwth-aachen.de.821308.11 b/runs/fashion_trainer_20230918_163436/Training vs. Validation Loss_Validation/events.out.tfevents.1695047679.msip-dell.ims.rwth-aachen.de.821308.11
new file mode 100644
index 0000000000000000000000000000000000000000..464e7f952a3f54839c1eb883be5b68492a228c9f
Binary files /dev/null and b/runs/fashion_trainer_20230918_163436/Training vs. Validation Loss_Validation/events.out.tfevents.1695047679.msip-dell.ims.rwth-aachen.de.821308.11 differ
diff --git a/runs/fashion_trainer_20230918_163436/events.out.tfevents.1695047676.msip-dell.ims.rwth-aachen.de.821308.9 b/runs/fashion_trainer_20230918_163436/events.out.tfevents.1695047676.msip-dell.ims.rwth-aachen.de.821308.9
new file mode 100644
index 0000000000000000000000000000000000000000..9d08c65a1cbe7ef40c055352cfb4b436a2730fb7
Binary files /dev/null and b/runs/fashion_trainer_20230918_163436/events.out.tfevents.1695047676.msip-dell.ims.rwth-aachen.de.821308.9 differ
diff --git a/runs/fashion_trainer_20230918_163444/Training vs. Validation Loss_Training/events.out.tfevents.1695047687.msip-dell.ims.rwth-aachen.de.821308.13 b/runs/fashion_trainer_20230918_163444/Training vs. Validation Loss_Training/events.out.tfevents.1695047687.msip-dell.ims.rwth-aachen.de.821308.13
new file mode 100644
index 0000000000000000000000000000000000000000..4875938a7ffdd7c63975f8f780634c78071c82ab
Binary files /dev/null and b/runs/fashion_trainer_20230918_163444/Training vs. Validation Loss_Training/events.out.tfevents.1695047687.msip-dell.ims.rwth-aachen.de.821308.13 differ
diff --git a/runs/fashion_trainer_20230918_163444/Training vs. Validation Loss_Validation/events.out.tfevents.1695047687.msip-dell.ims.rwth-aachen.de.821308.14 b/runs/fashion_trainer_20230918_163444/Training vs. Validation Loss_Validation/events.out.tfevents.1695047687.msip-dell.ims.rwth-aachen.de.821308.14
new file mode 100644
index 0000000000000000000000000000000000000000..5ebf1bf2db60d071cc744a3431b6e2038b2c8ab8
Binary files /dev/null and b/runs/fashion_trainer_20230918_163444/Training vs. Validation Loss_Validation/events.out.tfevents.1695047687.msip-dell.ims.rwth-aachen.de.821308.14 differ
diff --git a/runs/fashion_trainer_20230918_163444/events.out.tfevents.1695047684.msip-dell.ims.rwth-aachen.de.821308.12 b/runs/fashion_trainer_20230918_163444/events.out.tfevents.1695047684.msip-dell.ims.rwth-aachen.de.821308.12
new file mode 100644
index 0000000000000000000000000000000000000000..7a7772698de3ca9cae4a1b6b834dbd29a1c1ff6d
Binary files /dev/null and b/runs/fashion_trainer_20230918_163444/events.out.tfevents.1695047684.msip-dell.ims.rwth-aachen.de.821308.12 differ
diff --git a/runs/fashion_trainer_20230918_163452/Training vs. Validation Loss_Training/events.out.tfevents.1695047695.msip-dell.ims.rwth-aachen.de.821308.16 b/runs/fashion_trainer_20230918_163452/Training vs. Validation Loss_Training/events.out.tfevents.1695047695.msip-dell.ims.rwth-aachen.de.821308.16
new file mode 100644
index 0000000000000000000000000000000000000000..1b001ce0d44288e36edb415831070688dd1fd5b6
Binary files /dev/null and b/runs/fashion_trainer_20230918_163452/Training vs. Validation Loss_Training/events.out.tfevents.1695047695.msip-dell.ims.rwth-aachen.de.821308.16 differ
diff --git a/runs/fashion_trainer_20230918_163452/Training vs. Validation Loss_Validation/events.out.tfevents.1695047695.msip-dell.ims.rwth-aachen.de.821308.17 b/runs/fashion_trainer_20230918_163452/Training vs. Validation Loss_Validation/events.out.tfevents.1695047695.msip-dell.ims.rwth-aachen.de.821308.17
new file mode 100644
index 0000000000000000000000000000000000000000..66401dbc061454309acbfc2bba376a38539c0b33
Binary files /dev/null and b/runs/fashion_trainer_20230918_163452/Training vs. Validation Loss_Validation/events.out.tfevents.1695047695.msip-dell.ims.rwth-aachen.de.821308.17 differ
diff --git a/runs/fashion_trainer_20230918_163452/events.out.tfevents.1695047692.msip-dell.ims.rwth-aachen.de.821308.15 b/runs/fashion_trainer_20230918_163452/events.out.tfevents.1695047692.msip-dell.ims.rwth-aachen.de.821308.15
new file mode 100644
index 0000000000000000000000000000000000000000..0008aee446aa8b6d4d83c8dd4937887b783b9c9c
Binary files /dev/null and b/runs/fashion_trainer_20230918_163452/events.out.tfevents.1695047692.msip-dell.ims.rwth-aachen.de.821308.15 differ
diff --git a/runs/fashion_trainer_20230918_163500/Training vs. Validation Loss_Training/events.out.tfevents.1695047703.msip-dell.ims.rwth-aachen.de.821308.19 b/runs/fashion_trainer_20230918_163500/Training vs. Validation Loss_Training/events.out.tfevents.1695047703.msip-dell.ims.rwth-aachen.de.821308.19
new file mode 100644
index 0000000000000000000000000000000000000000..83b6c0e7440f2feab313fe81a90a7f0373733b0b
Binary files /dev/null and b/runs/fashion_trainer_20230918_163500/Training vs. Validation Loss_Training/events.out.tfevents.1695047703.msip-dell.ims.rwth-aachen.de.821308.19 differ
diff --git a/runs/fashion_trainer_20230918_163500/Training vs. Validation Loss_Validation/events.out.tfevents.1695047703.msip-dell.ims.rwth-aachen.de.821308.20 b/runs/fashion_trainer_20230918_163500/Training vs. Validation Loss_Validation/events.out.tfevents.1695047703.msip-dell.ims.rwth-aachen.de.821308.20
new file mode 100644
index 0000000000000000000000000000000000000000..fbe13fcf9efc9e3778040a1fc8d4a5544e358786
Binary files /dev/null and b/runs/fashion_trainer_20230918_163500/Training vs. Validation Loss_Validation/events.out.tfevents.1695047703.msip-dell.ims.rwth-aachen.de.821308.20 differ
diff --git a/runs/fashion_trainer_20230918_163500/events.out.tfevents.1695047700.msip-dell.ims.rwth-aachen.de.821308.18 b/runs/fashion_trainer_20230918_163500/events.out.tfevents.1695047700.msip-dell.ims.rwth-aachen.de.821308.18
new file mode 100644
index 0000000000000000000000000000000000000000..f09da8cbc1ff6360b8a649b1333b5d932ea17d61
Binary files /dev/null and b/runs/fashion_trainer_20230918_163500/events.out.tfevents.1695047700.msip-dell.ims.rwth-aachen.de.821308.18 differ
diff --git a/runs/fashion_trainer_20230918_163509/Training vs. Validation Loss_Training/events.out.tfevents.1695047712.msip-dell.ims.rwth-aachen.de.821308.22 b/runs/fashion_trainer_20230918_163509/Training vs. Validation Loss_Training/events.out.tfevents.1695047712.msip-dell.ims.rwth-aachen.de.821308.22
new file mode 100644
index 0000000000000000000000000000000000000000..baabb7b3a9d6c4680fee2b2b8bc07cf548dbeca2
Binary files /dev/null and b/runs/fashion_trainer_20230918_163509/Training vs. Validation Loss_Training/events.out.tfevents.1695047712.msip-dell.ims.rwth-aachen.de.821308.22 differ
diff --git a/runs/fashion_trainer_20230918_163509/Training vs. Validation Loss_Validation/events.out.tfevents.1695047712.msip-dell.ims.rwth-aachen.de.821308.23 b/runs/fashion_trainer_20230918_163509/Training vs. Validation Loss_Validation/events.out.tfevents.1695047712.msip-dell.ims.rwth-aachen.de.821308.23
new file mode 100644
index 0000000000000000000000000000000000000000..b1822fdbc5323f2ac9d977cf156e3288970b5ec3
Binary files /dev/null and b/runs/fashion_trainer_20230918_163509/Training vs. Validation Loss_Validation/events.out.tfevents.1695047712.msip-dell.ims.rwth-aachen.de.821308.23 differ
diff --git a/runs/fashion_trainer_20230918_163509/events.out.tfevents.1695047709.msip-dell.ims.rwth-aachen.de.821308.21 b/runs/fashion_trainer_20230918_163509/events.out.tfevents.1695047709.msip-dell.ims.rwth-aachen.de.821308.21
new file mode 100644
index 0000000000000000000000000000000000000000..0e7c4b11c04d41756f0fc81075c49d394a888846
Binary files /dev/null and b/runs/fashion_trainer_20230918_163509/events.out.tfevents.1695047709.msip-dell.ims.rwth-aachen.de.821308.21 differ
diff --git a/runs/fashion_trainer_20230918_165333/Training vs. Validation Loss_Training/events.out.tfevents.1695048816.msip-dell.ims.rwth-aachen.de.824983.1 b/runs/fashion_trainer_20230918_165333/Training vs. Validation Loss_Training/events.out.tfevents.1695048816.msip-dell.ims.rwth-aachen.de.824983.1
new file mode 100644
index 0000000000000000000000000000000000000000..92c3bf3b97dbe6469e894ddb1e6a7798aa2bc9a0
Binary files /dev/null and b/runs/fashion_trainer_20230918_165333/Training vs. Validation Loss_Training/events.out.tfevents.1695048816.msip-dell.ims.rwth-aachen.de.824983.1 differ
diff --git a/runs/fashion_trainer_20230918_165333/Training vs. Validation Loss_Validation/events.out.tfevents.1695048816.msip-dell.ims.rwth-aachen.de.824983.2 b/runs/fashion_trainer_20230918_165333/Training vs. Validation Loss_Validation/events.out.tfevents.1695048816.msip-dell.ims.rwth-aachen.de.824983.2
new file mode 100644
index 0000000000000000000000000000000000000000..393c242904b4d7bae2b80d34b76b52ebddd6acc1
Binary files /dev/null and b/runs/fashion_trainer_20230918_165333/Training vs. Validation Loss_Validation/events.out.tfevents.1695048816.msip-dell.ims.rwth-aachen.de.824983.2 differ
diff --git a/runs/fashion_trainer_20230918_165333/events.out.tfevents.1695048813.msip-dell.ims.rwth-aachen.de.824983.0 b/runs/fashion_trainer_20230918_165333/events.out.tfevents.1695048813.msip-dell.ims.rwth-aachen.de.824983.0
new file mode 100644
index 0000000000000000000000000000000000000000..c9b7ad27fcaef5cbf057e003c1d09aedd00d519e
Binary files /dev/null and b/runs/fashion_trainer_20230918_165333/events.out.tfevents.1695048813.msip-dell.ims.rwth-aachen.de.824983.0 differ
diff --git a/runs/fashion_trainer_20230918_165341/Training vs. Validation Loss_Training/events.out.tfevents.1695048823.msip-dell.ims.rwth-aachen.de.824983.4 b/runs/fashion_trainer_20230918_165341/Training vs. Validation Loss_Training/events.out.tfevents.1695048823.msip-dell.ims.rwth-aachen.de.824983.4
new file mode 100644
index 0000000000000000000000000000000000000000..2a2f52bf7e90119ca35d8764dd857779ae44dfbb
Binary files /dev/null and b/runs/fashion_trainer_20230918_165341/Training vs. Validation Loss_Training/events.out.tfevents.1695048823.msip-dell.ims.rwth-aachen.de.824983.4 differ
diff --git a/runs/fashion_trainer_20230918_165341/Training vs. Validation Loss_Validation/events.out.tfevents.1695048823.msip-dell.ims.rwth-aachen.de.824983.5 b/runs/fashion_trainer_20230918_165341/Training vs. Validation Loss_Validation/events.out.tfevents.1695048823.msip-dell.ims.rwth-aachen.de.824983.5
new file mode 100644
index 0000000000000000000000000000000000000000..3c4d0be7411afdce88c31abfac47041ff8513849
Binary files /dev/null and b/runs/fashion_trainer_20230918_165341/Training vs. Validation Loss_Validation/events.out.tfevents.1695048823.msip-dell.ims.rwth-aachen.de.824983.5 differ
diff --git a/runs/fashion_trainer_20230918_165341/events.out.tfevents.1695048821.msip-dell.ims.rwth-aachen.de.824983.3 b/runs/fashion_trainer_20230918_165341/events.out.tfevents.1695048821.msip-dell.ims.rwth-aachen.de.824983.3
new file mode 100644
index 0000000000000000000000000000000000000000..95ff95e2ad435345e85e25b8adc6fa61abbe0e45
Binary files /dev/null and b/runs/fashion_trainer_20230918_165341/events.out.tfevents.1695048821.msip-dell.ims.rwth-aachen.de.824983.3 differ
diff --git a/runs/fashion_trainer_20230918_165349/Training vs. Validation Loss_Training/events.out.tfevents.1695048831.msip-dell.ims.rwth-aachen.de.824983.7 b/runs/fashion_trainer_20230918_165349/Training vs. Validation Loss_Training/events.out.tfevents.1695048831.msip-dell.ims.rwth-aachen.de.824983.7
new file mode 100644
index 0000000000000000000000000000000000000000..9674d4ecfeeeb9bcf53737efae14ee3a24e49921
Binary files /dev/null and b/runs/fashion_trainer_20230918_165349/Training vs. Validation Loss_Training/events.out.tfevents.1695048831.msip-dell.ims.rwth-aachen.de.824983.7 differ
diff --git a/runs/fashion_trainer_20230918_165349/Training vs. Validation Loss_Validation/events.out.tfevents.1695048831.msip-dell.ims.rwth-aachen.de.824983.8 b/runs/fashion_trainer_20230918_165349/Training vs. Validation Loss_Validation/events.out.tfevents.1695048831.msip-dell.ims.rwth-aachen.de.824983.8
new file mode 100644
index 0000000000000000000000000000000000000000..398459f6c970397a58982bf13958236735ff3170
Binary files /dev/null and b/runs/fashion_trainer_20230918_165349/Training vs. Validation Loss_Validation/events.out.tfevents.1695048831.msip-dell.ims.rwth-aachen.de.824983.8 differ
diff --git a/runs/fashion_trainer_20230918_165349/events.out.tfevents.1695048829.msip-dell.ims.rwth-aachen.de.824983.6 b/runs/fashion_trainer_20230918_165349/events.out.tfevents.1695048829.msip-dell.ims.rwth-aachen.de.824983.6
new file mode 100644
index 0000000000000000000000000000000000000000..e4777b6a86fbaac17582ea6a7d22d4bcee2ea9ac
Binary files /dev/null and b/runs/fashion_trainer_20230918_165349/events.out.tfevents.1695048829.msip-dell.ims.rwth-aachen.de.824983.6 differ
diff --git a/runs/fashion_trainer_20230918_165357/Training vs. Validation Loss_Training/events.out.tfevents.1695048840.msip-dell.ims.rwth-aachen.de.824983.10 b/runs/fashion_trainer_20230918_165357/Training vs. Validation Loss_Training/events.out.tfevents.1695048840.msip-dell.ims.rwth-aachen.de.824983.10
new file mode 100644
index 0000000000000000000000000000000000000000..693e5bb6b128c16fd85b62fbfe06ed840884d399
Binary files /dev/null and b/runs/fashion_trainer_20230918_165357/Training vs. Validation Loss_Training/events.out.tfevents.1695048840.msip-dell.ims.rwth-aachen.de.824983.10 differ
diff --git a/runs/fashion_trainer_20230918_165357/Training vs. Validation Loss_Validation/events.out.tfevents.1695048840.msip-dell.ims.rwth-aachen.de.824983.11 b/runs/fashion_trainer_20230918_165357/Training vs. Validation Loss_Validation/events.out.tfevents.1695048840.msip-dell.ims.rwth-aachen.de.824983.11
new file mode 100644
index 0000000000000000000000000000000000000000..0d999f0d1daf4f7b16a631bfd206635c4a500b2f
Binary files /dev/null and b/runs/fashion_trainer_20230918_165357/Training vs. Validation Loss_Validation/events.out.tfevents.1695048840.msip-dell.ims.rwth-aachen.de.824983.11 differ
diff --git a/runs/fashion_trainer_20230918_165357/events.out.tfevents.1695048837.msip-dell.ims.rwth-aachen.de.824983.9 b/runs/fashion_trainer_20230918_165357/events.out.tfevents.1695048837.msip-dell.ims.rwth-aachen.de.824983.9
new file mode 100644
index 0000000000000000000000000000000000000000..02a6f7894dd64502b473d6ccc489494bfb7d8e75
Binary files /dev/null and b/runs/fashion_trainer_20230918_165357/events.out.tfevents.1695048837.msip-dell.ims.rwth-aachen.de.824983.9 differ
diff --git a/runs/fashion_trainer_20230918_165406/Training vs. Validation Loss_Training/events.out.tfevents.1695048848.msip-dell.ims.rwth-aachen.de.824983.13 b/runs/fashion_trainer_20230918_165406/Training vs. Validation Loss_Training/events.out.tfevents.1695048848.msip-dell.ims.rwth-aachen.de.824983.13
new file mode 100644
index 0000000000000000000000000000000000000000..74d5e574bddc9db5237094db500174d697b2142d
Binary files /dev/null and b/runs/fashion_trainer_20230918_165406/Training vs. Validation Loss_Training/events.out.tfevents.1695048848.msip-dell.ims.rwth-aachen.de.824983.13 differ
diff --git a/runs/fashion_trainer_20230918_165406/Training vs. Validation Loss_Validation/events.out.tfevents.1695048848.msip-dell.ims.rwth-aachen.de.824983.14 b/runs/fashion_trainer_20230918_165406/Training vs. Validation Loss_Validation/events.out.tfevents.1695048848.msip-dell.ims.rwth-aachen.de.824983.14
new file mode 100644
index 0000000000000000000000000000000000000000..529d74f21b5276b2f4a326a80cf1b44d64ba2cd8
Binary files /dev/null and b/runs/fashion_trainer_20230918_165406/Training vs. Validation Loss_Validation/events.out.tfevents.1695048848.msip-dell.ims.rwth-aachen.de.824983.14 differ
diff --git a/runs/fashion_trainer_20230918_165406/events.out.tfevents.1695048846.msip-dell.ims.rwth-aachen.de.824983.12 b/runs/fashion_trainer_20230918_165406/events.out.tfevents.1695048846.msip-dell.ims.rwth-aachen.de.824983.12
new file mode 100644
index 0000000000000000000000000000000000000000..7f67733d71b63f464eca8e1c5ce1044bc81ab71a
Binary files /dev/null and b/runs/fashion_trainer_20230918_165406/events.out.tfevents.1695048846.msip-dell.ims.rwth-aachen.de.824983.12 differ
diff --git a/runs/fashion_trainer_20230918_165414/Training vs. Validation Loss_Training/events.out.tfevents.1695048856.msip-dell.ims.rwth-aachen.de.824983.16 b/runs/fashion_trainer_20230918_165414/Training vs. Validation Loss_Training/events.out.tfevents.1695048856.msip-dell.ims.rwth-aachen.de.824983.16
new file mode 100644
index 0000000000000000000000000000000000000000..c8fc28011e3c1db39fdbfd6a24a5d6704fdcc898
Binary files /dev/null and b/runs/fashion_trainer_20230918_165414/Training vs. Validation Loss_Training/events.out.tfevents.1695048856.msip-dell.ims.rwth-aachen.de.824983.16 differ
diff --git a/runs/fashion_trainer_20230918_165414/Training vs. Validation Loss_Validation/events.out.tfevents.1695048856.msip-dell.ims.rwth-aachen.de.824983.17 b/runs/fashion_trainer_20230918_165414/Training vs. Validation Loss_Validation/events.out.tfevents.1695048856.msip-dell.ims.rwth-aachen.de.824983.17
new file mode 100644
index 0000000000000000000000000000000000000000..1f3b57a265ca2d4dd397e34da67f5f51ad470e76
Binary files /dev/null and b/runs/fashion_trainer_20230918_165414/Training vs. Validation Loss_Validation/events.out.tfevents.1695048856.msip-dell.ims.rwth-aachen.de.824983.17 differ
diff --git a/runs/fashion_trainer_20230918_165414/events.out.tfevents.1695048854.msip-dell.ims.rwth-aachen.de.824983.15 b/runs/fashion_trainer_20230918_165414/events.out.tfevents.1695048854.msip-dell.ims.rwth-aachen.de.824983.15
new file mode 100644
index 0000000000000000000000000000000000000000..747d632d4f65b115dee542fff83baf9f1e929aea
Binary files /dev/null and b/runs/fashion_trainer_20230918_165414/events.out.tfevents.1695048854.msip-dell.ims.rwth-aachen.de.824983.15 differ
diff --git a/runs/fashion_trainer_20230918_165422/Training vs. Validation Loss_Training/events.out.tfevents.1695048865.msip-dell.ims.rwth-aachen.de.824983.19 b/runs/fashion_trainer_20230918_165422/Training vs. Validation Loss_Training/events.out.tfevents.1695048865.msip-dell.ims.rwth-aachen.de.824983.19
new file mode 100644
index 0000000000000000000000000000000000000000..55150ca0e3fe7da021504f543d92ccde1529236a
Binary files /dev/null and b/runs/fashion_trainer_20230918_165422/Training vs. Validation Loss_Training/events.out.tfevents.1695048865.msip-dell.ims.rwth-aachen.de.824983.19 differ
diff --git a/runs/fashion_trainer_20230918_165422/Training vs. Validation Loss_Validation/events.out.tfevents.1695048865.msip-dell.ims.rwth-aachen.de.824983.20 b/runs/fashion_trainer_20230918_165422/Training vs. Validation Loss_Validation/events.out.tfevents.1695048865.msip-dell.ims.rwth-aachen.de.824983.20
new file mode 100644
index 0000000000000000000000000000000000000000..9847c560dbc589cc0fbd293e076aefb24094ccba
Binary files /dev/null and b/runs/fashion_trainer_20230918_165422/Training vs. Validation Loss_Validation/events.out.tfevents.1695048865.msip-dell.ims.rwth-aachen.de.824983.20 differ
diff --git a/runs/fashion_trainer_20230918_165422/events.out.tfevents.1695048862.msip-dell.ims.rwth-aachen.de.824983.18 b/runs/fashion_trainer_20230918_165422/events.out.tfevents.1695048862.msip-dell.ims.rwth-aachen.de.824983.18
new file mode 100644
index 0000000000000000000000000000000000000000..f62d36c1cd631b60ff4c1c882e094ebca460f496
Binary files /dev/null and b/runs/fashion_trainer_20230918_165422/events.out.tfevents.1695048862.msip-dell.ims.rwth-aachen.de.824983.18 differ
diff --git a/runs/fashion_trainer_20230918_165430/Training vs. Validation Loss_Training/events.out.tfevents.1695048873.msip-dell.ims.rwth-aachen.de.824983.22 b/runs/fashion_trainer_20230918_165430/Training vs. Validation Loss_Training/events.out.tfevents.1695048873.msip-dell.ims.rwth-aachen.de.824983.22
new file mode 100644
index 0000000000000000000000000000000000000000..9ccaefb6806493dbb1c886a2f455400a556c8413
Binary files /dev/null and b/runs/fashion_trainer_20230918_165430/Training vs. Validation Loss_Training/events.out.tfevents.1695048873.msip-dell.ims.rwth-aachen.de.824983.22 differ
diff --git a/runs/fashion_trainer_20230918_165430/Training vs. Validation Loss_Validation/events.out.tfevents.1695048873.msip-dell.ims.rwth-aachen.de.824983.23 b/runs/fashion_trainer_20230918_165430/Training vs. Validation Loss_Validation/events.out.tfevents.1695048873.msip-dell.ims.rwth-aachen.de.824983.23
new file mode 100644
index 0000000000000000000000000000000000000000..f58373995d5dd79a4a0e914c7f80ec0468002fe2
Binary files /dev/null and b/runs/fashion_trainer_20230918_165430/Training vs. Validation Loss_Validation/events.out.tfevents.1695048873.msip-dell.ims.rwth-aachen.de.824983.23 differ
diff --git a/runs/fashion_trainer_20230918_165430/events.out.tfevents.1695048870.msip-dell.ims.rwth-aachen.de.824983.21 b/runs/fashion_trainer_20230918_165430/events.out.tfevents.1695048870.msip-dell.ims.rwth-aachen.de.824983.21
new file mode 100644
index 0000000000000000000000000000000000000000..87ab3a66986b2026078f922cf26f719a0407f9ed
Binary files /dev/null and b/runs/fashion_trainer_20230918_165430/events.out.tfevents.1695048870.msip-dell.ims.rwth-aachen.de.824983.21 differ
diff --git a/runs/fashion_trainer_20230918_165707/Training vs. Validation Loss_Training/events.out.tfevents.1695049029.msip-dell.ims.rwth-aachen.de.825703.1 b/runs/fashion_trainer_20230918_165707/Training vs. Validation Loss_Training/events.out.tfevents.1695049029.msip-dell.ims.rwth-aachen.de.825703.1
new file mode 100644
index 0000000000000000000000000000000000000000..83f3217f84ff7623a2671a83288aa875844d5b62
Binary files /dev/null and b/runs/fashion_trainer_20230918_165707/Training vs. Validation Loss_Training/events.out.tfevents.1695049029.msip-dell.ims.rwth-aachen.de.825703.1 differ
diff --git a/runs/fashion_trainer_20230918_165707/Training vs. Validation Loss_Validation/events.out.tfevents.1695049029.msip-dell.ims.rwth-aachen.de.825703.2 b/runs/fashion_trainer_20230918_165707/Training vs. Validation Loss_Validation/events.out.tfevents.1695049029.msip-dell.ims.rwth-aachen.de.825703.2
new file mode 100644
index 0000000000000000000000000000000000000000..1a0b4e17e10bd14a60c00d1686a6ea24122bfab8
Binary files /dev/null and b/runs/fashion_trainer_20230918_165707/Training vs. Validation Loss_Validation/events.out.tfevents.1695049029.msip-dell.ims.rwth-aachen.de.825703.2 differ
diff --git a/runs/fashion_trainer_20230918_165707/events.out.tfevents.1695049027.msip-dell.ims.rwth-aachen.de.825703.0 b/runs/fashion_trainer_20230918_165707/events.out.tfevents.1695049027.msip-dell.ims.rwth-aachen.de.825703.0
new file mode 100644
index 0000000000000000000000000000000000000000..443116db4b5c31e7704cf74f69b50e32cf5dd607
Binary files /dev/null and b/runs/fashion_trainer_20230918_165707/events.out.tfevents.1695049027.msip-dell.ims.rwth-aachen.de.825703.0 differ
diff --git a/runs/fashion_trainer_20230918_165757/Training vs. Validation Loss_Training/events.out.tfevents.1695049080.msip-dell.ims.rwth-aachen.de.825703.4 b/runs/fashion_trainer_20230918_165757/Training vs. Validation Loss_Training/events.out.tfevents.1695049080.msip-dell.ims.rwth-aachen.de.825703.4
new file mode 100644
index 0000000000000000000000000000000000000000..4bed84da84518c4f63b13e785c020e4e6ae37734
Binary files /dev/null and b/runs/fashion_trainer_20230918_165757/Training vs. Validation Loss_Training/events.out.tfevents.1695049080.msip-dell.ims.rwth-aachen.de.825703.4 differ
diff --git a/runs/fashion_trainer_20230918_165757/Training vs. Validation Loss_Validation/events.out.tfevents.1695049080.msip-dell.ims.rwth-aachen.de.825703.5 b/runs/fashion_trainer_20230918_165757/Training vs. Validation Loss_Validation/events.out.tfevents.1695049080.msip-dell.ims.rwth-aachen.de.825703.5
new file mode 100644
index 0000000000000000000000000000000000000000..c18ac72aa5ea018b3732b27d750307d2cfb11518
Binary files /dev/null and b/runs/fashion_trainer_20230918_165757/Training vs. Validation Loss_Validation/events.out.tfevents.1695049080.msip-dell.ims.rwth-aachen.de.825703.5 differ
diff --git a/runs/fashion_trainer_20230918_165757/events.out.tfevents.1695049077.msip-dell.ims.rwth-aachen.de.825703.3 b/runs/fashion_trainer_20230918_165757/events.out.tfevents.1695049077.msip-dell.ims.rwth-aachen.de.825703.3
new file mode 100644
index 0000000000000000000000000000000000000000..9879caf53f814f89bb834ec7ee30b53b80cf1bce
Binary files /dev/null and b/runs/fashion_trainer_20230918_165757/events.out.tfevents.1695049077.msip-dell.ims.rwth-aachen.de.825703.3 differ
diff --git a/runs/fashion_trainer_20230918_165849/Training vs. Validation Loss_Training/events.out.tfevents.1695049131.msip-dell.ims.rwth-aachen.de.825703.7 b/runs/fashion_trainer_20230918_165849/Training vs. Validation Loss_Training/events.out.tfevents.1695049131.msip-dell.ims.rwth-aachen.de.825703.7
new file mode 100644
index 0000000000000000000000000000000000000000..fc5424e9c80b5edd22da67a2a708c388c3d5e5a8
Binary files /dev/null and b/runs/fashion_trainer_20230918_165849/Training vs. Validation Loss_Training/events.out.tfevents.1695049131.msip-dell.ims.rwth-aachen.de.825703.7 differ
diff --git a/runs/fashion_trainer_20230918_165849/Training vs. Validation Loss_Validation/events.out.tfevents.1695049131.msip-dell.ims.rwth-aachen.de.825703.8 b/runs/fashion_trainer_20230918_165849/Training vs. Validation Loss_Validation/events.out.tfevents.1695049131.msip-dell.ims.rwth-aachen.de.825703.8
new file mode 100644
index 0000000000000000000000000000000000000000..2a34a6a0ae69a61af844e51325e3f4605adc6398
Binary files /dev/null and b/runs/fashion_trainer_20230918_165849/Training vs. Validation Loss_Validation/events.out.tfevents.1695049131.msip-dell.ims.rwth-aachen.de.825703.8 differ
diff --git a/runs/fashion_trainer_20230918_165849/events.out.tfevents.1695049129.msip-dell.ims.rwth-aachen.de.825703.6 b/runs/fashion_trainer_20230918_165849/events.out.tfevents.1695049129.msip-dell.ims.rwth-aachen.de.825703.6
new file mode 100644
index 0000000000000000000000000000000000000000..5c46a318e8d6a3c8825efbaf874b458c143a0f2a
Binary files /dev/null and b/runs/fashion_trainer_20230918_165849/events.out.tfevents.1695049129.msip-dell.ims.rwth-aachen.de.825703.6 differ
diff --git a/runs/fashion_trainer_20230918_165943/Training vs. Validation Loss_Training/events.out.tfevents.1695049185.msip-dell.ims.rwth-aachen.de.825703.10 b/runs/fashion_trainer_20230918_165943/Training vs. Validation Loss_Training/events.out.tfevents.1695049185.msip-dell.ims.rwth-aachen.de.825703.10
new file mode 100644
index 0000000000000000000000000000000000000000..78f2b6d438252c7687eaf5e1625c0cf8b91d6dfd
Binary files /dev/null and b/runs/fashion_trainer_20230918_165943/Training vs. Validation Loss_Training/events.out.tfevents.1695049185.msip-dell.ims.rwth-aachen.de.825703.10 differ
diff --git a/runs/fashion_trainer_20230918_165943/Training vs. Validation Loss_Validation/events.out.tfevents.1695049185.msip-dell.ims.rwth-aachen.de.825703.11 b/runs/fashion_trainer_20230918_165943/Training vs. Validation Loss_Validation/events.out.tfevents.1695049185.msip-dell.ims.rwth-aachen.de.825703.11
new file mode 100644
index 0000000000000000000000000000000000000000..8db32a53a6df57e1cc01b133417f2a9ae3206d76
Binary files /dev/null and b/runs/fashion_trainer_20230918_165943/Training vs. Validation Loss_Validation/events.out.tfevents.1695049185.msip-dell.ims.rwth-aachen.de.825703.11 differ
diff --git a/runs/fashion_trainer_20230918_165943/events.out.tfevents.1695049183.msip-dell.ims.rwth-aachen.de.825703.9 b/runs/fashion_trainer_20230918_165943/events.out.tfevents.1695049183.msip-dell.ims.rwth-aachen.de.825703.9
new file mode 100644
index 0000000000000000000000000000000000000000..c3af188b868a847b1c4153b8392729b4e6ce0184
Binary files /dev/null and b/runs/fashion_trainer_20230918_165943/events.out.tfevents.1695049183.msip-dell.ims.rwth-aachen.de.825703.9 differ
diff --git a/runs/fashion_trainer_20230918_170040/Training vs. Validation Loss_Training/events.out.tfevents.1695049243.msip-dell.ims.rwth-aachen.de.825703.13 b/runs/fashion_trainer_20230918_170040/Training vs. Validation Loss_Training/events.out.tfevents.1695049243.msip-dell.ims.rwth-aachen.de.825703.13
new file mode 100644
index 0000000000000000000000000000000000000000..1f1f9e7b064eaae6d1d5ea896a2dc4718c1a18ef
Binary files /dev/null and b/runs/fashion_trainer_20230918_170040/Training vs. Validation Loss_Training/events.out.tfevents.1695049243.msip-dell.ims.rwth-aachen.de.825703.13 differ
diff --git a/runs/fashion_trainer_20230918_170040/Training vs. Validation Loss_Validation/events.out.tfevents.1695049243.msip-dell.ims.rwth-aachen.de.825703.14 b/runs/fashion_trainer_20230918_170040/Training vs. Validation Loss_Validation/events.out.tfevents.1695049243.msip-dell.ims.rwth-aachen.de.825703.14
new file mode 100644
index 0000000000000000000000000000000000000000..5a2e03a2870791b597d917ea0c7a8113095e97cf
Binary files /dev/null and b/runs/fashion_trainer_20230918_170040/Training vs. Validation Loss_Validation/events.out.tfevents.1695049243.msip-dell.ims.rwth-aachen.de.825703.14 differ
diff --git a/runs/fashion_trainer_20230918_170040/events.out.tfevents.1695049240.msip-dell.ims.rwth-aachen.de.825703.12 b/runs/fashion_trainer_20230918_170040/events.out.tfevents.1695049240.msip-dell.ims.rwth-aachen.de.825703.12
new file mode 100644
index 0000000000000000000000000000000000000000..bbc13334967a5f04ee35e3f97f0ed4032e0a0f3f
Binary files /dev/null and b/runs/fashion_trainer_20230918_170040/events.out.tfevents.1695049240.msip-dell.ims.rwth-aachen.de.825703.12 differ
diff --git a/runs/fashion_trainer_20230918_170136/Training vs. Validation Loss_Training/events.out.tfevents.1695049299.msip-dell.ims.rwth-aachen.de.825703.16 b/runs/fashion_trainer_20230918_170136/Training vs. Validation Loss_Training/events.out.tfevents.1695049299.msip-dell.ims.rwth-aachen.de.825703.16
new file mode 100644
index 0000000000000000000000000000000000000000..2a6e76de551638d0c42b9ea76a9de8e627bbc739
Binary files /dev/null and b/runs/fashion_trainer_20230918_170136/Training vs. Validation Loss_Training/events.out.tfevents.1695049299.msip-dell.ims.rwth-aachen.de.825703.16 differ
diff --git a/runs/fashion_trainer_20230918_170136/Training vs. Validation Loss_Validation/events.out.tfevents.1695049299.msip-dell.ims.rwth-aachen.de.825703.17 b/runs/fashion_trainer_20230918_170136/Training vs. Validation Loss_Validation/events.out.tfevents.1695049299.msip-dell.ims.rwth-aachen.de.825703.17
new file mode 100644
index 0000000000000000000000000000000000000000..ba63641b7e4a67ec8ad00b321cd3a6bd2f259adf
Binary files /dev/null and b/runs/fashion_trainer_20230918_170136/Training vs. Validation Loss_Validation/events.out.tfevents.1695049299.msip-dell.ims.rwth-aachen.de.825703.17 differ
diff --git a/runs/fashion_trainer_20230918_170136/events.out.tfevents.1695049296.msip-dell.ims.rwth-aachen.de.825703.15 b/runs/fashion_trainer_20230918_170136/events.out.tfevents.1695049296.msip-dell.ims.rwth-aachen.de.825703.15
new file mode 100644
index 0000000000000000000000000000000000000000..eed70c4a0388bafa02f51998ea42f3d3cc443fdc
Binary files /dev/null and b/runs/fashion_trainer_20230918_170136/events.out.tfevents.1695049296.msip-dell.ims.rwth-aachen.de.825703.15 differ
diff --git a/runs/fashion_trainer_20230918_171210/Training vs. Validation Loss_Training/events.out.tfevents.1695049933.msip-dell.ims.rwth-aachen.de.828029.1 b/runs/fashion_trainer_20230918_171210/Training vs. Validation Loss_Training/events.out.tfevents.1695049933.msip-dell.ims.rwth-aachen.de.828029.1
new file mode 100644
index 0000000000000000000000000000000000000000..8227e73adbf08d3b6209c67ad874e732137015cc
Binary files /dev/null and b/runs/fashion_trainer_20230918_171210/Training vs. Validation Loss_Training/events.out.tfevents.1695049933.msip-dell.ims.rwth-aachen.de.828029.1 differ
diff --git a/runs/fashion_trainer_20230918_171210/Training vs. Validation Loss_Validation/events.out.tfevents.1695049933.msip-dell.ims.rwth-aachen.de.828029.2 b/runs/fashion_trainer_20230918_171210/Training vs. Validation Loss_Validation/events.out.tfevents.1695049933.msip-dell.ims.rwth-aachen.de.828029.2
new file mode 100644
index 0000000000000000000000000000000000000000..7854585fe14c09afcc910c37d91fa16e0be0b1a1
Binary files /dev/null and b/runs/fashion_trainer_20230918_171210/Training vs. Validation Loss_Validation/events.out.tfevents.1695049933.msip-dell.ims.rwth-aachen.de.828029.2 differ
diff --git a/runs/fashion_trainer_20230918_171210/events.out.tfevents.1695049930.msip-dell.ims.rwth-aachen.de.828029.0 b/runs/fashion_trainer_20230918_171210/events.out.tfevents.1695049930.msip-dell.ims.rwth-aachen.de.828029.0
new file mode 100644
index 0000000000000000000000000000000000000000..ee387ba5d2b0ea12b5e50da7d281e94bde84cf21
Binary files /dev/null and b/runs/fashion_trainer_20230918_171210/events.out.tfevents.1695049930.msip-dell.ims.rwth-aachen.de.828029.0 differ
diff --git a/runs/fashion_trainer_20230918_171300/Training vs. Validation Loss_Training/events.out.tfevents.1695049982.msip-dell.ims.rwth-aachen.de.828424.1 b/runs/fashion_trainer_20230918_171300/Training vs. Validation Loss_Training/events.out.tfevents.1695049982.msip-dell.ims.rwth-aachen.de.828424.1
new file mode 100644
index 0000000000000000000000000000000000000000..0da064b0bfbe01f551b8e38a9cc08a5c13265193
Binary files /dev/null and b/runs/fashion_trainer_20230918_171300/Training vs. Validation Loss_Training/events.out.tfevents.1695049982.msip-dell.ims.rwth-aachen.de.828424.1 differ
diff --git a/runs/fashion_trainer_20230918_171300/Training vs. Validation Loss_Validation/events.out.tfevents.1695049982.msip-dell.ims.rwth-aachen.de.828424.2 b/runs/fashion_trainer_20230918_171300/Training vs. Validation Loss_Validation/events.out.tfevents.1695049982.msip-dell.ims.rwth-aachen.de.828424.2
new file mode 100644
index 0000000000000000000000000000000000000000..c6fd8fe48336cdfaa5475392148af59787423b88
Binary files /dev/null and b/runs/fashion_trainer_20230918_171300/Training vs. Validation Loss_Validation/events.out.tfevents.1695049982.msip-dell.ims.rwth-aachen.de.828424.2 differ
diff --git a/runs/fashion_trainer_20230918_171300/events.out.tfevents.1695049980.msip-dell.ims.rwth-aachen.de.828424.0 b/runs/fashion_trainer_20230918_171300/events.out.tfevents.1695049980.msip-dell.ims.rwth-aachen.de.828424.0
new file mode 100644
index 0000000000000000000000000000000000000000..0d52203be3d9c6af2d9b990a0da6895e0fbc4a19
Binary files /dev/null and b/runs/fashion_trainer_20230918_171300/events.out.tfevents.1695049980.msip-dell.ims.rwth-aachen.de.828424.0 differ
diff --git a/runs/fashion_trainer_20230918_171619/Training vs. Validation Loss_Training/events.out.tfevents.1695050182.msip-dell.ims.rwth-aachen.de.828904.1 b/runs/fashion_trainer_20230918_171619/Training vs. Validation Loss_Training/events.out.tfevents.1695050182.msip-dell.ims.rwth-aachen.de.828904.1
new file mode 100644
index 0000000000000000000000000000000000000000..8b09df41608ba079442b8b2a65372b329d815004
Binary files /dev/null and b/runs/fashion_trainer_20230918_171619/Training vs. Validation Loss_Training/events.out.tfevents.1695050182.msip-dell.ims.rwth-aachen.de.828904.1 differ
diff --git a/runs/fashion_trainer_20230918_171619/Training vs. Validation Loss_Validation/events.out.tfevents.1695050182.msip-dell.ims.rwth-aachen.de.828904.2 b/runs/fashion_trainer_20230918_171619/Training vs. Validation Loss_Validation/events.out.tfevents.1695050182.msip-dell.ims.rwth-aachen.de.828904.2
new file mode 100644
index 0000000000000000000000000000000000000000..3a6db5ffc39760cba6976314091896ed13731769
Binary files /dev/null and b/runs/fashion_trainer_20230918_171619/Training vs. Validation Loss_Validation/events.out.tfevents.1695050182.msip-dell.ims.rwth-aachen.de.828904.2 differ
diff --git a/runs/fashion_trainer_20230918_171619/events.out.tfevents.1695050179.msip-dell.ims.rwth-aachen.de.828904.0 b/runs/fashion_trainer_20230918_171619/events.out.tfevents.1695050179.msip-dell.ims.rwth-aachen.de.828904.0
new file mode 100644
index 0000000000000000000000000000000000000000..9c745b2eecd4cbccbb0094f1c7d05fb04a49b417
Binary files /dev/null and b/runs/fashion_trainer_20230918_171619/events.out.tfevents.1695050179.msip-dell.ims.rwth-aachen.de.828904.0 differ
diff --git a/runs/fashion_trainer_20230918_171647/Training vs. Validation Loss_Training/events.out.tfevents.1695050210.msip-dell.ims.rwth-aachen.de.829055.1 b/runs/fashion_trainer_20230918_171647/Training vs. Validation Loss_Training/events.out.tfevents.1695050210.msip-dell.ims.rwth-aachen.de.829055.1
new file mode 100644
index 0000000000000000000000000000000000000000..7a2b52b7a17e4fe779ff3240b94c44f34b885f97
Binary files /dev/null and b/runs/fashion_trainer_20230918_171647/Training vs. Validation Loss_Training/events.out.tfevents.1695050210.msip-dell.ims.rwth-aachen.de.829055.1 differ
diff --git a/runs/fashion_trainer_20230918_171647/Training vs. Validation Loss_Validation/events.out.tfevents.1695050210.msip-dell.ims.rwth-aachen.de.829055.2 b/runs/fashion_trainer_20230918_171647/Training vs. Validation Loss_Validation/events.out.tfevents.1695050210.msip-dell.ims.rwth-aachen.de.829055.2
new file mode 100644
index 0000000000000000000000000000000000000000..2f74aca8d402b0e64bfa0550779e842e5140a9a0
Binary files /dev/null and b/runs/fashion_trainer_20230918_171647/Training vs. Validation Loss_Validation/events.out.tfevents.1695050210.msip-dell.ims.rwth-aachen.de.829055.2 differ
diff --git a/runs/fashion_trainer_20230918_171647/events.out.tfevents.1695050207.msip-dell.ims.rwth-aachen.de.829055.0 b/runs/fashion_trainer_20230918_171647/events.out.tfevents.1695050207.msip-dell.ims.rwth-aachen.de.829055.0
new file mode 100644
index 0000000000000000000000000000000000000000..cbe6a7de00735756c40e89f43e9a0378a8490dae
Binary files /dev/null and b/runs/fashion_trainer_20230918_171647/events.out.tfevents.1695050207.msip-dell.ims.rwth-aachen.de.829055.0 differ
diff --git a/runs/fashion_trainer_20230918_171717/Training vs. Validation Loss_Training/events.out.tfevents.1695050240.msip-dell.ims.rwth-aachen.de.829219.1 b/runs/fashion_trainer_20230918_171717/Training vs. Validation Loss_Training/events.out.tfevents.1695050240.msip-dell.ims.rwth-aachen.de.829219.1
new file mode 100644
index 0000000000000000000000000000000000000000..722ab321b218f90bb7c1fc08c3150376a39b4427
Binary files /dev/null and b/runs/fashion_trainer_20230918_171717/Training vs. Validation Loss_Training/events.out.tfevents.1695050240.msip-dell.ims.rwth-aachen.de.829219.1 differ
diff --git a/runs/fashion_trainer_20230918_171717/Training vs. Validation Loss_Validation/events.out.tfevents.1695050240.msip-dell.ims.rwth-aachen.de.829219.2 b/runs/fashion_trainer_20230918_171717/Training vs. Validation Loss_Validation/events.out.tfevents.1695050240.msip-dell.ims.rwth-aachen.de.829219.2
new file mode 100644
index 0000000000000000000000000000000000000000..db61319dfe267a1870cfea922f09ebab02af9d8f
Binary files /dev/null and b/runs/fashion_trainer_20230918_171717/Training vs. Validation Loss_Validation/events.out.tfevents.1695050240.msip-dell.ims.rwth-aachen.de.829219.2 differ
diff --git a/runs/fashion_trainer_20230918_171717/events.out.tfevents.1695050237.msip-dell.ims.rwth-aachen.de.829219.0 b/runs/fashion_trainer_20230918_171717/events.out.tfevents.1695050237.msip-dell.ims.rwth-aachen.de.829219.0
new file mode 100644
index 0000000000000000000000000000000000000000..055e5d0dacead8da9980facfd119fdcecbf185d7
Binary files /dev/null and b/runs/fashion_trainer_20230918_171717/events.out.tfevents.1695050237.msip-dell.ims.rwth-aachen.de.829219.0 differ
diff --git a/runs/fashion_trainer_20230918_172735/Training vs. Validation Loss_Training/events.out.tfevents.1695050857.msip-dell.ims.rwth-aachen.de.830703.1 b/runs/fashion_trainer_20230918_172735/Training vs. Validation Loss_Training/events.out.tfevents.1695050857.msip-dell.ims.rwth-aachen.de.830703.1
new file mode 100644
index 0000000000000000000000000000000000000000..487d15189dd4ba4aee3ea312abe472d2bd597ec7
Binary files /dev/null and b/runs/fashion_trainer_20230918_172735/Training vs. Validation Loss_Training/events.out.tfevents.1695050857.msip-dell.ims.rwth-aachen.de.830703.1 differ
diff --git a/runs/fashion_trainer_20230918_172735/Training vs. Validation Loss_Validation/events.out.tfevents.1695050857.msip-dell.ims.rwth-aachen.de.830703.2 b/runs/fashion_trainer_20230918_172735/Training vs. Validation Loss_Validation/events.out.tfevents.1695050857.msip-dell.ims.rwth-aachen.de.830703.2
new file mode 100644
index 0000000000000000000000000000000000000000..a7b43620e1ff7582a9fb2c9fecbd288a6d93ecc5
Binary files /dev/null and b/runs/fashion_trainer_20230918_172735/Training vs. Validation Loss_Validation/events.out.tfevents.1695050857.msip-dell.ims.rwth-aachen.de.830703.2 differ
diff --git a/runs/fashion_trainer_20230918_172735/events.out.tfevents.1695050855.msip-dell.ims.rwth-aachen.de.830703.0 b/runs/fashion_trainer_20230918_172735/events.out.tfevents.1695050855.msip-dell.ims.rwth-aachen.de.830703.0
new file mode 100644
index 0000000000000000000000000000000000000000..51542ac4d7bbfdea4101908f2390315cdd374652
Binary files /dev/null and b/runs/fashion_trainer_20230918_172735/events.out.tfevents.1695050855.msip-dell.ims.rwth-aachen.de.830703.0 differ
diff --git a/runs/fashion_trainer_20230918_175943/Training vs. Validation Loss_Training/events.out.tfevents.1695052785.msip-dell.ims.rwth-aachen.de.834927.1 b/runs/fashion_trainer_20230918_175943/Training vs. Validation Loss_Training/events.out.tfevents.1695052785.msip-dell.ims.rwth-aachen.de.834927.1
new file mode 100644
index 0000000000000000000000000000000000000000..c5661bdbcbaa663249857e94b17115de35cfb869
Binary files /dev/null and b/runs/fashion_trainer_20230918_175943/Training vs. Validation Loss_Training/events.out.tfevents.1695052785.msip-dell.ims.rwth-aachen.de.834927.1 differ
diff --git a/runs/fashion_trainer_20230918_175943/Training vs. Validation Loss_Validation/events.out.tfevents.1695052785.msip-dell.ims.rwth-aachen.de.834927.2 b/runs/fashion_trainer_20230918_175943/Training vs. Validation Loss_Validation/events.out.tfevents.1695052785.msip-dell.ims.rwth-aachen.de.834927.2
new file mode 100644
index 0000000000000000000000000000000000000000..cc2c2fdc58f7f9adf1746825b0522a5cbc4f67ce
Binary files /dev/null and b/runs/fashion_trainer_20230918_175943/Training vs. Validation Loss_Validation/events.out.tfevents.1695052785.msip-dell.ims.rwth-aachen.de.834927.2 differ
diff --git a/runs/fashion_trainer_20230918_175943/events.out.tfevents.1695052783.msip-dell.ims.rwth-aachen.de.834927.0 b/runs/fashion_trainer_20230918_175943/events.out.tfevents.1695052783.msip-dell.ims.rwth-aachen.de.834927.0
new file mode 100644
index 0000000000000000000000000000000000000000..61c349be40f2c7fc42c76221ab4ba24e1f43ac70
Binary files /dev/null and b/runs/fashion_trainer_20230918_175943/events.out.tfevents.1695052783.msip-dell.ims.rwth-aachen.de.834927.0 differ
diff --git a/runs/fashion_trainer_20230918_175948/Training vs. Validation Loss_Training/events.out.tfevents.1695052790.msip-dell.ims.rwth-aachen.de.834927.4 b/runs/fashion_trainer_20230918_175948/Training vs. Validation Loss_Training/events.out.tfevents.1695052790.msip-dell.ims.rwth-aachen.de.834927.4
new file mode 100644
index 0000000000000000000000000000000000000000..8d3fbbf5a8918ba465c8f01126c262373135c3dc
Binary files /dev/null and b/runs/fashion_trainer_20230918_175948/Training vs. Validation Loss_Training/events.out.tfevents.1695052790.msip-dell.ims.rwth-aachen.de.834927.4 differ
diff --git a/runs/fashion_trainer_20230918_175948/Training vs. Validation Loss_Validation/events.out.tfevents.1695052790.msip-dell.ims.rwth-aachen.de.834927.5 b/runs/fashion_trainer_20230918_175948/Training vs. Validation Loss_Validation/events.out.tfevents.1695052790.msip-dell.ims.rwth-aachen.de.834927.5
new file mode 100644
index 0000000000000000000000000000000000000000..f9ec1ed2b190cf8f3c74e5a58b1ea73d0eb64d5c
Binary files /dev/null and b/runs/fashion_trainer_20230918_175948/Training vs. Validation Loss_Validation/events.out.tfevents.1695052790.msip-dell.ims.rwth-aachen.de.834927.5 differ
diff --git a/runs/fashion_trainer_20230918_175948/events.out.tfevents.1695052788.msip-dell.ims.rwth-aachen.de.834927.3 b/runs/fashion_trainer_20230918_175948/events.out.tfevents.1695052788.msip-dell.ims.rwth-aachen.de.834927.3
new file mode 100644
index 0000000000000000000000000000000000000000..5d69b6617e69341476108b6af3d7e031e2107a5e
Binary files /dev/null and b/runs/fashion_trainer_20230918_175948/events.out.tfevents.1695052788.msip-dell.ims.rwth-aachen.de.834927.3 differ
diff --git a/runs/fashion_trainer_20230918_175953/Training vs. Validation Loss_Training/events.out.tfevents.1695052796.msip-dell.ims.rwth-aachen.de.834927.7 b/runs/fashion_trainer_20230918_175953/Training vs. Validation Loss_Training/events.out.tfevents.1695052796.msip-dell.ims.rwth-aachen.de.834927.7
new file mode 100644
index 0000000000000000000000000000000000000000..a661c07047209abe72921934b275bf2bc86aeb8c
Binary files /dev/null and b/runs/fashion_trainer_20230918_175953/Training vs. Validation Loss_Training/events.out.tfevents.1695052796.msip-dell.ims.rwth-aachen.de.834927.7 differ
diff --git a/runs/fashion_trainer_20230918_175953/Training vs. Validation Loss_Validation/events.out.tfevents.1695052796.msip-dell.ims.rwth-aachen.de.834927.8 b/runs/fashion_trainer_20230918_175953/Training vs. Validation Loss_Validation/events.out.tfevents.1695052796.msip-dell.ims.rwth-aachen.de.834927.8
new file mode 100644
index 0000000000000000000000000000000000000000..a7e862a3b498f3225c8375ac7964749803144674
Binary files /dev/null and b/runs/fashion_trainer_20230918_175953/Training vs. Validation Loss_Validation/events.out.tfevents.1695052796.msip-dell.ims.rwth-aachen.de.834927.8 differ
diff --git a/runs/fashion_trainer_20230918_175953/events.out.tfevents.1695052793.msip-dell.ims.rwth-aachen.de.834927.6 b/runs/fashion_trainer_20230918_175953/events.out.tfevents.1695052793.msip-dell.ims.rwth-aachen.de.834927.6
new file mode 100644
index 0000000000000000000000000000000000000000..3ee2d3f7a1f2cf6198cd36d2b81b8323edf018ea
Binary files /dev/null and b/runs/fashion_trainer_20230918_175953/events.out.tfevents.1695052793.msip-dell.ims.rwth-aachen.de.834927.6 differ
diff --git a/runs/fashion_trainer_20230918_175959/Training vs. Validation Loss_Training/events.out.tfevents.1695052802.msip-dell.ims.rwth-aachen.de.834927.10 b/runs/fashion_trainer_20230918_175959/Training vs. Validation Loss_Training/events.out.tfevents.1695052802.msip-dell.ims.rwth-aachen.de.834927.10
new file mode 100644
index 0000000000000000000000000000000000000000..2c91aae73242d55d2017dceee7f596282fe2a29e
Binary files /dev/null and b/runs/fashion_trainer_20230918_175959/Training vs. Validation Loss_Training/events.out.tfevents.1695052802.msip-dell.ims.rwth-aachen.de.834927.10 differ
diff --git a/runs/fashion_trainer_20230918_175959/Training vs. Validation Loss_Validation/events.out.tfevents.1695052802.msip-dell.ims.rwth-aachen.de.834927.11 b/runs/fashion_trainer_20230918_175959/Training vs. Validation Loss_Validation/events.out.tfevents.1695052802.msip-dell.ims.rwth-aachen.de.834927.11
new file mode 100644
index 0000000000000000000000000000000000000000..13651c8743956b7e4d54d6634357fb931fb0de2a
Binary files /dev/null and b/runs/fashion_trainer_20230918_175959/Training vs. Validation Loss_Validation/events.out.tfevents.1695052802.msip-dell.ims.rwth-aachen.de.834927.11 differ
diff --git a/runs/fashion_trainer_20230918_175959/events.out.tfevents.1695052799.msip-dell.ims.rwth-aachen.de.834927.9 b/runs/fashion_trainer_20230918_175959/events.out.tfevents.1695052799.msip-dell.ims.rwth-aachen.de.834927.9
new file mode 100644
index 0000000000000000000000000000000000000000..71e3f09f4f5acaa494b302a4cd9e67cdbd768801
Binary files /dev/null and b/runs/fashion_trainer_20230918_175959/events.out.tfevents.1695052799.msip-dell.ims.rwth-aachen.de.834927.9 differ
diff --git a/runs/fashion_trainer_20230918_180005/Training vs. Validation Loss_Training/events.out.tfevents.1695052808.msip-dell.ims.rwth-aachen.de.834927.13 b/runs/fashion_trainer_20230918_180005/Training vs. Validation Loss_Training/events.out.tfevents.1695052808.msip-dell.ims.rwth-aachen.de.834927.13
new file mode 100644
index 0000000000000000000000000000000000000000..3e858fa7b6b79ec90e1dd7909ba95ebbffb6f78e
Binary files /dev/null and b/runs/fashion_trainer_20230918_180005/Training vs. Validation Loss_Training/events.out.tfevents.1695052808.msip-dell.ims.rwth-aachen.de.834927.13 differ
diff --git a/runs/fashion_trainer_20230918_180005/Training vs. Validation Loss_Validation/events.out.tfevents.1695052808.msip-dell.ims.rwth-aachen.de.834927.14 b/runs/fashion_trainer_20230918_180005/Training vs. Validation Loss_Validation/events.out.tfevents.1695052808.msip-dell.ims.rwth-aachen.de.834927.14
new file mode 100644
index 0000000000000000000000000000000000000000..2b4243387f71e313434f30cc4da71b420203885b
Binary files /dev/null and b/runs/fashion_trainer_20230918_180005/Training vs. Validation Loss_Validation/events.out.tfevents.1695052808.msip-dell.ims.rwth-aachen.de.834927.14 differ
diff --git a/runs/fashion_trainer_20230918_180005/events.out.tfevents.1695052805.msip-dell.ims.rwth-aachen.de.834927.12 b/runs/fashion_trainer_20230918_180005/events.out.tfevents.1695052805.msip-dell.ims.rwth-aachen.de.834927.12
new file mode 100644
index 0000000000000000000000000000000000000000..0fbe1ad376164d0d6001e3ce6bb1b57bb7c3bf86
Binary files /dev/null and b/runs/fashion_trainer_20230918_180005/events.out.tfevents.1695052805.msip-dell.ims.rwth-aachen.de.834927.12 differ
diff --git a/runs/fashion_trainer_20230918_180011/Training vs. Validation Loss_Training/events.out.tfevents.1695052814.msip-dell.ims.rwth-aachen.de.834927.16 b/runs/fashion_trainer_20230918_180011/Training vs. Validation Loss_Training/events.out.tfevents.1695052814.msip-dell.ims.rwth-aachen.de.834927.16
new file mode 100644
index 0000000000000000000000000000000000000000..fa07d0b233965e16fa3ee71c8d2ad2aecdea8ddf
Binary files /dev/null and b/runs/fashion_trainer_20230918_180011/Training vs. Validation Loss_Training/events.out.tfevents.1695052814.msip-dell.ims.rwth-aachen.de.834927.16 differ
diff --git a/runs/fashion_trainer_20230918_180011/Training vs. Validation Loss_Validation/events.out.tfevents.1695052814.msip-dell.ims.rwth-aachen.de.834927.17 b/runs/fashion_trainer_20230918_180011/Training vs. Validation Loss_Validation/events.out.tfevents.1695052814.msip-dell.ims.rwth-aachen.de.834927.17
new file mode 100644
index 0000000000000000000000000000000000000000..d9017001900920ce51d5371989a56fad90846647
Binary files /dev/null and b/runs/fashion_trainer_20230918_180011/Training vs. Validation Loss_Validation/events.out.tfevents.1695052814.msip-dell.ims.rwth-aachen.de.834927.17 differ
diff --git a/runs/fashion_trainer_20230918_180011/events.out.tfevents.1695052811.msip-dell.ims.rwth-aachen.de.834927.15 b/runs/fashion_trainer_20230918_180011/events.out.tfevents.1695052811.msip-dell.ims.rwth-aachen.de.834927.15
new file mode 100644
index 0000000000000000000000000000000000000000..c2334db34a6f8885ab6fa7e6bc6c94b557ccc1c9
Binary files /dev/null and b/runs/fashion_trainer_20230918_180011/events.out.tfevents.1695052811.msip-dell.ims.rwth-aachen.de.834927.15 differ
diff --git a/runs/fashion_trainer_20230918_180018/Training vs. Validation Loss_Training/events.out.tfevents.1695052820.msip-dell.ims.rwth-aachen.de.834927.19 b/runs/fashion_trainer_20230918_180018/Training vs. Validation Loss_Training/events.out.tfevents.1695052820.msip-dell.ims.rwth-aachen.de.834927.19
new file mode 100644
index 0000000000000000000000000000000000000000..4047013cf462fcdc32b99b92dc7ce1bbbb64c107
Binary files /dev/null and b/runs/fashion_trainer_20230918_180018/Training vs. Validation Loss_Training/events.out.tfevents.1695052820.msip-dell.ims.rwth-aachen.de.834927.19 differ
diff --git a/runs/fashion_trainer_20230918_180018/Training vs. Validation Loss_Validation/events.out.tfevents.1695052820.msip-dell.ims.rwth-aachen.de.834927.20 b/runs/fashion_trainer_20230918_180018/Training vs. Validation Loss_Validation/events.out.tfevents.1695052820.msip-dell.ims.rwth-aachen.de.834927.20
new file mode 100644
index 0000000000000000000000000000000000000000..3b1c7536adf8fa462830d4333c22fada3adfdac8
Binary files /dev/null and b/runs/fashion_trainer_20230918_180018/Training vs. Validation Loss_Validation/events.out.tfevents.1695052820.msip-dell.ims.rwth-aachen.de.834927.20 differ
diff --git a/runs/fashion_trainer_20230918_180018/events.out.tfevents.1695052818.msip-dell.ims.rwth-aachen.de.834927.18 b/runs/fashion_trainer_20230918_180018/events.out.tfevents.1695052818.msip-dell.ims.rwth-aachen.de.834927.18
new file mode 100644
index 0000000000000000000000000000000000000000..23ce2d9a83b1fa260ee408f1cf953edbeb61416c
Binary files /dev/null and b/runs/fashion_trainer_20230918_180018/events.out.tfevents.1695052818.msip-dell.ims.rwth-aachen.de.834927.18 differ
diff --git a/runs/fashion_trainer_20230918_180023/Training vs. Validation Loss_Training/events.out.tfevents.1695052826.msip-dell.ims.rwth-aachen.de.834927.22 b/runs/fashion_trainer_20230918_180023/Training vs. Validation Loss_Training/events.out.tfevents.1695052826.msip-dell.ims.rwth-aachen.de.834927.22
new file mode 100644
index 0000000000000000000000000000000000000000..eba40093b713d5fbd097a8f1cadf825003eaf509
Binary files /dev/null and b/runs/fashion_trainer_20230918_180023/Training vs. Validation Loss_Training/events.out.tfevents.1695052826.msip-dell.ims.rwth-aachen.de.834927.22 differ
diff --git a/runs/fashion_trainer_20230918_180023/Training vs. Validation Loss_Validation/events.out.tfevents.1695052826.msip-dell.ims.rwth-aachen.de.834927.23 b/runs/fashion_trainer_20230918_180023/Training vs. Validation Loss_Validation/events.out.tfevents.1695052826.msip-dell.ims.rwth-aachen.de.834927.23
new file mode 100644
index 0000000000000000000000000000000000000000..d03dcf2e8513e147891a65386219c0a6236b432a
Binary files /dev/null and b/runs/fashion_trainer_20230918_180023/Training vs. Validation Loss_Validation/events.out.tfevents.1695052826.msip-dell.ims.rwth-aachen.de.834927.23 differ
diff --git a/runs/fashion_trainer_20230918_180023/events.out.tfevents.1695052823.msip-dell.ims.rwth-aachen.de.834927.21 b/runs/fashion_trainer_20230918_180023/events.out.tfevents.1695052823.msip-dell.ims.rwth-aachen.de.834927.21
new file mode 100644
index 0000000000000000000000000000000000000000..afda20408dedf68ed292ff90bb6f6ac87aea8395
Binary files /dev/null and b/runs/fashion_trainer_20230918_180023/events.out.tfevents.1695052823.msip-dell.ims.rwth-aachen.de.834927.21 differ
diff --git a/runs/fashion_trainer_20230918_180056/Training vs. Validation Loss_Training/events.out.tfevents.1695052859.msip-dell.ims.rwth-aachen.de.835357.1 b/runs/fashion_trainer_20230918_180056/Training vs. Validation Loss_Training/events.out.tfevents.1695052859.msip-dell.ims.rwth-aachen.de.835357.1
new file mode 100644
index 0000000000000000000000000000000000000000..162111358a8893bc35fa15e415427a19d1dc4ae1
Binary files /dev/null and b/runs/fashion_trainer_20230918_180056/Training vs. Validation Loss_Training/events.out.tfevents.1695052859.msip-dell.ims.rwth-aachen.de.835357.1 differ
diff --git a/runs/fashion_trainer_20230918_180056/Training vs. Validation Loss_Validation/events.out.tfevents.1695052859.msip-dell.ims.rwth-aachen.de.835357.2 b/runs/fashion_trainer_20230918_180056/Training vs. Validation Loss_Validation/events.out.tfevents.1695052859.msip-dell.ims.rwth-aachen.de.835357.2
new file mode 100644
index 0000000000000000000000000000000000000000..12750de04f6302c7412b0099b605cea66ba3680d
Binary files /dev/null and b/runs/fashion_trainer_20230918_180056/Training vs. Validation Loss_Validation/events.out.tfevents.1695052859.msip-dell.ims.rwth-aachen.de.835357.2 differ
diff --git a/runs/fashion_trainer_20230918_180056/events.out.tfevents.1695052856.msip-dell.ims.rwth-aachen.de.835357.0 b/runs/fashion_trainer_20230918_180056/events.out.tfevents.1695052856.msip-dell.ims.rwth-aachen.de.835357.0
new file mode 100644
index 0000000000000000000000000000000000000000..050cb338af0925f2eb5cdf3ae01f5865459ccd04
Binary files /dev/null and b/runs/fashion_trainer_20230918_180056/events.out.tfevents.1695052856.msip-dell.ims.rwth-aachen.de.835357.0 differ
diff --git a/runs/fashion_trainer_20230918_180300/Training vs. Validation Loss_Training/events.out.tfevents.1695052982.msip-dell.ims.rwth-aachen.de.835357.4 b/runs/fashion_trainer_20230918_180300/Training vs. Validation Loss_Training/events.out.tfevents.1695052982.msip-dell.ims.rwth-aachen.de.835357.4
new file mode 100644
index 0000000000000000000000000000000000000000..c973397f4f9a331ebcecabb9b9e984598e0070da
Binary files /dev/null and b/runs/fashion_trainer_20230918_180300/Training vs. Validation Loss_Training/events.out.tfevents.1695052982.msip-dell.ims.rwth-aachen.de.835357.4 differ
diff --git a/runs/fashion_trainer_20230918_180300/Training vs. Validation Loss_Validation/events.out.tfevents.1695052982.msip-dell.ims.rwth-aachen.de.835357.5 b/runs/fashion_trainer_20230918_180300/Training vs. Validation Loss_Validation/events.out.tfevents.1695052982.msip-dell.ims.rwth-aachen.de.835357.5
new file mode 100644
index 0000000000000000000000000000000000000000..18cc91dde56db083c7b4195b9641a1869add6635
Binary files /dev/null and b/runs/fashion_trainer_20230918_180300/Training vs. Validation Loss_Validation/events.out.tfevents.1695052982.msip-dell.ims.rwth-aachen.de.835357.5 differ
diff --git a/runs/fashion_trainer_20230918_180300/events.out.tfevents.1695052980.msip-dell.ims.rwth-aachen.de.835357.3 b/runs/fashion_trainer_20230918_180300/events.out.tfevents.1695052980.msip-dell.ims.rwth-aachen.de.835357.3
new file mode 100644
index 0000000000000000000000000000000000000000..d302b0efaa7edb99817f0128a2741df6dff71109
Binary files /dev/null and b/runs/fashion_trainer_20230918_180300/events.out.tfevents.1695052980.msip-dell.ims.rwth-aachen.de.835357.3 differ
diff --git a/runs/fashion_trainer_20230918_180509/Training vs. Validation Loss_Training/events.out.tfevents.1695053111.msip-dell.ims.rwth-aachen.de.835357.7 b/runs/fashion_trainer_20230918_180509/Training vs. Validation Loss_Training/events.out.tfevents.1695053111.msip-dell.ims.rwth-aachen.de.835357.7
new file mode 100644
index 0000000000000000000000000000000000000000..6cabb9fef3400a1265ddce74b761ab7e2bd77e2f
Binary files /dev/null and b/runs/fashion_trainer_20230918_180509/Training vs. Validation Loss_Training/events.out.tfevents.1695053111.msip-dell.ims.rwth-aachen.de.835357.7 differ
diff --git a/runs/fashion_trainer_20230918_180509/Training vs. Validation Loss_Validation/events.out.tfevents.1695053111.msip-dell.ims.rwth-aachen.de.835357.8 b/runs/fashion_trainer_20230918_180509/Training vs. Validation Loss_Validation/events.out.tfevents.1695053111.msip-dell.ims.rwth-aachen.de.835357.8
new file mode 100644
index 0000000000000000000000000000000000000000..f796d80130bbcc8029ef2796546baf98af0582e9
Binary files /dev/null and b/runs/fashion_trainer_20230918_180509/Training vs. Validation Loss_Validation/events.out.tfevents.1695053111.msip-dell.ims.rwth-aachen.de.835357.8 differ
diff --git a/runs/fashion_trainer_20230918_180509/events.out.tfevents.1695053109.msip-dell.ims.rwth-aachen.de.835357.6 b/runs/fashion_trainer_20230918_180509/events.out.tfevents.1695053109.msip-dell.ims.rwth-aachen.de.835357.6
new file mode 100644
index 0000000000000000000000000000000000000000..b7826d9b4550b4c81cf428c40368a7bb1d395356
Binary files /dev/null and b/runs/fashion_trainer_20230918_180509/events.out.tfevents.1695053109.msip-dell.ims.rwth-aachen.de.835357.6 differ
diff --git a/runs/fashion_trainer_20230918_180649/Training vs. Validation Loss_Training/events.out.tfevents.1695053211.msip-dell.ims.rwth-aachen.de.835357.10 b/runs/fashion_trainer_20230918_180649/Training vs. Validation Loss_Training/events.out.tfevents.1695053211.msip-dell.ims.rwth-aachen.de.835357.10
new file mode 100644
index 0000000000000000000000000000000000000000..74b9237ae36bc303da73789d1473b2a316c79f99
Binary files /dev/null and b/runs/fashion_trainer_20230918_180649/Training vs. Validation Loss_Training/events.out.tfevents.1695053211.msip-dell.ims.rwth-aachen.de.835357.10 differ
diff --git a/runs/fashion_trainer_20230918_180649/Training vs. Validation Loss_Validation/events.out.tfevents.1695053211.msip-dell.ims.rwth-aachen.de.835357.11 b/runs/fashion_trainer_20230918_180649/Training vs. Validation Loss_Validation/events.out.tfevents.1695053211.msip-dell.ims.rwth-aachen.de.835357.11
new file mode 100644
index 0000000000000000000000000000000000000000..f29930a6cb40271f4a5a6b26bbe9cc017d1128a5
Binary files /dev/null and b/runs/fashion_trainer_20230918_180649/Training vs. Validation Loss_Validation/events.out.tfevents.1695053211.msip-dell.ims.rwth-aachen.de.835357.11 differ
diff --git a/runs/fashion_trainer_20230918_180649/events.out.tfevents.1695053209.msip-dell.ims.rwth-aachen.de.835357.9 b/runs/fashion_trainer_20230918_180649/events.out.tfevents.1695053209.msip-dell.ims.rwth-aachen.de.835357.9
new file mode 100644
index 0000000000000000000000000000000000000000..355371b1d482b120368a8047a3473231e25d0cf5
Binary files /dev/null and b/runs/fashion_trainer_20230918_180649/events.out.tfevents.1695053209.msip-dell.ims.rwth-aachen.de.835357.9 differ
diff --git a/runs/fashion_trainer_20230918_180852/Training vs. Validation Loss_Training/events.out.tfevents.1695053334.msip-dell.ims.rwth-aachen.de.835357.13 b/runs/fashion_trainer_20230918_180852/Training vs. Validation Loss_Training/events.out.tfevents.1695053334.msip-dell.ims.rwth-aachen.de.835357.13
new file mode 100644
index 0000000000000000000000000000000000000000..a7827b1016d03fe973d42c88ccb6701bd213a205
Binary files /dev/null and b/runs/fashion_trainer_20230918_180852/Training vs. Validation Loss_Training/events.out.tfevents.1695053334.msip-dell.ims.rwth-aachen.de.835357.13 differ
diff --git a/runs/fashion_trainer_20230918_180852/Training vs. Validation Loss_Validation/events.out.tfevents.1695053334.msip-dell.ims.rwth-aachen.de.835357.14 b/runs/fashion_trainer_20230918_180852/Training vs. Validation Loss_Validation/events.out.tfevents.1695053334.msip-dell.ims.rwth-aachen.de.835357.14
new file mode 100644
index 0000000000000000000000000000000000000000..27daeb963fb87f345f8380ad81945dd4f1c37268
Binary files /dev/null and b/runs/fashion_trainer_20230918_180852/Training vs. Validation Loss_Validation/events.out.tfevents.1695053334.msip-dell.ims.rwth-aachen.de.835357.14 differ
diff --git a/runs/fashion_trainer_20230918_180852/events.out.tfevents.1695053332.msip-dell.ims.rwth-aachen.de.835357.12 b/runs/fashion_trainer_20230918_180852/events.out.tfevents.1695053332.msip-dell.ims.rwth-aachen.de.835357.12
new file mode 100644
index 0000000000000000000000000000000000000000..6ce4cdced8ae189b4574f817497c2f849e45aec5
Binary files /dev/null and b/runs/fashion_trainer_20230918_180852/events.out.tfevents.1695053332.msip-dell.ims.rwth-aachen.de.835357.12 differ
diff --git a/runs/fashion_trainer_20230918_181059/Training vs. Validation Loss_Training/events.out.tfevents.1695053462.msip-dell.ims.rwth-aachen.de.835357.16 b/runs/fashion_trainer_20230918_181059/Training vs. Validation Loss_Training/events.out.tfevents.1695053462.msip-dell.ims.rwth-aachen.de.835357.16
new file mode 100644
index 0000000000000000000000000000000000000000..f12a0c3de2dea224f35a5cf617d1b8df09894132
Binary files /dev/null and b/runs/fashion_trainer_20230918_181059/Training vs. Validation Loss_Training/events.out.tfevents.1695053462.msip-dell.ims.rwth-aachen.de.835357.16 differ
diff --git a/runs/fashion_trainer_20230918_181059/Training vs. Validation Loss_Validation/events.out.tfevents.1695053462.msip-dell.ims.rwth-aachen.de.835357.17 b/runs/fashion_trainer_20230918_181059/Training vs. Validation Loss_Validation/events.out.tfevents.1695053462.msip-dell.ims.rwth-aachen.de.835357.17
new file mode 100644
index 0000000000000000000000000000000000000000..e86ead33887c5495c2694c9d8e53cb2dd08b6c82
Binary files /dev/null and b/runs/fashion_trainer_20230918_181059/Training vs. Validation Loss_Validation/events.out.tfevents.1695053462.msip-dell.ims.rwth-aachen.de.835357.17 differ
diff --git a/runs/fashion_trainer_20230918_181059/events.out.tfevents.1695053459.msip-dell.ims.rwth-aachen.de.835357.15 b/runs/fashion_trainer_20230918_181059/events.out.tfevents.1695053459.msip-dell.ims.rwth-aachen.de.835357.15
new file mode 100644
index 0000000000000000000000000000000000000000..dc3212c78a24507f5f8ac1d8ca100ebbb466bb1b
Binary files /dev/null and b/runs/fashion_trainer_20230918_181059/events.out.tfevents.1695053459.msip-dell.ims.rwth-aachen.de.835357.15 differ
diff --git a/runs/fashion_trainer_20230918_181317/Training vs. Validation Loss_Training/events.out.tfevents.1695053599.msip-dell.ims.rwth-aachen.de.835357.19 b/runs/fashion_trainer_20230918_181317/Training vs. Validation Loss_Training/events.out.tfevents.1695053599.msip-dell.ims.rwth-aachen.de.835357.19
new file mode 100644
index 0000000000000000000000000000000000000000..4a43ac773aad5699f8fcaeaeae9836fbdcfee2ec
Binary files /dev/null and b/runs/fashion_trainer_20230918_181317/Training vs. Validation Loss_Training/events.out.tfevents.1695053599.msip-dell.ims.rwth-aachen.de.835357.19 differ
diff --git a/runs/fashion_trainer_20230918_181317/Training vs. Validation Loss_Validation/events.out.tfevents.1695053599.msip-dell.ims.rwth-aachen.de.835357.20 b/runs/fashion_trainer_20230918_181317/Training vs. Validation Loss_Validation/events.out.tfevents.1695053599.msip-dell.ims.rwth-aachen.de.835357.20
new file mode 100644
index 0000000000000000000000000000000000000000..333be3c69d780b7ccd93a0f6c6f62954647bbd80
Binary files /dev/null and b/runs/fashion_trainer_20230918_181317/Training vs. Validation Loss_Validation/events.out.tfevents.1695053599.msip-dell.ims.rwth-aachen.de.835357.20 differ
diff --git a/runs/fashion_trainer_20230918_181317/events.out.tfevents.1695053597.msip-dell.ims.rwth-aachen.de.835357.18 b/runs/fashion_trainer_20230918_181317/events.out.tfevents.1695053597.msip-dell.ims.rwth-aachen.de.835357.18
new file mode 100644
index 0000000000000000000000000000000000000000..ca5fd68baa76207f5d1d9975b3290512a5a75319
Binary files /dev/null and b/runs/fashion_trainer_20230918_181317/events.out.tfevents.1695053597.msip-dell.ims.rwth-aachen.de.835357.18 differ
diff --git a/runs/fashion_trainer_20230918_181515/Training vs. Validation Loss_Training/events.out.tfevents.1695053718.msip-dell.ims.rwth-aachen.de.835357.22 b/runs/fashion_trainer_20230918_181515/Training vs. Validation Loss_Training/events.out.tfevents.1695053718.msip-dell.ims.rwth-aachen.de.835357.22
new file mode 100644
index 0000000000000000000000000000000000000000..c5780abf0832b72ac4c88dcee4280e2f4ee679af
Binary files /dev/null and b/runs/fashion_trainer_20230918_181515/Training vs. Validation Loss_Training/events.out.tfevents.1695053718.msip-dell.ims.rwth-aachen.de.835357.22 differ
diff --git a/runs/fashion_trainer_20230918_181515/Training vs. Validation Loss_Validation/events.out.tfevents.1695053718.msip-dell.ims.rwth-aachen.de.835357.23 b/runs/fashion_trainer_20230918_181515/Training vs. Validation Loss_Validation/events.out.tfevents.1695053718.msip-dell.ims.rwth-aachen.de.835357.23
new file mode 100644
index 0000000000000000000000000000000000000000..0cd7bedb98676c5fc576eedee7d3ea5c36fce70c
Binary files /dev/null and b/runs/fashion_trainer_20230918_181515/Training vs. Validation Loss_Validation/events.out.tfevents.1695053718.msip-dell.ims.rwth-aachen.de.835357.23 differ
diff --git a/runs/fashion_trainer_20230918_181515/events.out.tfevents.1695053715.msip-dell.ims.rwth-aachen.de.835357.21 b/runs/fashion_trainer_20230918_181515/events.out.tfevents.1695053715.msip-dell.ims.rwth-aachen.de.835357.21
new file mode 100644
index 0000000000000000000000000000000000000000..547ffb24d45f6244490997fbc23a2fa0a5c6d5e9
Binary files /dev/null and b/runs/fashion_trainer_20230918_181515/events.out.tfevents.1695053715.msip-dell.ims.rwth-aachen.de.835357.21 differ
diff --git a/runs/fashion_trainer_20230918_195406/Training vs. Validation Loss_Training/events.out.tfevents.1695059648.msip-dell.ims.rwth-aachen.de.852781.1 b/runs/fashion_trainer_20230918_195406/Training vs. Validation Loss_Training/events.out.tfevents.1695059648.msip-dell.ims.rwth-aachen.de.852781.1
new file mode 100644
index 0000000000000000000000000000000000000000..7d2d6e87a08fa3b088786e023d1f2eb764953158
Binary files /dev/null and b/runs/fashion_trainer_20230918_195406/Training vs. Validation Loss_Training/events.out.tfevents.1695059648.msip-dell.ims.rwth-aachen.de.852781.1 differ
diff --git a/runs/fashion_trainer_20230918_195406/Training vs. Validation Loss_Validation/events.out.tfevents.1695059648.msip-dell.ims.rwth-aachen.de.852781.2 b/runs/fashion_trainer_20230918_195406/Training vs. Validation Loss_Validation/events.out.tfevents.1695059648.msip-dell.ims.rwth-aachen.de.852781.2
new file mode 100644
index 0000000000000000000000000000000000000000..acd015193c236df4892e29446e0d5a7181259778
Binary files /dev/null and b/runs/fashion_trainer_20230918_195406/Training vs. Validation Loss_Validation/events.out.tfevents.1695059648.msip-dell.ims.rwth-aachen.de.852781.2 differ
diff --git a/runs/fashion_trainer_20230918_195406/events.out.tfevents.1695059646.msip-dell.ims.rwth-aachen.de.852781.0 b/runs/fashion_trainer_20230918_195406/events.out.tfevents.1695059646.msip-dell.ims.rwth-aachen.de.852781.0
new file mode 100644
index 0000000000000000000000000000000000000000..90dd8a7bbb9810b49b8e32b542d4042b4d907ee9
Binary files /dev/null and b/runs/fashion_trainer_20230918_195406/events.out.tfevents.1695059646.msip-dell.ims.rwth-aachen.de.852781.0 differ
diff --git a/runs/fashion_trainer_20230918_195611/Training vs. Validation Loss_Training/events.out.tfevents.1695059773.msip-dell.ims.rwth-aachen.de.852781.4 b/runs/fashion_trainer_20230918_195611/Training vs. Validation Loss_Training/events.out.tfevents.1695059773.msip-dell.ims.rwth-aachen.de.852781.4
new file mode 100644
index 0000000000000000000000000000000000000000..e4ededc877b9daa7edea2f592d0dfcec51e383d2
Binary files /dev/null and b/runs/fashion_trainer_20230918_195611/Training vs. Validation Loss_Training/events.out.tfevents.1695059773.msip-dell.ims.rwth-aachen.de.852781.4 differ
diff --git a/runs/fashion_trainer_20230918_195611/Training vs. Validation Loss_Validation/events.out.tfevents.1695059773.msip-dell.ims.rwth-aachen.de.852781.5 b/runs/fashion_trainer_20230918_195611/Training vs. Validation Loss_Validation/events.out.tfevents.1695059773.msip-dell.ims.rwth-aachen.de.852781.5
new file mode 100644
index 0000000000000000000000000000000000000000..c987e51920c419f6aa57119ed2d073dae609efda
Binary files /dev/null and b/runs/fashion_trainer_20230918_195611/Training vs. Validation Loss_Validation/events.out.tfevents.1695059773.msip-dell.ims.rwth-aachen.de.852781.5 differ
diff --git a/runs/fashion_trainer_20230918_195611/events.out.tfevents.1695059771.msip-dell.ims.rwth-aachen.de.852781.3 b/runs/fashion_trainer_20230918_195611/events.out.tfevents.1695059771.msip-dell.ims.rwth-aachen.de.852781.3
new file mode 100644
index 0000000000000000000000000000000000000000..be83abe61eaddd2c08399a3406ca7159e576711f
Binary files /dev/null and b/runs/fashion_trainer_20230918_195611/events.out.tfevents.1695059771.msip-dell.ims.rwth-aachen.de.852781.3 differ
diff --git a/runs/fashion_trainer_20230918_195852/Training vs. Validation Loss_Training/events.out.tfevents.1695059934.msip-dell.ims.rwth-aachen.de.855028.1 b/runs/fashion_trainer_20230918_195852/Training vs. Validation Loss_Training/events.out.tfevents.1695059934.msip-dell.ims.rwth-aachen.de.855028.1
new file mode 100644
index 0000000000000000000000000000000000000000..4b2f310eb3ba9e2aef9cc07485507aed7c4e5e73
Binary files /dev/null and b/runs/fashion_trainer_20230918_195852/Training vs. Validation Loss_Training/events.out.tfevents.1695059934.msip-dell.ims.rwth-aachen.de.855028.1 differ
diff --git a/runs/fashion_trainer_20230918_195852/Training vs. Validation Loss_Validation/events.out.tfevents.1695059934.msip-dell.ims.rwth-aachen.de.855028.2 b/runs/fashion_trainer_20230918_195852/Training vs. Validation Loss_Validation/events.out.tfevents.1695059934.msip-dell.ims.rwth-aachen.de.855028.2
new file mode 100644
index 0000000000000000000000000000000000000000..0a42393ed8fdf45799a2bc93af3f8e7d73cd4d36
Binary files /dev/null and b/runs/fashion_trainer_20230918_195852/Training vs. Validation Loss_Validation/events.out.tfevents.1695059934.msip-dell.ims.rwth-aachen.de.855028.2 differ
diff --git a/runs/fashion_trainer_20230918_195852/events.out.tfevents.1695059932.msip-dell.ims.rwth-aachen.de.855028.0 b/runs/fashion_trainer_20230918_195852/events.out.tfevents.1695059932.msip-dell.ims.rwth-aachen.de.855028.0
new file mode 100644
index 0000000000000000000000000000000000000000..453e08af9e7627190a20dac37bae174f55b7b5f5
Binary files /dev/null and b/runs/fashion_trainer_20230918_195852/events.out.tfevents.1695059932.msip-dell.ims.rwth-aachen.de.855028.0 differ
diff --git a/runs/fashion_trainer_20230918_200051/Training vs. Validation Loss_Training/events.out.tfevents.1695060053.msip-dell.ims.rwth-aachen.de.855028.4 b/runs/fashion_trainer_20230918_200051/Training vs. Validation Loss_Training/events.out.tfevents.1695060053.msip-dell.ims.rwth-aachen.de.855028.4
new file mode 100644
index 0000000000000000000000000000000000000000..d76367cbe33cdcf56f7a4f3e2052f10f8afda908
Binary files /dev/null and b/runs/fashion_trainer_20230918_200051/Training vs. Validation Loss_Training/events.out.tfevents.1695060053.msip-dell.ims.rwth-aachen.de.855028.4 differ
diff --git a/runs/fashion_trainer_20230918_200051/Training vs. Validation Loss_Validation/events.out.tfevents.1695060053.msip-dell.ims.rwth-aachen.de.855028.5 b/runs/fashion_trainer_20230918_200051/Training vs. Validation Loss_Validation/events.out.tfevents.1695060053.msip-dell.ims.rwth-aachen.de.855028.5
new file mode 100644
index 0000000000000000000000000000000000000000..f2c38aa4ba0436447cd99a45c960010e8531fe22
Binary files /dev/null and b/runs/fashion_trainer_20230918_200051/Training vs. Validation Loss_Validation/events.out.tfevents.1695060053.msip-dell.ims.rwth-aachen.de.855028.5 differ
diff --git a/runs/fashion_trainer_20230918_200051/events.out.tfevents.1695060051.msip-dell.ims.rwth-aachen.de.855028.3 b/runs/fashion_trainer_20230918_200051/events.out.tfevents.1695060051.msip-dell.ims.rwth-aachen.de.855028.3
new file mode 100644
index 0000000000000000000000000000000000000000..2f66e5f9e999f0226f8038ff05218161dfacef30
Binary files /dev/null and b/runs/fashion_trainer_20230918_200051/events.out.tfevents.1695060051.msip-dell.ims.rwth-aachen.de.855028.3 differ
diff --git a/runs/fashion_trainer_20230918_200121/Training vs. Validation Loss_Training/events.out.tfevents.1695060083.msip-dell.ims.rwth-aachen.de.856672.1 b/runs/fashion_trainer_20230918_200121/Training vs. Validation Loss_Training/events.out.tfevents.1695060083.msip-dell.ims.rwth-aachen.de.856672.1
new file mode 100644
index 0000000000000000000000000000000000000000..ad6385a38db46061755f55518df2b452df339794
Binary files /dev/null and b/runs/fashion_trainer_20230918_200121/Training vs. Validation Loss_Training/events.out.tfevents.1695060083.msip-dell.ims.rwth-aachen.de.856672.1 differ
diff --git a/runs/fashion_trainer_20230918_200121/Training vs. Validation Loss_Validation/events.out.tfevents.1695060083.msip-dell.ims.rwth-aachen.de.856672.2 b/runs/fashion_trainer_20230918_200121/Training vs. Validation Loss_Validation/events.out.tfevents.1695060083.msip-dell.ims.rwth-aachen.de.856672.2
new file mode 100644
index 0000000000000000000000000000000000000000..dc4c56dcf3cae0ce29c2309618e11511d64b6d77
Binary files /dev/null and b/runs/fashion_trainer_20230918_200121/Training vs. Validation Loss_Validation/events.out.tfevents.1695060083.msip-dell.ims.rwth-aachen.de.856672.2 differ
diff --git a/runs/fashion_trainer_20230918_200121/events.out.tfevents.1695060081.msip-dell.ims.rwth-aachen.de.856672.0 b/runs/fashion_trainer_20230918_200121/events.out.tfevents.1695060081.msip-dell.ims.rwth-aachen.de.856672.0
new file mode 100644
index 0000000000000000000000000000000000000000..743f58f209136b7ce0dbbb104cad867a1e17369b
Binary files /dev/null and b/runs/fashion_trainer_20230918_200121/events.out.tfevents.1695060081.msip-dell.ims.rwth-aachen.de.856672.0 differ
diff --git a/runs/fashion_trainer_20230918_200154/Training vs. Validation Loss_Training/events.out.tfevents.1695060116.msip-dell.ims.rwth-aachen.de.856843.1 b/runs/fashion_trainer_20230918_200154/Training vs. Validation Loss_Training/events.out.tfevents.1695060116.msip-dell.ims.rwth-aachen.de.856843.1
new file mode 100644
index 0000000000000000000000000000000000000000..6a751fe631995007babf8f758b025db223bc9051
Binary files /dev/null and b/runs/fashion_trainer_20230918_200154/Training vs. Validation Loss_Training/events.out.tfevents.1695060116.msip-dell.ims.rwth-aachen.de.856843.1 differ
diff --git a/runs/fashion_trainer_20230918_200154/Training vs. Validation Loss_Validation/events.out.tfevents.1695060116.msip-dell.ims.rwth-aachen.de.856843.2 b/runs/fashion_trainer_20230918_200154/Training vs. Validation Loss_Validation/events.out.tfevents.1695060116.msip-dell.ims.rwth-aachen.de.856843.2
new file mode 100644
index 0000000000000000000000000000000000000000..8f3f7218d664f2bf72d7863810d6e1d642c18aa6
Binary files /dev/null and b/runs/fashion_trainer_20230918_200154/Training vs. Validation Loss_Validation/events.out.tfevents.1695060116.msip-dell.ims.rwth-aachen.de.856843.2 differ
diff --git a/runs/fashion_trainer_20230918_200154/events.out.tfevents.1695060114.msip-dell.ims.rwth-aachen.de.856843.0 b/runs/fashion_trainer_20230918_200154/events.out.tfevents.1695060114.msip-dell.ims.rwth-aachen.de.856843.0
new file mode 100644
index 0000000000000000000000000000000000000000..89862b49de2d87a57f9cf729217f2eed2f52deba
Binary files /dev/null and b/runs/fashion_trainer_20230918_200154/events.out.tfevents.1695060114.msip-dell.ims.rwth-aachen.de.856843.0 differ
diff --git a/runs/fashion_trainer_20230918_200355/Training vs. Validation Loss_Training/events.out.tfevents.1695060237.msip-dell.ims.rwth-aachen.de.857762.1 b/runs/fashion_trainer_20230918_200355/Training vs. Validation Loss_Training/events.out.tfevents.1695060237.msip-dell.ims.rwth-aachen.de.857762.1
new file mode 100644
index 0000000000000000000000000000000000000000..e90d8fe671d8f12df91f143c101c06b3c3186180
Binary files /dev/null and b/runs/fashion_trainer_20230918_200355/Training vs. Validation Loss_Training/events.out.tfevents.1695060237.msip-dell.ims.rwth-aachen.de.857762.1 differ
diff --git a/runs/fashion_trainer_20230918_200355/Training vs. Validation Loss_Validation/events.out.tfevents.1695060237.msip-dell.ims.rwth-aachen.de.857762.2 b/runs/fashion_trainer_20230918_200355/Training vs. Validation Loss_Validation/events.out.tfevents.1695060237.msip-dell.ims.rwth-aachen.de.857762.2
new file mode 100644
index 0000000000000000000000000000000000000000..b68c56b08bf31b11904ae9202a445ebabcafdc89
Binary files /dev/null and b/runs/fashion_trainer_20230918_200355/Training vs. Validation Loss_Validation/events.out.tfevents.1695060237.msip-dell.ims.rwth-aachen.de.857762.2 differ
diff --git a/runs/fashion_trainer_20230918_200355/events.out.tfevents.1695060235.msip-dell.ims.rwth-aachen.de.857762.0 b/runs/fashion_trainer_20230918_200355/events.out.tfevents.1695060235.msip-dell.ims.rwth-aachen.de.857762.0
new file mode 100644
index 0000000000000000000000000000000000000000..26ec48b8cf3a271cb8fd98049fa7a1ca21bffb01
Binary files /dev/null and b/runs/fashion_trainer_20230918_200355/events.out.tfevents.1695060235.msip-dell.ims.rwth-aachen.de.857762.0 differ
diff --git a/runs/fashion_trainer_20230918_200426/Training vs. Validation Loss_Training/events.out.tfevents.1695060268.msip-dell.ims.rwth-aachen.de.857915.1 b/runs/fashion_trainer_20230918_200426/Training vs. Validation Loss_Training/events.out.tfevents.1695060268.msip-dell.ims.rwth-aachen.de.857915.1
new file mode 100644
index 0000000000000000000000000000000000000000..89c16fa881ff0b67f43089821cddb993e745703f
Binary files /dev/null and b/runs/fashion_trainer_20230918_200426/Training vs. Validation Loss_Training/events.out.tfevents.1695060268.msip-dell.ims.rwth-aachen.de.857915.1 differ
diff --git a/runs/fashion_trainer_20230918_200426/Training vs. Validation Loss_Validation/events.out.tfevents.1695060268.msip-dell.ims.rwth-aachen.de.857915.2 b/runs/fashion_trainer_20230918_200426/Training vs. Validation Loss_Validation/events.out.tfevents.1695060268.msip-dell.ims.rwth-aachen.de.857915.2
new file mode 100644
index 0000000000000000000000000000000000000000..7d2bb8d3526663f96e39affc755a9aab676b243f
Binary files /dev/null and b/runs/fashion_trainer_20230918_200426/Training vs. Validation Loss_Validation/events.out.tfevents.1695060268.msip-dell.ims.rwth-aachen.de.857915.2 differ
diff --git a/runs/fashion_trainer_20230918_200426/events.out.tfevents.1695060266.msip-dell.ims.rwth-aachen.de.857915.0 b/runs/fashion_trainer_20230918_200426/events.out.tfevents.1695060266.msip-dell.ims.rwth-aachen.de.857915.0
new file mode 100644
index 0000000000000000000000000000000000000000..a1da0ce8fc4fd0aed16b1eeee279d3c5daff8d63
Binary files /dev/null and b/runs/fashion_trainer_20230918_200426/events.out.tfevents.1695060266.msip-dell.ims.rwth-aachen.de.857915.0 differ
diff --git a/runs/fashion_trainer_20230918_200501/Training vs. Validation Loss_Training/events.out.tfevents.1695060303.msip-dell.ims.rwth-aachen.de.858169.1 b/runs/fashion_trainer_20230918_200501/Training vs. Validation Loss_Training/events.out.tfevents.1695060303.msip-dell.ims.rwth-aachen.de.858169.1
new file mode 100644
index 0000000000000000000000000000000000000000..c2baabf92ceb5d62917b4d3ae8793b6156ef74c1
Binary files /dev/null and b/runs/fashion_trainer_20230918_200501/Training vs. Validation Loss_Training/events.out.tfevents.1695060303.msip-dell.ims.rwth-aachen.de.858169.1 differ
diff --git a/runs/fashion_trainer_20230918_200501/Training vs. Validation Loss_Validation/events.out.tfevents.1695060303.msip-dell.ims.rwth-aachen.de.858169.2 b/runs/fashion_trainer_20230918_200501/Training vs. Validation Loss_Validation/events.out.tfevents.1695060303.msip-dell.ims.rwth-aachen.de.858169.2
new file mode 100644
index 0000000000000000000000000000000000000000..1f556117b0baa2763b769485186983843aa4a471
Binary files /dev/null and b/runs/fashion_trainer_20230918_200501/Training vs. Validation Loss_Validation/events.out.tfevents.1695060303.msip-dell.ims.rwth-aachen.de.858169.2 differ
diff --git a/runs/fashion_trainer_20230918_200501/events.out.tfevents.1695060301.msip-dell.ims.rwth-aachen.de.858169.0 b/runs/fashion_trainer_20230918_200501/events.out.tfevents.1695060301.msip-dell.ims.rwth-aachen.de.858169.0
new file mode 100644
index 0000000000000000000000000000000000000000..bc047553531f0695b9ead9aa7ea30347d921b449
Binary files /dev/null and b/runs/fashion_trainer_20230918_200501/events.out.tfevents.1695060301.msip-dell.ims.rwth-aachen.de.858169.0 differ
diff --git a/runs/fashion_trainer_20230918_200512/Training vs. Validation Loss_Training/events.out.tfevents.1695060315.msip-dell.ims.rwth-aachen.de.858308.1 b/runs/fashion_trainer_20230918_200512/Training vs. Validation Loss_Training/events.out.tfevents.1695060315.msip-dell.ims.rwth-aachen.de.858308.1
new file mode 100644
index 0000000000000000000000000000000000000000..96061cef2a850bbe55162b41c4dd7ab4df413810
Binary files /dev/null and b/runs/fashion_trainer_20230918_200512/Training vs. Validation Loss_Training/events.out.tfevents.1695060315.msip-dell.ims.rwth-aachen.de.858308.1 differ
diff --git a/runs/fashion_trainer_20230918_200512/Training vs. Validation Loss_Validation/events.out.tfevents.1695060315.msip-dell.ims.rwth-aachen.de.858308.2 b/runs/fashion_trainer_20230918_200512/Training vs. Validation Loss_Validation/events.out.tfevents.1695060315.msip-dell.ims.rwth-aachen.de.858308.2
new file mode 100644
index 0000000000000000000000000000000000000000..123e75f870f6365c9a585d5fb6d6594b740c6104
Binary files /dev/null and b/runs/fashion_trainer_20230918_200512/Training vs. Validation Loss_Validation/events.out.tfevents.1695060315.msip-dell.ims.rwth-aachen.de.858308.2 differ
diff --git a/runs/fashion_trainer_20230918_200512/events.out.tfevents.1695060312.msip-dell.ims.rwth-aachen.de.858308.0 b/runs/fashion_trainer_20230918_200512/events.out.tfevents.1695060312.msip-dell.ims.rwth-aachen.de.858308.0
new file mode 100644
index 0000000000000000000000000000000000000000..0fa77f0703eaa35b92c01474dea8fa8798c3e0f8
Binary files /dev/null and b/runs/fashion_trainer_20230918_200512/events.out.tfevents.1695060312.msip-dell.ims.rwth-aachen.de.858308.0 differ
diff --git a/runs/fashion_trainer_20230918_200607/Training vs. Validation Loss_Training/events.out.tfevents.1695060370.msip-dell.ims.rwth-aachen.de.858497.1 b/runs/fashion_trainer_20230918_200607/Training vs. Validation Loss_Training/events.out.tfevents.1695060370.msip-dell.ims.rwth-aachen.de.858497.1
new file mode 100644
index 0000000000000000000000000000000000000000..9f804318504165d3007a01c653fd2e481a739f5b
Binary files /dev/null and b/runs/fashion_trainer_20230918_200607/Training vs. Validation Loss_Training/events.out.tfevents.1695060370.msip-dell.ims.rwth-aachen.de.858497.1 differ
diff --git a/runs/fashion_trainer_20230918_200607/Training vs. Validation Loss_Validation/events.out.tfevents.1695060370.msip-dell.ims.rwth-aachen.de.858497.2 b/runs/fashion_trainer_20230918_200607/Training vs. Validation Loss_Validation/events.out.tfevents.1695060370.msip-dell.ims.rwth-aachen.de.858497.2
new file mode 100644
index 0000000000000000000000000000000000000000..2b4554a557697d6f08e5e5f6ae780ecde53ff7d7
Binary files /dev/null and b/runs/fashion_trainer_20230918_200607/Training vs. Validation Loss_Validation/events.out.tfevents.1695060370.msip-dell.ims.rwth-aachen.de.858497.2 differ
diff --git a/runs/fashion_trainer_20230918_200607/events.out.tfevents.1695060367.msip-dell.ims.rwth-aachen.de.858497.0 b/runs/fashion_trainer_20230918_200607/events.out.tfevents.1695060367.msip-dell.ims.rwth-aachen.de.858497.0
new file mode 100644
index 0000000000000000000000000000000000000000..eaba97c2213fa482c4d750ebd9a9de3f27581b5d
Binary files /dev/null and b/runs/fashion_trainer_20230918_200607/events.out.tfevents.1695060367.msip-dell.ims.rwth-aachen.de.858497.0 differ
diff --git a/runs/fashion_trainer_20230918_200720/Training vs. Validation Loss_Training/events.out.tfevents.1695060443.msip-dell.ims.rwth-aachen.de.858751.1 b/runs/fashion_trainer_20230918_200720/Training vs. Validation Loss_Training/events.out.tfevents.1695060443.msip-dell.ims.rwth-aachen.de.858751.1
new file mode 100644
index 0000000000000000000000000000000000000000..ef86037c2edf44a2b078418a8a1b37554358f7cc
Binary files /dev/null and b/runs/fashion_trainer_20230918_200720/Training vs. Validation Loss_Training/events.out.tfevents.1695060443.msip-dell.ims.rwth-aachen.de.858751.1 differ
diff --git a/runs/fashion_trainer_20230918_200720/Training vs. Validation Loss_Validation/events.out.tfevents.1695060443.msip-dell.ims.rwth-aachen.de.858751.2 b/runs/fashion_trainer_20230918_200720/Training vs. Validation Loss_Validation/events.out.tfevents.1695060443.msip-dell.ims.rwth-aachen.de.858751.2
new file mode 100644
index 0000000000000000000000000000000000000000..8c8ebdb9cc6d419c33e14fb1bbce49038a85d9b3
Binary files /dev/null and b/runs/fashion_trainer_20230918_200720/Training vs. Validation Loss_Validation/events.out.tfevents.1695060443.msip-dell.ims.rwth-aachen.de.858751.2 differ
diff --git a/runs/fashion_trainer_20230918_200720/events.out.tfevents.1695060440.msip-dell.ims.rwth-aachen.de.858751.0 b/runs/fashion_trainer_20230918_200720/events.out.tfevents.1695060440.msip-dell.ims.rwth-aachen.de.858751.0
new file mode 100644
index 0000000000000000000000000000000000000000..80413e2717f539a4b6e007792869e574102a28b6
Binary files /dev/null and b/runs/fashion_trainer_20230918_200720/events.out.tfevents.1695060440.msip-dell.ims.rwth-aachen.de.858751.0 differ
diff --git a/runs/fashion_trainer_20230918_200919/Training vs. Validation Loss_Training/events.out.tfevents.1695060561.msip-dell.ims.rwth-aachen.de.858751.4 b/runs/fashion_trainer_20230918_200919/Training vs. Validation Loss_Training/events.out.tfevents.1695060561.msip-dell.ims.rwth-aachen.de.858751.4
new file mode 100644
index 0000000000000000000000000000000000000000..d515425d5bacef095ee005d82afd41bc1703f6bc
Binary files /dev/null and b/runs/fashion_trainer_20230918_200919/Training vs. Validation Loss_Training/events.out.tfevents.1695060561.msip-dell.ims.rwth-aachen.de.858751.4 differ
diff --git a/runs/fashion_trainer_20230918_200919/Training vs. Validation Loss_Validation/events.out.tfevents.1695060561.msip-dell.ims.rwth-aachen.de.858751.5 b/runs/fashion_trainer_20230918_200919/Training vs. Validation Loss_Validation/events.out.tfevents.1695060561.msip-dell.ims.rwth-aachen.de.858751.5
new file mode 100644
index 0000000000000000000000000000000000000000..459ed8b86ab8b077f9df799e155305db6a4ec7b5
Binary files /dev/null and b/runs/fashion_trainer_20230918_200919/Training vs. Validation Loss_Validation/events.out.tfevents.1695060561.msip-dell.ims.rwth-aachen.de.858751.5 differ
diff --git a/runs/fashion_trainer_20230918_200919/events.out.tfevents.1695060559.msip-dell.ims.rwth-aachen.de.858751.3 b/runs/fashion_trainer_20230918_200919/events.out.tfevents.1695060559.msip-dell.ims.rwth-aachen.de.858751.3
new file mode 100644
index 0000000000000000000000000000000000000000..ea6429e3de11dcd3b6a1a1bb92873ae02a35c790
Binary files /dev/null and b/runs/fashion_trainer_20230918_200919/events.out.tfevents.1695060559.msip-dell.ims.rwth-aachen.de.858751.3 differ
diff --git a/runs/fashion_trainer_20230918_200939/Training vs. Validation Loss_Training/events.out.tfevents.1695060582.msip-dell.ims.rwth-aachen.de.859838.1 b/runs/fashion_trainer_20230918_200939/Training vs. Validation Loss_Training/events.out.tfevents.1695060582.msip-dell.ims.rwth-aachen.de.859838.1
new file mode 100644
index 0000000000000000000000000000000000000000..2465170a9980423df29f6780466ee0f8435f73bc
Binary files /dev/null and b/runs/fashion_trainer_20230918_200939/Training vs. Validation Loss_Training/events.out.tfevents.1695060582.msip-dell.ims.rwth-aachen.de.859838.1 differ
diff --git a/runs/fashion_trainer_20230918_200939/Training vs. Validation Loss_Validation/events.out.tfevents.1695060582.msip-dell.ims.rwth-aachen.de.859838.2 b/runs/fashion_trainer_20230918_200939/Training vs. Validation Loss_Validation/events.out.tfevents.1695060582.msip-dell.ims.rwth-aachen.de.859838.2
new file mode 100644
index 0000000000000000000000000000000000000000..85dee9b59599f51fc617a4afc2ead1619bb7ba1e
Binary files /dev/null and b/runs/fashion_trainer_20230918_200939/Training vs. Validation Loss_Validation/events.out.tfevents.1695060582.msip-dell.ims.rwth-aachen.de.859838.2 differ
diff --git a/runs/fashion_trainer_20230918_200939/events.out.tfevents.1695060579.msip-dell.ims.rwth-aachen.de.859838.0 b/runs/fashion_trainer_20230918_200939/events.out.tfevents.1695060579.msip-dell.ims.rwth-aachen.de.859838.0
new file mode 100644
index 0000000000000000000000000000000000000000..3d088d1a008d9663f077ca4aab2adc46c0b59df0
Binary files /dev/null and b/runs/fashion_trainer_20230918_200939/events.out.tfevents.1695060579.msip-dell.ims.rwth-aachen.de.859838.0 differ
diff --git a/runs/fashion_trainer_20230918_200948/Training vs. Validation Loss_Training/events.out.tfevents.1695060591.msip-dell.ims.rwth-aachen.de.859838.4 b/runs/fashion_trainer_20230918_200948/Training vs. Validation Loss_Training/events.out.tfevents.1695060591.msip-dell.ims.rwth-aachen.de.859838.4
new file mode 100644
index 0000000000000000000000000000000000000000..1ac60fd69d71d80046db884ae386d8e14597c468
Binary files /dev/null and b/runs/fashion_trainer_20230918_200948/Training vs. Validation Loss_Training/events.out.tfevents.1695060591.msip-dell.ims.rwth-aachen.de.859838.4 differ
diff --git a/runs/fashion_trainer_20230918_200948/Training vs. Validation Loss_Validation/events.out.tfevents.1695060591.msip-dell.ims.rwth-aachen.de.859838.5 b/runs/fashion_trainer_20230918_200948/Training vs. Validation Loss_Validation/events.out.tfevents.1695060591.msip-dell.ims.rwth-aachen.de.859838.5
new file mode 100644
index 0000000000000000000000000000000000000000..77d9011180b9eb89edebd57f3bf37139e14a8a1b
Binary files /dev/null and b/runs/fashion_trainer_20230918_200948/Training vs. Validation Loss_Validation/events.out.tfevents.1695060591.msip-dell.ims.rwth-aachen.de.859838.5 differ
diff --git a/runs/fashion_trainer_20230918_200948/events.out.tfevents.1695060588.msip-dell.ims.rwth-aachen.de.859838.3 b/runs/fashion_trainer_20230918_200948/events.out.tfevents.1695060588.msip-dell.ims.rwth-aachen.de.859838.3
new file mode 100644
index 0000000000000000000000000000000000000000..22d4b31eb875ba304f9cf7bbe5002a573c2f06ce
Binary files /dev/null and b/runs/fashion_trainer_20230918_200948/events.out.tfevents.1695060588.msip-dell.ims.rwth-aachen.de.859838.3 differ
diff --git a/runs/fashion_trainer_20230918_201046/Training vs. Validation Loss_Training/events.out.tfevents.1695060648.msip-dell.ims.rwth-aachen.de.860222.1 b/runs/fashion_trainer_20230918_201046/Training vs. Validation Loss_Training/events.out.tfevents.1695060648.msip-dell.ims.rwth-aachen.de.860222.1
new file mode 100644
index 0000000000000000000000000000000000000000..3141e0fc57beb2b85be1cfc60bb8ea77658e38ae
Binary files /dev/null and b/runs/fashion_trainer_20230918_201046/Training vs. Validation Loss_Training/events.out.tfevents.1695060648.msip-dell.ims.rwth-aachen.de.860222.1 differ
diff --git a/runs/fashion_trainer_20230918_201046/Training vs. Validation Loss_Validation/events.out.tfevents.1695060648.msip-dell.ims.rwth-aachen.de.860222.2 b/runs/fashion_trainer_20230918_201046/Training vs. Validation Loss_Validation/events.out.tfevents.1695060648.msip-dell.ims.rwth-aachen.de.860222.2
new file mode 100644
index 0000000000000000000000000000000000000000..0684527eca28af7eb22e2f9cca3f93658523dea1
Binary files /dev/null and b/runs/fashion_trainer_20230918_201046/Training vs. Validation Loss_Validation/events.out.tfevents.1695060648.msip-dell.ims.rwth-aachen.de.860222.2 differ
diff --git a/runs/fashion_trainer_20230918_201046/events.out.tfevents.1695060646.msip-dell.ims.rwth-aachen.de.860222.0 b/runs/fashion_trainer_20230918_201046/events.out.tfevents.1695060646.msip-dell.ims.rwth-aachen.de.860222.0
new file mode 100644
index 0000000000000000000000000000000000000000..f2290cbfea2b5e36502e7a43485e8022d040a29f
Binary files /dev/null and b/runs/fashion_trainer_20230918_201046/events.out.tfevents.1695060646.msip-dell.ims.rwth-aachen.de.860222.0 differ
diff --git a/runs/fashion_trainer_20230918_201054/Training vs. Validation Loss_Training/events.out.tfevents.1695060657.msip-dell.ims.rwth-aachen.de.860222.4 b/runs/fashion_trainer_20230918_201054/Training vs. Validation Loss_Training/events.out.tfevents.1695060657.msip-dell.ims.rwth-aachen.de.860222.4
new file mode 100644
index 0000000000000000000000000000000000000000..ecda8e3ec10832e9fc741dcca2fe3783aea4c082
Binary files /dev/null and b/runs/fashion_trainer_20230918_201054/Training vs. Validation Loss_Training/events.out.tfevents.1695060657.msip-dell.ims.rwth-aachen.de.860222.4 differ
diff --git a/runs/fashion_trainer_20230918_201054/Training vs. Validation Loss_Validation/events.out.tfevents.1695060657.msip-dell.ims.rwth-aachen.de.860222.5 b/runs/fashion_trainer_20230918_201054/Training vs. Validation Loss_Validation/events.out.tfevents.1695060657.msip-dell.ims.rwth-aachen.de.860222.5
new file mode 100644
index 0000000000000000000000000000000000000000..d4f4bd16223cf0fdc440ee155fbbeefd2a238bbd
Binary files /dev/null and b/runs/fashion_trainer_20230918_201054/Training vs. Validation Loss_Validation/events.out.tfevents.1695060657.msip-dell.ims.rwth-aachen.de.860222.5 differ
diff --git a/runs/fashion_trainer_20230918_201054/events.out.tfevents.1695060654.msip-dell.ims.rwth-aachen.de.860222.3 b/runs/fashion_trainer_20230918_201054/events.out.tfevents.1695060654.msip-dell.ims.rwth-aachen.de.860222.3
new file mode 100644
index 0000000000000000000000000000000000000000..6e6face5a7a186f2ef3fb28470fc61ef293bbaeb
Binary files /dev/null and b/runs/fashion_trainer_20230918_201054/events.out.tfevents.1695060654.msip-dell.ims.rwth-aachen.de.860222.3 differ
diff --git a/runs/fashion_trainer_20230918_201103/Training vs. Validation Loss_Training/events.out.tfevents.1695060666.msip-dell.ims.rwth-aachen.de.860222.7 b/runs/fashion_trainer_20230918_201103/Training vs. Validation Loss_Training/events.out.tfevents.1695060666.msip-dell.ims.rwth-aachen.de.860222.7
new file mode 100644
index 0000000000000000000000000000000000000000..c54bd973f9114787409b977f87a019a6bbfa8686
Binary files /dev/null and b/runs/fashion_trainer_20230918_201103/Training vs. Validation Loss_Training/events.out.tfevents.1695060666.msip-dell.ims.rwth-aachen.de.860222.7 differ
diff --git a/runs/fashion_trainer_20230918_201103/Training vs. Validation Loss_Validation/events.out.tfevents.1695060666.msip-dell.ims.rwth-aachen.de.860222.8 b/runs/fashion_trainer_20230918_201103/Training vs. Validation Loss_Validation/events.out.tfevents.1695060666.msip-dell.ims.rwth-aachen.de.860222.8
new file mode 100644
index 0000000000000000000000000000000000000000..5d8280eea9e7605fcc4103844eb709f21faea814
Binary files /dev/null and b/runs/fashion_trainer_20230918_201103/Training vs. Validation Loss_Validation/events.out.tfevents.1695060666.msip-dell.ims.rwth-aachen.de.860222.8 differ
diff --git a/runs/fashion_trainer_20230918_201103/events.out.tfevents.1695060663.msip-dell.ims.rwth-aachen.de.860222.6 b/runs/fashion_trainer_20230918_201103/events.out.tfevents.1695060663.msip-dell.ims.rwth-aachen.de.860222.6
new file mode 100644
index 0000000000000000000000000000000000000000..07b0bcb1747331e0020b7248d93401e24528afd3
Binary files /dev/null and b/runs/fashion_trainer_20230918_201103/events.out.tfevents.1695060663.msip-dell.ims.rwth-aachen.de.860222.6 differ
diff --git a/runs/fashion_trainer_20230918_201111/Training vs. Validation Loss_Training/events.out.tfevents.1695060674.msip-dell.ims.rwth-aachen.de.860222.10 b/runs/fashion_trainer_20230918_201111/Training vs. Validation Loss_Training/events.out.tfevents.1695060674.msip-dell.ims.rwth-aachen.de.860222.10
new file mode 100644
index 0000000000000000000000000000000000000000..a3c4fd5abe76ee6cd89b2dbace840b20040bd2ef
Binary files /dev/null and b/runs/fashion_trainer_20230918_201111/Training vs. Validation Loss_Training/events.out.tfevents.1695060674.msip-dell.ims.rwth-aachen.de.860222.10 differ
diff --git a/runs/fashion_trainer_20230918_201111/Training vs. Validation Loss_Validation/events.out.tfevents.1695060674.msip-dell.ims.rwth-aachen.de.860222.11 b/runs/fashion_trainer_20230918_201111/Training vs. Validation Loss_Validation/events.out.tfevents.1695060674.msip-dell.ims.rwth-aachen.de.860222.11
new file mode 100644
index 0000000000000000000000000000000000000000..997328e0b692c6b10a61d825f2f45a2a49e81214
Binary files /dev/null and b/runs/fashion_trainer_20230918_201111/Training vs. Validation Loss_Validation/events.out.tfevents.1695060674.msip-dell.ims.rwth-aachen.de.860222.11 differ
diff --git a/runs/fashion_trainer_20230918_201111/events.out.tfevents.1695060671.msip-dell.ims.rwth-aachen.de.860222.9 b/runs/fashion_trainer_20230918_201111/events.out.tfevents.1695060671.msip-dell.ims.rwth-aachen.de.860222.9
new file mode 100644
index 0000000000000000000000000000000000000000..d0f204aef5b4755af7b6c6c03df6978363e275af
Binary files /dev/null and b/runs/fashion_trainer_20230918_201111/events.out.tfevents.1695060671.msip-dell.ims.rwth-aachen.de.860222.9 differ
diff --git a/runs/fashion_trainer_20230918_201800/Training vs. Validation Loss_Training/events.out.tfevents.1695061082.msip-dell.ims.rwth-aachen.de.862629.1 b/runs/fashion_trainer_20230918_201800/Training vs. Validation Loss_Training/events.out.tfevents.1695061082.msip-dell.ims.rwth-aachen.de.862629.1
new file mode 100644
index 0000000000000000000000000000000000000000..43c9d681b4f6775c71433c6caf8ed185f1d4e24b
Binary files /dev/null and b/runs/fashion_trainer_20230918_201800/Training vs. Validation Loss_Training/events.out.tfevents.1695061082.msip-dell.ims.rwth-aachen.de.862629.1 differ
diff --git a/runs/fashion_trainer_20230918_201800/Training vs. Validation Loss_Validation/events.out.tfevents.1695061082.msip-dell.ims.rwth-aachen.de.862629.2 b/runs/fashion_trainer_20230918_201800/Training vs. Validation Loss_Validation/events.out.tfevents.1695061082.msip-dell.ims.rwth-aachen.de.862629.2
new file mode 100644
index 0000000000000000000000000000000000000000..fd180c95485104ab9f5af2361d88076b99bea6ec
Binary files /dev/null and b/runs/fashion_trainer_20230918_201800/Training vs. Validation Loss_Validation/events.out.tfevents.1695061082.msip-dell.ims.rwth-aachen.de.862629.2 differ
diff --git a/runs/fashion_trainer_20230918_201800/events.out.tfevents.1695061080.msip-dell.ims.rwth-aachen.de.862629.0 b/runs/fashion_trainer_20230918_201800/events.out.tfevents.1695061080.msip-dell.ims.rwth-aachen.de.862629.0
new file mode 100644
index 0000000000000000000000000000000000000000..7deed3e74e526ec612fb6aa2d5af149f4444f16d
Binary files /dev/null and b/runs/fashion_trainer_20230918_201800/events.out.tfevents.1695061080.msip-dell.ims.rwth-aachen.de.862629.0 differ
diff --git a/runs/fashion_trainer_20230918_202007/Training vs. Validation Loss_Training/events.out.tfevents.1695061209.msip-dell.ims.rwth-aachen.de.862629.4 b/runs/fashion_trainer_20230918_202007/Training vs. Validation Loss_Training/events.out.tfevents.1695061209.msip-dell.ims.rwth-aachen.de.862629.4
new file mode 100644
index 0000000000000000000000000000000000000000..ce40b228019f93d9dd9d7ce64bda904045dd9f3d
Binary files /dev/null and b/runs/fashion_trainer_20230918_202007/Training vs. Validation Loss_Training/events.out.tfevents.1695061209.msip-dell.ims.rwth-aachen.de.862629.4 differ
diff --git a/runs/fashion_trainer_20230918_202007/Training vs. Validation Loss_Validation/events.out.tfevents.1695061209.msip-dell.ims.rwth-aachen.de.862629.5 b/runs/fashion_trainer_20230918_202007/Training vs. Validation Loss_Validation/events.out.tfevents.1695061209.msip-dell.ims.rwth-aachen.de.862629.5
new file mode 100644
index 0000000000000000000000000000000000000000..79a6a796687bef76e1e5d913cf6a97f1efbd910b
Binary files /dev/null and b/runs/fashion_trainer_20230918_202007/Training vs. Validation Loss_Validation/events.out.tfevents.1695061209.msip-dell.ims.rwth-aachen.de.862629.5 differ
diff --git a/runs/fashion_trainer_20230918_202007/events.out.tfevents.1695061207.msip-dell.ims.rwth-aachen.de.862629.3 b/runs/fashion_trainer_20230918_202007/events.out.tfevents.1695061207.msip-dell.ims.rwth-aachen.de.862629.3
new file mode 100644
index 0000000000000000000000000000000000000000..6657aa1660fc8dca1640410c9f1a0179f5d6cfcc
Binary files /dev/null and b/runs/fashion_trainer_20230918_202007/events.out.tfevents.1695061207.msip-dell.ims.rwth-aachen.de.862629.3 differ
diff --git a/runs/fashion_trainer_20230918_202214/Training vs. Validation Loss_Training/events.out.tfevents.1695061336.msip-dell.ims.rwth-aachen.de.862629.7 b/runs/fashion_trainer_20230918_202214/Training vs. Validation Loss_Training/events.out.tfevents.1695061336.msip-dell.ims.rwth-aachen.de.862629.7
new file mode 100644
index 0000000000000000000000000000000000000000..1a632b9139802b7940dd91209eb3ce8936150e3c
Binary files /dev/null and b/runs/fashion_trainer_20230918_202214/Training vs. Validation Loss_Training/events.out.tfevents.1695061336.msip-dell.ims.rwth-aachen.de.862629.7 differ
diff --git a/runs/fashion_trainer_20230918_202214/Training vs. Validation Loss_Validation/events.out.tfevents.1695061336.msip-dell.ims.rwth-aachen.de.862629.8 b/runs/fashion_trainer_20230918_202214/Training vs. Validation Loss_Validation/events.out.tfevents.1695061336.msip-dell.ims.rwth-aachen.de.862629.8
new file mode 100644
index 0000000000000000000000000000000000000000..d4c516ceeb5b1d4d2009bdcef345d6dce0cf5753
Binary files /dev/null and b/runs/fashion_trainer_20230918_202214/Training vs. Validation Loss_Validation/events.out.tfevents.1695061336.msip-dell.ims.rwth-aachen.de.862629.8 differ
diff --git a/runs/fashion_trainer_20230918_202214/events.out.tfevents.1695061334.msip-dell.ims.rwth-aachen.de.862629.6 b/runs/fashion_trainer_20230918_202214/events.out.tfevents.1695061334.msip-dell.ims.rwth-aachen.de.862629.6
new file mode 100644
index 0000000000000000000000000000000000000000..7b48a664e288903961cc7908fc61dd7bef15cd39
Binary files /dev/null and b/runs/fashion_trainer_20230918_202214/events.out.tfevents.1695061334.msip-dell.ims.rwth-aachen.de.862629.6 differ
diff --git a/runs/fashion_trainer_20230918_202434/Training vs. Validation Loss_Training/events.out.tfevents.1695061476.msip-dell.ims.rwth-aachen.de.862629.10 b/runs/fashion_trainer_20230918_202434/Training vs. Validation Loss_Training/events.out.tfevents.1695061476.msip-dell.ims.rwth-aachen.de.862629.10
new file mode 100644
index 0000000000000000000000000000000000000000..bda4844ba63beb84cdd14a328ddf6ee88f03f0a0
Binary files /dev/null and b/runs/fashion_trainer_20230918_202434/Training vs. Validation Loss_Training/events.out.tfevents.1695061476.msip-dell.ims.rwth-aachen.de.862629.10 differ
diff --git a/runs/fashion_trainer_20230918_202434/Training vs. Validation Loss_Validation/events.out.tfevents.1695061476.msip-dell.ims.rwth-aachen.de.862629.11 b/runs/fashion_trainer_20230918_202434/Training vs. Validation Loss_Validation/events.out.tfevents.1695061476.msip-dell.ims.rwth-aachen.de.862629.11
new file mode 100644
index 0000000000000000000000000000000000000000..443eccbbbc8f3f025a142b45d8fc6841f5b9a90b
Binary files /dev/null and b/runs/fashion_trainer_20230918_202434/Training vs. Validation Loss_Validation/events.out.tfevents.1695061476.msip-dell.ims.rwth-aachen.de.862629.11 differ
diff --git a/runs/fashion_trainer_20230918_202434/events.out.tfevents.1695061474.msip-dell.ims.rwth-aachen.de.862629.9 b/runs/fashion_trainer_20230918_202434/events.out.tfevents.1695061474.msip-dell.ims.rwth-aachen.de.862629.9
new file mode 100644
index 0000000000000000000000000000000000000000..cd4707988fa2586bf42c1f4473d931aa9ca304bb
Binary files /dev/null and b/runs/fashion_trainer_20230918_202434/events.out.tfevents.1695061474.msip-dell.ims.rwth-aachen.de.862629.9 differ
diff --git a/runs/fashion_trainer_20230918_203902/Training vs. Validation Loss_Training/events.out.tfevents.1695062345.msip-dell.ims.rwth-aachen.de.865450.1 b/runs/fashion_trainer_20230918_203902/Training vs. Validation Loss_Training/events.out.tfevents.1695062345.msip-dell.ims.rwth-aachen.de.865450.1
new file mode 100644
index 0000000000000000000000000000000000000000..be30b33615fda12bafc775a636a4b1da0288f13a
Binary files /dev/null and b/runs/fashion_trainer_20230918_203902/Training vs. Validation Loss_Training/events.out.tfevents.1695062345.msip-dell.ims.rwth-aachen.de.865450.1 differ
diff --git a/runs/fashion_trainer_20230918_203902/Training vs. Validation Loss_Validation/events.out.tfevents.1695062345.msip-dell.ims.rwth-aachen.de.865450.2 b/runs/fashion_trainer_20230918_203902/Training vs. Validation Loss_Validation/events.out.tfevents.1695062345.msip-dell.ims.rwth-aachen.de.865450.2
new file mode 100644
index 0000000000000000000000000000000000000000..6e7ac0db4afc1c777cb7f3ba5aa19a6d8e47e7a0
Binary files /dev/null and b/runs/fashion_trainer_20230918_203902/Training vs. Validation Loss_Validation/events.out.tfevents.1695062345.msip-dell.ims.rwth-aachen.de.865450.2 differ
diff --git a/runs/fashion_trainer_20230918_203902/events.out.tfevents.1695062342.msip-dell.ims.rwth-aachen.de.865450.0 b/runs/fashion_trainer_20230918_203902/events.out.tfevents.1695062342.msip-dell.ims.rwth-aachen.de.865450.0
new file mode 100644
index 0000000000000000000000000000000000000000..290c4763ef7b4f96282974a507ef946b8d23b4e6
Binary files /dev/null and b/runs/fashion_trainer_20230918_203902/events.out.tfevents.1695062342.msip-dell.ims.rwth-aachen.de.865450.0 differ
diff --git a/runs/fashion_trainer_20230918_204129/Training vs. Validation Loss_Training/events.out.tfevents.1695062491.msip-dell.ims.rwth-aachen.de.865450.4 b/runs/fashion_trainer_20230918_204129/Training vs. Validation Loss_Training/events.out.tfevents.1695062491.msip-dell.ims.rwth-aachen.de.865450.4
new file mode 100644
index 0000000000000000000000000000000000000000..f84482a7ae73b8f8113e9f5e0308b7d2be77297c
Binary files /dev/null and b/runs/fashion_trainer_20230918_204129/Training vs. Validation Loss_Training/events.out.tfevents.1695062491.msip-dell.ims.rwth-aachen.de.865450.4 differ
diff --git a/runs/fashion_trainer_20230918_204129/Training vs. Validation Loss_Validation/events.out.tfevents.1695062491.msip-dell.ims.rwth-aachen.de.865450.5 b/runs/fashion_trainer_20230918_204129/Training vs. Validation Loss_Validation/events.out.tfevents.1695062491.msip-dell.ims.rwth-aachen.de.865450.5
new file mode 100644
index 0000000000000000000000000000000000000000..7ac0112e566cb7cf5aed531eb126ea84ef223c05
Binary files /dev/null and b/runs/fashion_trainer_20230918_204129/Training vs. Validation Loss_Validation/events.out.tfevents.1695062491.msip-dell.ims.rwth-aachen.de.865450.5 differ
diff --git a/runs/fashion_trainer_20230918_204129/events.out.tfevents.1695062489.msip-dell.ims.rwth-aachen.de.865450.3 b/runs/fashion_trainer_20230918_204129/events.out.tfevents.1695062489.msip-dell.ims.rwth-aachen.de.865450.3
new file mode 100644
index 0000000000000000000000000000000000000000..19cc90974865f190319bc3619e0027d74279155b
Binary files /dev/null and b/runs/fashion_trainer_20230918_204129/events.out.tfevents.1695062489.msip-dell.ims.rwth-aachen.de.865450.3 differ
diff --git a/runs/fashion_trainer_20230918_204356/Training vs. Validation Loss_Training/events.out.tfevents.1695062638.msip-dell.ims.rwth-aachen.de.865450.7 b/runs/fashion_trainer_20230918_204356/Training vs. Validation Loss_Training/events.out.tfevents.1695062638.msip-dell.ims.rwth-aachen.de.865450.7
new file mode 100644
index 0000000000000000000000000000000000000000..ec751e0ed466806120ecd4ac44c708e6280bbae1
Binary files /dev/null and b/runs/fashion_trainer_20230918_204356/Training vs. Validation Loss_Training/events.out.tfevents.1695062638.msip-dell.ims.rwth-aachen.de.865450.7 differ
diff --git a/runs/fashion_trainer_20230918_204356/Training vs. Validation Loss_Validation/events.out.tfevents.1695062638.msip-dell.ims.rwth-aachen.de.865450.8 b/runs/fashion_trainer_20230918_204356/Training vs. Validation Loss_Validation/events.out.tfevents.1695062638.msip-dell.ims.rwth-aachen.de.865450.8
new file mode 100644
index 0000000000000000000000000000000000000000..99ab84b03ae28f5633e566b115722dbb6b0edbe3
Binary files /dev/null and b/runs/fashion_trainer_20230918_204356/Training vs. Validation Loss_Validation/events.out.tfevents.1695062638.msip-dell.ims.rwth-aachen.de.865450.8 differ
diff --git a/runs/fashion_trainer_20230918_204356/events.out.tfevents.1695062636.msip-dell.ims.rwth-aachen.de.865450.6 b/runs/fashion_trainer_20230918_204356/events.out.tfevents.1695062636.msip-dell.ims.rwth-aachen.de.865450.6
new file mode 100644
index 0000000000000000000000000000000000000000..27380bffcd018e4a38a9ec1b65125a48f2b2ed73
Binary files /dev/null and b/runs/fashion_trainer_20230918_204356/events.out.tfevents.1695062636.msip-dell.ims.rwth-aachen.de.865450.6 differ
diff --git a/runs/fashion_trainer_20230918_204551/Training vs. Validation Loss_Training/events.out.tfevents.1695062753.msip-dell.ims.rwth-aachen.de.865450.10 b/runs/fashion_trainer_20230918_204551/Training vs. Validation Loss_Training/events.out.tfevents.1695062753.msip-dell.ims.rwth-aachen.de.865450.10
new file mode 100644
index 0000000000000000000000000000000000000000..a5252f5f7c65442463e0f69e29dc5566029caedf
Binary files /dev/null and b/runs/fashion_trainer_20230918_204551/Training vs. Validation Loss_Training/events.out.tfevents.1695062753.msip-dell.ims.rwth-aachen.de.865450.10 differ
diff --git a/runs/fashion_trainer_20230918_204551/Training vs. Validation Loss_Validation/events.out.tfevents.1695062753.msip-dell.ims.rwth-aachen.de.865450.11 b/runs/fashion_trainer_20230918_204551/Training vs. Validation Loss_Validation/events.out.tfevents.1695062753.msip-dell.ims.rwth-aachen.de.865450.11
new file mode 100644
index 0000000000000000000000000000000000000000..886e1de0ed0f2a93f1f62dcf077cfaffe12e4611
Binary files /dev/null and b/runs/fashion_trainer_20230918_204551/Training vs. Validation Loss_Validation/events.out.tfevents.1695062753.msip-dell.ims.rwth-aachen.de.865450.11 differ
diff --git a/runs/fashion_trainer_20230918_204551/events.out.tfevents.1695062751.msip-dell.ims.rwth-aachen.de.865450.9 b/runs/fashion_trainer_20230918_204551/events.out.tfevents.1695062751.msip-dell.ims.rwth-aachen.de.865450.9
new file mode 100644
index 0000000000000000000000000000000000000000..e406f0ed3205df581ceeac33128ec13b3d2fec6e
Binary files /dev/null and b/runs/fashion_trainer_20230918_204551/events.out.tfevents.1695062751.msip-dell.ims.rwth-aachen.de.865450.9 differ
diff --git a/runs/fashion_trainer_20230918_204753/Training vs. Validation Loss_Training/events.out.tfevents.1695062875.msip-dell.ims.rwth-aachen.de.865450.13 b/runs/fashion_trainer_20230918_204753/Training vs. Validation Loss_Training/events.out.tfevents.1695062875.msip-dell.ims.rwth-aachen.de.865450.13
new file mode 100644
index 0000000000000000000000000000000000000000..0830c53e717df779692de2f64e14920528edaf55
Binary files /dev/null and b/runs/fashion_trainer_20230918_204753/Training vs. Validation Loss_Training/events.out.tfevents.1695062875.msip-dell.ims.rwth-aachen.de.865450.13 differ
diff --git a/runs/fashion_trainer_20230918_204753/Training vs. Validation Loss_Validation/events.out.tfevents.1695062875.msip-dell.ims.rwth-aachen.de.865450.14 b/runs/fashion_trainer_20230918_204753/Training vs. Validation Loss_Validation/events.out.tfevents.1695062875.msip-dell.ims.rwth-aachen.de.865450.14
new file mode 100644
index 0000000000000000000000000000000000000000..b0fa7eb613878108b4cf4c89700e2c03ac99af75
Binary files /dev/null and b/runs/fashion_trainer_20230918_204753/Training vs. Validation Loss_Validation/events.out.tfevents.1695062875.msip-dell.ims.rwth-aachen.de.865450.14 differ
diff --git a/runs/fashion_trainer_20230918_204753/events.out.tfevents.1695062873.msip-dell.ims.rwth-aachen.de.865450.12 b/runs/fashion_trainer_20230918_204753/events.out.tfevents.1695062873.msip-dell.ims.rwth-aachen.de.865450.12
new file mode 100644
index 0000000000000000000000000000000000000000..bb49f997b89d3284724ac918afe119a0be2b50c4
Binary files /dev/null and b/runs/fashion_trainer_20230918_204753/events.out.tfevents.1695062873.msip-dell.ims.rwth-aachen.de.865450.12 differ
diff --git a/runs/fashion_trainer_20230918_204950/Training vs. Validation Loss_Training/events.out.tfevents.1695062992.msip-dell.ims.rwth-aachen.de.865450.16 b/runs/fashion_trainer_20230918_204950/Training vs. Validation Loss_Training/events.out.tfevents.1695062992.msip-dell.ims.rwth-aachen.de.865450.16
new file mode 100644
index 0000000000000000000000000000000000000000..967bdd06963876b971cfe381359648eff8bc575f
Binary files /dev/null and b/runs/fashion_trainer_20230918_204950/Training vs. Validation Loss_Training/events.out.tfevents.1695062992.msip-dell.ims.rwth-aachen.de.865450.16 differ
diff --git a/runs/fashion_trainer_20230918_204950/Training vs. Validation Loss_Validation/events.out.tfevents.1695062992.msip-dell.ims.rwth-aachen.de.865450.17 b/runs/fashion_trainer_20230918_204950/Training vs. Validation Loss_Validation/events.out.tfevents.1695062992.msip-dell.ims.rwth-aachen.de.865450.17
new file mode 100644
index 0000000000000000000000000000000000000000..2bb00f7eb38747030132be7888ddd46510497ea0
Binary files /dev/null and b/runs/fashion_trainer_20230918_204950/Training vs. Validation Loss_Validation/events.out.tfevents.1695062992.msip-dell.ims.rwth-aachen.de.865450.17 differ
diff --git a/runs/fashion_trainer_20230918_204950/events.out.tfevents.1695062990.msip-dell.ims.rwth-aachen.de.865450.15 b/runs/fashion_trainer_20230918_204950/events.out.tfevents.1695062990.msip-dell.ims.rwth-aachen.de.865450.15
new file mode 100644
index 0000000000000000000000000000000000000000..608b42b20e49fabb8630707fac0ab551e4d63a81
Binary files /dev/null and b/runs/fashion_trainer_20230918_204950/events.out.tfevents.1695062990.msip-dell.ims.rwth-aachen.de.865450.15 differ
diff --git a/runs/fashion_trainer_20230918_205155/Training vs. Validation Loss_Training/events.out.tfevents.1695063118.msip-dell.ims.rwth-aachen.de.865450.19 b/runs/fashion_trainer_20230918_205155/Training vs. Validation Loss_Training/events.out.tfevents.1695063118.msip-dell.ims.rwth-aachen.de.865450.19
new file mode 100644
index 0000000000000000000000000000000000000000..d334a2258e4f6013e46700e4d792cec58d3f8baf
Binary files /dev/null and b/runs/fashion_trainer_20230918_205155/Training vs. Validation Loss_Training/events.out.tfevents.1695063118.msip-dell.ims.rwth-aachen.de.865450.19 differ
diff --git a/runs/fashion_trainer_20230918_205155/Training vs. Validation Loss_Validation/events.out.tfevents.1695063118.msip-dell.ims.rwth-aachen.de.865450.20 b/runs/fashion_trainer_20230918_205155/Training vs. Validation Loss_Validation/events.out.tfevents.1695063118.msip-dell.ims.rwth-aachen.de.865450.20
new file mode 100644
index 0000000000000000000000000000000000000000..5feedf776049eaf481de241473255a1c56cee219
Binary files /dev/null and b/runs/fashion_trainer_20230918_205155/Training vs. Validation Loss_Validation/events.out.tfevents.1695063118.msip-dell.ims.rwth-aachen.de.865450.20 differ
diff --git a/runs/fashion_trainer_20230918_205155/events.out.tfevents.1695063115.msip-dell.ims.rwth-aachen.de.865450.18 b/runs/fashion_trainer_20230918_205155/events.out.tfevents.1695063115.msip-dell.ims.rwth-aachen.de.865450.18
new file mode 100644
index 0000000000000000000000000000000000000000..5e18aface71aeb9c807185c3baae262d7e8c6d85
Binary files /dev/null and b/runs/fashion_trainer_20230918_205155/events.out.tfevents.1695063115.msip-dell.ims.rwth-aachen.de.865450.18 differ
diff --git a/runs/fashion_trainer_20230918_205403/Training vs. Validation Loss_Training/events.out.tfevents.1695063246.msip-dell.ims.rwth-aachen.de.865450.22 b/runs/fashion_trainer_20230918_205403/Training vs. Validation Loss_Training/events.out.tfevents.1695063246.msip-dell.ims.rwth-aachen.de.865450.22
new file mode 100644
index 0000000000000000000000000000000000000000..a0583e028b043fae2d154c312a5a4f77ad754c21
Binary files /dev/null and b/runs/fashion_trainer_20230918_205403/Training vs. Validation Loss_Training/events.out.tfevents.1695063246.msip-dell.ims.rwth-aachen.de.865450.22 differ
diff --git a/runs/fashion_trainer_20230918_205403/Training vs. Validation Loss_Validation/events.out.tfevents.1695063246.msip-dell.ims.rwth-aachen.de.865450.23 b/runs/fashion_trainer_20230918_205403/Training vs. Validation Loss_Validation/events.out.tfevents.1695063246.msip-dell.ims.rwth-aachen.de.865450.23
new file mode 100644
index 0000000000000000000000000000000000000000..2c5eb1b418d7d830b447a04e2d5768bb71c7ebc6
Binary files /dev/null and b/runs/fashion_trainer_20230918_205403/Training vs. Validation Loss_Validation/events.out.tfevents.1695063246.msip-dell.ims.rwth-aachen.de.865450.23 differ
diff --git a/runs/fashion_trainer_20230918_205403/events.out.tfevents.1695063243.msip-dell.ims.rwth-aachen.de.865450.21 b/runs/fashion_trainer_20230918_205403/events.out.tfevents.1695063243.msip-dell.ims.rwth-aachen.de.865450.21
new file mode 100644
index 0000000000000000000000000000000000000000..24a2ca12978d8e1bd606630daca72eb94d94b01e
Binary files /dev/null and b/runs/fashion_trainer_20230918_205403/events.out.tfevents.1695063243.msip-dell.ims.rwth-aachen.de.865450.21 differ
diff --git a/runs/fashion_trainer_20230918_205613/Training vs. Validation Loss_Training/events.out.tfevents.1695063375.msip-dell.ims.rwth-aachen.de.865450.25 b/runs/fashion_trainer_20230918_205613/Training vs. Validation Loss_Training/events.out.tfevents.1695063375.msip-dell.ims.rwth-aachen.de.865450.25
new file mode 100644
index 0000000000000000000000000000000000000000..052abf31f586459a8283c4a08b6522847b531736
Binary files /dev/null and b/runs/fashion_trainer_20230918_205613/Training vs. Validation Loss_Training/events.out.tfevents.1695063375.msip-dell.ims.rwth-aachen.de.865450.25 differ
diff --git a/runs/fashion_trainer_20230918_205613/Training vs. Validation Loss_Validation/events.out.tfevents.1695063375.msip-dell.ims.rwth-aachen.de.865450.26 b/runs/fashion_trainer_20230918_205613/Training vs. Validation Loss_Validation/events.out.tfevents.1695063375.msip-dell.ims.rwth-aachen.de.865450.26
new file mode 100644
index 0000000000000000000000000000000000000000..cb7fbf24cb476a4e51d010027dab638dede959d8
Binary files /dev/null and b/runs/fashion_trainer_20230918_205613/Training vs. Validation Loss_Validation/events.out.tfevents.1695063375.msip-dell.ims.rwth-aachen.de.865450.26 differ
diff --git a/runs/fashion_trainer_20230918_205613/events.out.tfevents.1695063373.msip-dell.ims.rwth-aachen.de.865450.24 b/runs/fashion_trainer_20230918_205613/events.out.tfevents.1695063373.msip-dell.ims.rwth-aachen.de.865450.24
new file mode 100644
index 0000000000000000000000000000000000000000..168fc61f732f64b74d3c5393267342b8e39c5b0c
Binary files /dev/null and b/runs/fashion_trainer_20230918_205613/events.out.tfevents.1695063373.msip-dell.ims.rwth-aachen.de.865450.24 differ
diff --git a/runs/fashion_trainer_20230918_205805/Training vs. Validation Loss_Training/events.out.tfevents.1695063487.msip-dell.ims.rwth-aachen.de.865450.28 b/runs/fashion_trainer_20230918_205805/Training vs. Validation Loss_Training/events.out.tfevents.1695063487.msip-dell.ims.rwth-aachen.de.865450.28
new file mode 100644
index 0000000000000000000000000000000000000000..7c0d2bfa76d170067fe6b6bdc77f9c637a24a0b9
Binary files /dev/null and b/runs/fashion_trainer_20230918_205805/Training vs. Validation Loss_Training/events.out.tfevents.1695063487.msip-dell.ims.rwth-aachen.de.865450.28 differ
diff --git a/runs/fashion_trainer_20230918_205805/Training vs. Validation Loss_Validation/events.out.tfevents.1695063487.msip-dell.ims.rwth-aachen.de.865450.29 b/runs/fashion_trainer_20230918_205805/Training vs. Validation Loss_Validation/events.out.tfevents.1695063487.msip-dell.ims.rwth-aachen.de.865450.29
new file mode 100644
index 0000000000000000000000000000000000000000..d463198c15c61455d9b36ea106cea406295b63d6
Binary files /dev/null and b/runs/fashion_trainer_20230918_205805/Training vs. Validation Loss_Validation/events.out.tfevents.1695063487.msip-dell.ims.rwth-aachen.de.865450.29 differ
diff --git a/runs/fashion_trainer_20230918_205805/events.out.tfevents.1695063485.msip-dell.ims.rwth-aachen.de.865450.27 b/runs/fashion_trainer_20230918_205805/events.out.tfevents.1695063485.msip-dell.ims.rwth-aachen.de.865450.27
new file mode 100644
index 0000000000000000000000000000000000000000..aac5b44bb9e09fcd7a40f3bcc91d0940b5480665
Binary files /dev/null and b/runs/fashion_trainer_20230918_205805/events.out.tfevents.1695063485.msip-dell.ims.rwth-aachen.de.865450.27 differ
diff --git a/runs/fashion_trainer_20230919_072433/Training vs. Validation Loss_Training/events.out.tfevents.1695101075.msip-dell.ims.rwth-aachen.de.963514.1 b/runs/fashion_trainer_20230919_072433/Training vs. Validation Loss_Training/events.out.tfevents.1695101075.msip-dell.ims.rwth-aachen.de.963514.1
new file mode 100644
index 0000000000000000000000000000000000000000..119684a2cf1542c79d37dd3a94cfe43ae8e344c3
Binary files /dev/null and b/runs/fashion_trainer_20230919_072433/Training vs. Validation Loss_Training/events.out.tfevents.1695101075.msip-dell.ims.rwth-aachen.de.963514.1 differ
diff --git a/runs/fashion_trainer_20230919_072433/Training vs. Validation Loss_Validation/events.out.tfevents.1695101075.msip-dell.ims.rwth-aachen.de.963514.2 b/runs/fashion_trainer_20230919_072433/Training vs. Validation Loss_Validation/events.out.tfevents.1695101075.msip-dell.ims.rwth-aachen.de.963514.2
new file mode 100644
index 0000000000000000000000000000000000000000..79632536ee46a8eb4a406a053f86df5c24ea0cca
Binary files /dev/null and b/runs/fashion_trainer_20230919_072433/Training vs. Validation Loss_Validation/events.out.tfevents.1695101075.msip-dell.ims.rwth-aachen.de.963514.2 differ
diff --git a/runs/fashion_trainer_20230919_072433/events.out.tfevents.1695101073.msip-dell.ims.rwth-aachen.de.963514.0 b/runs/fashion_trainer_20230919_072433/events.out.tfevents.1695101073.msip-dell.ims.rwth-aachen.de.963514.0
new file mode 100644
index 0000000000000000000000000000000000000000..5a2ac6b62dfd23a2c82330e977cba3b646a70157
Binary files /dev/null and b/runs/fashion_trainer_20230919_072433/events.out.tfevents.1695101073.msip-dell.ims.rwth-aachen.de.963514.0 differ
diff --git a/runs/fashion_trainer_20230919_072654/Training vs. Validation Loss_Training/events.out.tfevents.1695101217.msip-dell.ims.rwth-aachen.de.963514.4 b/runs/fashion_trainer_20230919_072654/Training vs. Validation Loss_Training/events.out.tfevents.1695101217.msip-dell.ims.rwth-aachen.de.963514.4
new file mode 100644
index 0000000000000000000000000000000000000000..a8ddebb31e9a80cd50e6fec074158c83a06b7aad
Binary files /dev/null and b/runs/fashion_trainer_20230919_072654/Training vs. Validation Loss_Training/events.out.tfevents.1695101217.msip-dell.ims.rwth-aachen.de.963514.4 differ
diff --git a/runs/fashion_trainer_20230919_072654/Training vs. Validation Loss_Validation/events.out.tfevents.1695101217.msip-dell.ims.rwth-aachen.de.963514.5 b/runs/fashion_trainer_20230919_072654/Training vs. Validation Loss_Validation/events.out.tfevents.1695101217.msip-dell.ims.rwth-aachen.de.963514.5
new file mode 100644
index 0000000000000000000000000000000000000000..2bc94f12001f3d35d3f64a5205cbcdf5f6e8d538
Binary files /dev/null and b/runs/fashion_trainer_20230919_072654/Training vs. Validation Loss_Validation/events.out.tfevents.1695101217.msip-dell.ims.rwth-aachen.de.963514.5 differ
diff --git a/runs/fashion_trainer_20230919_072654/events.out.tfevents.1695101214.msip-dell.ims.rwth-aachen.de.963514.3 b/runs/fashion_trainer_20230919_072654/events.out.tfevents.1695101214.msip-dell.ims.rwth-aachen.de.963514.3
new file mode 100644
index 0000000000000000000000000000000000000000..c449815354d408538ca5f9ee94020c90b3973c4a
Binary files /dev/null and b/runs/fashion_trainer_20230919_072654/events.out.tfevents.1695101214.msip-dell.ims.rwth-aachen.de.963514.3 differ
diff --git a/runs/fashion_trainer_20230919_072919/Training vs. Validation Loss_Training/events.out.tfevents.1695101361.msip-dell.ims.rwth-aachen.de.963514.7 b/runs/fashion_trainer_20230919_072919/Training vs. Validation Loss_Training/events.out.tfevents.1695101361.msip-dell.ims.rwth-aachen.de.963514.7
new file mode 100644
index 0000000000000000000000000000000000000000..3053e373b575eba76d8bb86aeff6290ccd662cc3
Binary files /dev/null and b/runs/fashion_trainer_20230919_072919/Training vs. Validation Loss_Training/events.out.tfevents.1695101361.msip-dell.ims.rwth-aachen.de.963514.7 differ
diff --git a/runs/fashion_trainer_20230919_072919/Training vs. Validation Loss_Validation/events.out.tfevents.1695101361.msip-dell.ims.rwth-aachen.de.963514.8 b/runs/fashion_trainer_20230919_072919/Training vs. Validation Loss_Validation/events.out.tfevents.1695101361.msip-dell.ims.rwth-aachen.de.963514.8
new file mode 100644
index 0000000000000000000000000000000000000000..e9764913125de40916c683e4c8e143dde54e1bbf
Binary files /dev/null and b/runs/fashion_trainer_20230919_072919/Training vs. Validation Loss_Validation/events.out.tfevents.1695101361.msip-dell.ims.rwth-aachen.de.963514.8 differ
diff --git a/runs/fashion_trainer_20230919_072919/events.out.tfevents.1695101359.msip-dell.ims.rwth-aachen.de.963514.6 b/runs/fashion_trainer_20230919_072919/events.out.tfevents.1695101359.msip-dell.ims.rwth-aachen.de.963514.6
new file mode 100644
index 0000000000000000000000000000000000000000..072c2893c14f767472417bc883648487273e6c0e
Binary files /dev/null and b/runs/fashion_trainer_20230919_072919/events.out.tfevents.1695101359.msip-dell.ims.rwth-aachen.de.963514.6 differ
diff --git a/runs/fashion_trainer_20230919_073140/Training vs. Validation Loss_Training/events.out.tfevents.1695101503.msip-dell.ims.rwth-aachen.de.963514.10 b/runs/fashion_trainer_20230919_073140/Training vs. Validation Loss_Training/events.out.tfevents.1695101503.msip-dell.ims.rwth-aachen.de.963514.10
new file mode 100644
index 0000000000000000000000000000000000000000..02744e9dc39f22d32a8a9e7c8e2722f959ab0736
Binary files /dev/null and b/runs/fashion_trainer_20230919_073140/Training vs. Validation Loss_Training/events.out.tfevents.1695101503.msip-dell.ims.rwth-aachen.de.963514.10 differ
diff --git a/runs/fashion_trainer_20230919_073140/Training vs. Validation Loss_Validation/events.out.tfevents.1695101503.msip-dell.ims.rwth-aachen.de.963514.11 b/runs/fashion_trainer_20230919_073140/Training vs. Validation Loss_Validation/events.out.tfevents.1695101503.msip-dell.ims.rwth-aachen.de.963514.11
new file mode 100644
index 0000000000000000000000000000000000000000..3b8569e2481a89b283c320dda6586f67a8f0cad3
Binary files /dev/null and b/runs/fashion_trainer_20230919_073140/Training vs. Validation Loss_Validation/events.out.tfevents.1695101503.msip-dell.ims.rwth-aachen.de.963514.11 differ
diff --git a/runs/fashion_trainer_20230919_073140/events.out.tfevents.1695101500.msip-dell.ims.rwth-aachen.de.963514.9 b/runs/fashion_trainer_20230919_073140/events.out.tfevents.1695101500.msip-dell.ims.rwth-aachen.de.963514.9
new file mode 100644
index 0000000000000000000000000000000000000000..44d10fa6749d3601f5ad063ab43c1ba88721c4ef
Binary files /dev/null and b/runs/fashion_trainer_20230919_073140/events.out.tfevents.1695101500.msip-dell.ims.rwth-aachen.de.963514.9 differ
diff --git a/runs/fashion_trainer_20230919_073409/Training vs. Validation Loss_Training/events.out.tfevents.1695101652.msip-dell.ims.rwth-aachen.de.963514.13 b/runs/fashion_trainer_20230919_073409/Training vs. Validation Loss_Training/events.out.tfevents.1695101652.msip-dell.ims.rwth-aachen.de.963514.13
new file mode 100644
index 0000000000000000000000000000000000000000..e325ba66e7d6abee858ff182507a129f1a05ddf5
Binary files /dev/null and b/runs/fashion_trainer_20230919_073409/Training vs. Validation Loss_Training/events.out.tfevents.1695101652.msip-dell.ims.rwth-aachen.de.963514.13 differ
diff --git a/runs/fashion_trainer_20230919_073409/Training vs. Validation Loss_Validation/events.out.tfevents.1695101652.msip-dell.ims.rwth-aachen.de.963514.14 b/runs/fashion_trainer_20230919_073409/Training vs. Validation Loss_Validation/events.out.tfevents.1695101652.msip-dell.ims.rwth-aachen.de.963514.14
new file mode 100644
index 0000000000000000000000000000000000000000..00b06abc978b9ebe35fb8e052a681552d3508dc2
Binary files /dev/null and b/runs/fashion_trainer_20230919_073409/Training vs. Validation Loss_Validation/events.out.tfevents.1695101652.msip-dell.ims.rwth-aachen.de.963514.14 differ
diff --git a/runs/fashion_trainer_20230919_073409/events.out.tfevents.1695101649.msip-dell.ims.rwth-aachen.de.963514.12 b/runs/fashion_trainer_20230919_073409/events.out.tfevents.1695101649.msip-dell.ims.rwth-aachen.de.963514.12
new file mode 100644
index 0000000000000000000000000000000000000000..cf0933f2ab7a1f5520bb0ae99ed7d94f261120c6
Binary files /dev/null and b/runs/fashion_trainer_20230919_073409/events.out.tfevents.1695101649.msip-dell.ims.rwth-aachen.de.963514.12 differ
diff --git a/runs/fashion_trainer_20230919_073630/Training vs. Validation Loss_Training/events.out.tfevents.1695101793.msip-dell.ims.rwth-aachen.de.963514.16 b/runs/fashion_trainer_20230919_073630/Training vs. Validation Loss_Training/events.out.tfevents.1695101793.msip-dell.ims.rwth-aachen.de.963514.16
new file mode 100644
index 0000000000000000000000000000000000000000..bcf0a1da3df6762116eac9cc667c98f07fe65b03
Binary files /dev/null and b/runs/fashion_trainer_20230919_073630/Training vs. Validation Loss_Training/events.out.tfevents.1695101793.msip-dell.ims.rwth-aachen.de.963514.16 differ
diff --git a/runs/fashion_trainer_20230919_073630/Training vs. Validation Loss_Validation/events.out.tfevents.1695101793.msip-dell.ims.rwth-aachen.de.963514.17 b/runs/fashion_trainer_20230919_073630/Training vs. Validation Loss_Validation/events.out.tfevents.1695101793.msip-dell.ims.rwth-aachen.de.963514.17
new file mode 100644
index 0000000000000000000000000000000000000000..ccdb9b5349ea14d172f7f36801213d92558bbb4e
Binary files /dev/null and b/runs/fashion_trainer_20230919_073630/Training vs. Validation Loss_Validation/events.out.tfevents.1695101793.msip-dell.ims.rwth-aachen.de.963514.17 differ
diff --git a/runs/fashion_trainer_20230919_073630/events.out.tfevents.1695101790.msip-dell.ims.rwth-aachen.de.963514.15 b/runs/fashion_trainer_20230919_073630/events.out.tfevents.1695101790.msip-dell.ims.rwth-aachen.de.963514.15
new file mode 100644
index 0000000000000000000000000000000000000000..9676b179c67e7c95daafade54e8911539a420914
Binary files /dev/null and b/runs/fashion_trainer_20230919_073630/events.out.tfevents.1695101790.msip-dell.ims.rwth-aachen.de.963514.15 differ
diff --git a/runs/fashion_trainer_20230919_073846/Training vs. Validation Loss_Training/events.out.tfevents.1695101929.msip-dell.ims.rwth-aachen.de.963514.19 b/runs/fashion_trainer_20230919_073846/Training vs. Validation Loss_Training/events.out.tfevents.1695101929.msip-dell.ims.rwth-aachen.de.963514.19
new file mode 100644
index 0000000000000000000000000000000000000000..ef9526b4f37eef86b659df046d56db5b10f1fdd0
Binary files /dev/null and b/runs/fashion_trainer_20230919_073846/Training vs. Validation Loss_Training/events.out.tfevents.1695101929.msip-dell.ims.rwth-aachen.de.963514.19 differ
diff --git a/runs/fashion_trainer_20230919_073846/Training vs. Validation Loss_Validation/events.out.tfevents.1695101929.msip-dell.ims.rwth-aachen.de.963514.20 b/runs/fashion_trainer_20230919_073846/Training vs. Validation Loss_Validation/events.out.tfevents.1695101929.msip-dell.ims.rwth-aachen.de.963514.20
new file mode 100644
index 0000000000000000000000000000000000000000..eed8aa5c13279b902f1de85ff0c6f971c76aa3cb
Binary files /dev/null and b/runs/fashion_trainer_20230919_073846/Training vs. Validation Loss_Validation/events.out.tfevents.1695101929.msip-dell.ims.rwth-aachen.de.963514.20 differ
diff --git a/runs/fashion_trainer_20230919_073846/events.out.tfevents.1695101926.msip-dell.ims.rwth-aachen.de.963514.18 b/runs/fashion_trainer_20230919_073846/events.out.tfevents.1695101926.msip-dell.ims.rwth-aachen.de.963514.18
new file mode 100644
index 0000000000000000000000000000000000000000..5d62e57309d92954c3f02fff2d715a16393f5dce
Binary files /dev/null and b/runs/fashion_trainer_20230919_073846/events.out.tfevents.1695101926.msip-dell.ims.rwth-aachen.de.963514.18 differ
diff --git a/runs/fashion_trainer_20230919_074056/Training vs. Validation Loss_Training/events.out.tfevents.1695102058.msip-dell.ims.rwth-aachen.de.963514.22 b/runs/fashion_trainer_20230919_074056/Training vs. Validation Loss_Training/events.out.tfevents.1695102058.msip-dell.ims.rwth-aachen.de.963514.22
new file mode 100644
index 0000000000000000000000000000000000000000..9c57362905d7ddb54b53273f407b0ca46137c1bc
Binary files /dev/null and b/runs/fashion_trainer_20230919_074056/Training vs. Validation Loss_Training/events.out.tfevents.1695102058.msip-dell.ims.rwth-aachen.de.963514.22 differ
diff --git a/runs/fashion_trainer_20230919_074056/Training vs. Validation Loss_Validation/events.out.tfevents.1695102058.msip-dell.ims.rwth-aachen.de.963514.23 b/runs/fashion_trainer_20230919_074056/Training vs. Validation Loss_Validation/events.out.tfevents.1695102058.msip-dell.ims.rwth-aachen.de.963514.23
new file mode 100644
index 0000000000000000000000000000000000000000..182aaa797d45547e115f247bfb3568ea48ec295c
Binary files /dev/null and b/runs/fashion_trainer_20230919_074056/Training vs. Validation Loss_Validation/events.out.tfevents.1695102058.msip-dell.ims.rwth-aachen.de.963514.23 differ
diff --git a/runs/fashion_trainer_20230919_074056/events.out.tfevents.1695102056.msip-dell.ims.rwth-aachen.de.963514.21 b/runs/fashion_trainer_20230919_074056/events.out.tfevents.1695102056.msip-dell.ims.rwth-aachen.de.963514.21
new file mode 100644
index 0000000000000000000000000000000000000000..2145d1c46b3abf3b1beba14c766937c804e3a3bd
Binary files /dev/null and b/runs/fashion_trainer_20230919_074056/events.out.tfevents.1695102056.msip-dell.ims.rwth-aachen.de.963514.21 differ
diff --git a/runs/fashion_trainer_20230919_074303/Training vs. Validation Loss_Training/events.out.tfevents.1695102186.msip-dell.ims.rwth-aachen.de.963514.25 b/runs/fashion_trainer_20230919_074303/Training vs. Validation Loss_Training/events.out.tfevents.1695102186.msip-dell.ims.rwth-aachen.de.963514.25
new file mode 100644
index 0000000000000000000000000000000000000000..6790f0a8ab8cd4e81071de72aaeab169e8da19a7
Binary files /dev/null and b/runs/fashion_trainer_20230919_074303/Training vs. Validation Loss_Training/events.out.tfevents.1695102186.msip-dell.ims.rwth-aachen.de.963514.25 differ
diff --git a/runs/fashion_trainer_20230919_074303/Training vs. Validation Loss_Validation/events.out.tfevents.1695102186.msip-dell.ims.rwth-aachen.de.963514.26 b/runs/fashion_trainer_20230919_074303/Training vs. Validation Loss_Validation/events.out.tfevents.1695102186.msip-dell.ims.rwth-aachen.de.963514.26
new file mode 100644
index 0000000000000000000000000000000000000000..bb44e34333615b77a11ee48793a56e886decd802
Binary files /dev/null and b/runs/fashion_trainer_20230919_074303/Training vs. Validation Loss_Validation/events.out.tfevents.1695102186.msip-dell.ims.rwth-aachen.de.963514.26 differ
diff --git a/runs/fashion_trainer_20230919_074303/events.out.tfevents.1695102183.msip-dell.ims.rwth-aachen.de.963514.24 b/runs/fashion_trainer_20230919_074303/events.out.tfevents.1695102183.msip-dell.ims.rwth-aachen.de.963514.24
new file mode 100644
index 0000000000000000000000000000000000000000..01213401c0bead4dcd6392e096931d9931db7500
Binary files /dev/null and b/runs/fashion_trainer_20230919_074303/events.out.tfevents.1695102183.msip-dell.ims.rwth-aachen.de.963514.24 differ
diff --git a/runs/fashion_trainer_20230919_074530/Training vs. Validation Loss_Training/events.out.tfevents.1695102332.msip-dell.ims.rwth-aachen.de.963514.28 b/runs/fashion_trainer_20230919_074530/Training vs. Validation Loss_Training/events.out.tfevents.1695102332.msip-dell.ims.rwth-aachen.de.963514.28
new file mode 100644
index 0000000000000000000000000000000000000000..2c40e807abb3902248677988d803ba62eec4fcea
Binary files /dev/null and b/runs/fashion_trainer_20230919_074530/Training vs. Validation Loss_Training/events.out.tfevents.1695102332.msip-dell.ims.rwth-aachen.de.963514.28 differ
diff --git a/runs/fashion_trainer_20230919_074530/Training vs. Validation Loss_Validation/events.out.tfevents.1695102332.msip-dell.ims.rwth-aachen.de.963514.29 b/runs/fashion_trainer_20230919_074530/Training vs. Validation Loss_Validation/events.out.tfevents.1695102332.msip-dell.ims.rwth-aachen.de.963514.29
new file mode 100644
index 0000000000000000000000000000000000000000..478aba41deb2c4a95580b42c2ece80fd28f39ee8
Binary files /dev/null and b/runs/fashion_trainer_20230919_074530/Training vs. Validation Loss_Validation/events.out.tfevents.1695102332.msip-dell.ims.rwth-aachen.de.963514.29 differ
diff --git a/runs/fashion_trainer_20230919_074530/events.out.tfevents.1695102330.msip-dell.ims.rwth-aachen.de.963514.27 b/runs/fashion_trainer_20230919_074530/events.out.tfevents.1695102330.msip-dell.ims.rwth-aachen.de.963514.27
new file mode 100644
index 0000000000000000000000000000000000000000..c54ca98af9c91ef5f6c6e75d27ac03f5f0d79c00
Binary files /dev/null and b/runs/fashion_trainer_20230919_074530/events.out.tfevents.1695102330.msip-dell.ims.rwth-aachen.de.963514.27 differ
diff --git a/runs/fashion_trainer_20230919_080250/Training vs. Validation Loss_Training/events.out.tfevents.1695103373.msip-dell.ims.rwth-aachen.de.965717.1 b/runs/fashion_trainer_20230919_080250/Training vs. Validation Loss_Training/events.out.tfevents.1695103373.msip-dell.ims.rwth-aachen.de.965717.1
new file mode 100644
index 0000000000000000000000000000000000000000..66c727a9c06630c5a6fbd7fea16f7d41f6b5a975
Binary files /dev/null and b/runs/fashion_trainer_20230919_080250/Training vs. Validation Loss_Training/events.out.tfevents.1695103373.msip-dell.ims.rwth-aachen.de.965717.1 differ
diff --git a/runs/fashion_trainer_20230919_080250/Training vs. Validation Loss_Validation/events.out.tfevents.1695103373.msip-dell.ims.rwth-aachen.de.965717.2 b/runs/fashion_trainer_20230919_080250/Training vs. Validation Loss_Validation/events.out.tfevents.1695103373.msip-dell.ims.rwth-aachen.de.965717.2
new file mode 100644
index 0000000000000000000000000000000000000000..aefa7537d9dfbc593093d116fc7ea6dd8c62df8a
Binary files /dev/null and b/runs/fashion_trainer_20230919_080250/Training vs. Validation Loss_Validation/events.out.tfevents.1695103373.msip-dell.ims.rwth-aachen.de.965717.2 differ
diff --git a/runs/fashion_trainer_20230919_080250/events.out.tfevents.1695103370.msip-dell.ims.rwth-aachen.de.965717.0 b/runs/fashion_trainer_20230919_080250/events.out.tfevents.1695103370.msip-dell.ims.rwth-aachen.de.965717.0
new file mode 100644
index 0000000000000000000000000000000000000000..e59949299911172294f4e1fa4e32963f0bd9aaba
Binary files /dev/null and b/runs/fashion_trainer_20230919_080250/events.out.tfevents.1695103370.msip-dell.ims.rwth-aachen.de.965717.0 differ
diff --git a/runs/fashion_trainer_20230919_080512/Training vs. Validation Loss_Training/events.out.tfevents.1695103515.msip-dell.ims.rwth-aachen.de.965717.4 b/runs/fashion_trainer_20230919_080512/Training vs. Validation Loss_Training/events.out.tfevents.1695103515.msip-dell.ims.rwth-aachen.de.965717.4
new file mode 100644
index 0000000000000000000000000000000000000000..7314f5af27249ff1d5e95d679b42d40dbb8459d8
Binary files /dev/null and b/runs/fashion_trainer_20230919_080512/Training vs. Validation Loss_Training/events.out.tfevents.1695103515.msip-dell.ims.rwth-aachen.de.965717.4 differ
diff --git a/runs/fashion_trainer_20230919_080512/Training vs. Validation Loss_Validation/events.out.tfevents.1695103515.msip-dell.ims.rwth-aachen.de.965717.5 b/runs/fashion_trainer_20230919_080512/Training vs. Validation Loss_Validation/events.out.tfevents.1695103515.msip-dell.ims.rwth-aachen.de.965717.5
new file mode 100644
index 0000000000000000000000000000000000000000..c6807780f095ead805e66c2df12d175f036d7d5d
Binary files /dev/null and b/runs/fashion_trainer_20230919_080512/Training vs. Validation Loss_Validation/events.out.tfevents.1695103515.msip-dell.ims.rwth-aachen.de.965717.5 differ
diff --git a/runs/fashion_trainer_20230919_080512/events.out.tfevents.1695103512.msip-dell.ims.rwth-aachen.de.965717.3 b/runs/fashion_trainer_20230919_080512/events.out.tfevents.1695103512.msip-dell.ims.rwth-aachen.de.965717.3
new file mode 100644
index 0000000000000000000000000000000000000000..6a969c4cf0c1e2db491829527288543c370b1f22
Binary files /dev/null and b/runs/fashion_trainer_20230919_080512/events.out.tfevents.1695103512.msip-dell.ims.rwth-aachen.de.965717.3 differ
diff --git a/runs/fashion_trainer_20230919_080746/Training vs. Validation Loss_Training/events.out.tfevents.1695103669.msip-dell.ims.rwth-aachen.de.965717.7 b/runs/fashion_trainer_20230919_080746/Training vs. Validation Loss_Training/events.out.tfevents.1695103669.msip-dell.ims.rwth-aachen.de.965717.7
new file mode 100644
index 0000000000000000000000000000000000000000..5c86e533f114d2ad30e6ee99c59e1b5c5900b840
Binary files /dev/null and b/runs/fashion_trainer_20230919_080746/Training vs. Validation Loss_Training/events.out.tfevents.1695103669.msip-dell.ims.rwth-aachen.de.965717.7 differ
diff --git a/runs/fashion_trainer_20230919_080746/Training vs. Validation Loss_Validation/events.out.tfevents.1695103669.msip-dell.ims.rwth-aachen.de.965717.8 b/runs/fashion_trainer_20230919_080746/Training vs. Validation Loss_Validation/events.out.tfevents.1695103669.msip-dell.ims.rwth-aachen.de.965717.8
new file mode 100644
index 0000000000000000000000000000000000000000..75043d61721bec7123874b50b16a3b6ff7c767e7
Binary files /dev/null and b/runs/fashion_trainer_20230919_080746/Training vs. Validation Loss_Validation/events.out.tfevents.1695103669.msip-dell.ims.rwth-aachen.de.965717.8 differ
diff --git a/runs/fashion_trainer_20230919_080746/events.out.tfevents.1695103666.msip-dell.ims.rwth-aachen.de.965717.6 b/runs/fashion_trainer_20230919_080746/events.out.tfevents.1695103666.msip-dell.ims.rwth-aachen.de.965717.6
new file mode 100644
index 0000000000000000000000000000000000000000..f679f35086ab12278dc94bd04d9c170f79f4a3bb
Binary files /dev/null and b/runs/fashion_trainer_20230919_080746/events.out.tfevents.1695103666.msip-dell.ims.rwth-aachen.de.965717.6 differ
diff --git a/runs/fashion_trainer_20230919_081014/Training vs. Validation Loss_Training/events.out.tfevents.1695103817.msip-dell.ims.rwth-aachen.de.965717.10 b/runs/fashion_trainer_20230919_081014/Training vs. Validation Loss_Training/events.out.tfevents.1695103817.msip-dell.ims.rwth-aachen.de.965717.10
new file mode 100644
index 0000000000000000000000000000000000000000..0612eab853d94c2eec21c625fb7a13416251fc31
Binary files /dev/null and b/runs/fashion_trainer_20230919_081014/Training vs. Validation Loss_Training/events.out.tfevents.1695103817.msip-dell.ims.rwth-aachen.de.965717.10 differ
diff --git a/runs/fashion_trainer_20230919_081014/Training vs. Validation Loss_Validation/events.out.tfevents.1695103817.msip-dell.ims.rwth-aachen.de.965717.11 b/runs/fashion_trainer_20230919_081014/Training vs. Validation Loss_Validation/events.out.tfevents.1695103817.msip-dell.ims.rwth-aachen.de.965717.11
new file mode 100644
index 0000000000000000000000000000000000000000..eeb7aa65b9c1216a1c791938297e77bb94ce354c
Binary files /dev/null and b/runs/fashion_trainer_20230919_081014/Training vs. Validation Loss_Validation/events.out.tfevents.1695103817.msip-dell.ims.rwth-aachen.de.965717.11 differ
diff --git a/runs/fashion_trainer_20230919_081014/events.out.tfevents.1695103814.msip-dell.ims.rwth-aachen.de.965717.9 b/runs/fashion_trainer_20230919_081014/events.out.tfevents.1695103814.msip-dell.ims.rwth-aachen.de.965717.9
new file mode 100644
index 0000000000000000000000000000000000000000..7db20498c471c84b22aed3707129dfa48599c15e
Binary files /dev/null and b/runs/fashion_trainer_20230919_081014/events.out.tfevents.1695103814.msip-dell.ims.rwth-aachen.de.965717.9 differ
diff --git a/runs/fashion_trainer_20230919_081233/Training vs. Validation Loss_Training/events.out.tfevents.1695103955.msip-dell.ims.rwth-aachen.de.965717.13 b/runs/fashion_trainer_20230919_081233/Training vs. Validation Loss_Training/events.out.tfevents.1695103955.msip-dell.ims.rwth-aachen.de.965717.13
new file mode 100644
index 0000000000000000000000000000000000000000..eb4938054b37a8ea217e93c43f5955ae0013b370
Binary files /dev/null and b/runs/fashion_trainer_20230919_081233/Training vs. Validation Loss_Training/events.out.tfevents.1695103955.msip-dell.ims.rwth-aachen.de.965717.13 differ
diff --git a/runs/fashion_trainer_20230919_081233/Training vs. Validation Loss_Validation/events.out.tfevents.1695103955.msip-dell.ims.rwth-aachen.de.965717.14 b/runs/fashion_trainer_20230919_081233/Training vs. Validation Loss_Validation/events.out.tfevents.1695103955.msip-dell.ims.rwth-aachen.de.965717.14
new file mode 100644
index 0000000000000000000000000000000000000000..e1c58c702f91cf6d48ccf9816ddb274fc834da59
Binary files /dev/null and b/runs/fashion_trainer_20230919_081233/Training vs. Validation Loss_Validation/events.out.tfevents.1695103955.msip-dell.ims.rwth-aachen.de.965717.14 differ
diff --git a/runs/fashion_trainer_20230919_081233/events.out.tfevents.1695103953.msip-dell.ims.rwth-aachen.de.965717.12 b/runs/fashion_trainer_20230919_081233/events.out.tfevents.1695103953.msip-dell.ims.rwth-aachen.de.965717.12
new file mode 100644
index 0000000000000000000000000000000000000000..01bd2e2898d63608535ede54b959fec5736e4e04
Binary files /dev/null and b/runs/fashion_trainer_20230919_081233/events.out.tfevents.1695103953.msip-dell.ims.rwth-aachen.de.965717.12 differ
diff --git a/runs/fashion_trainer_20230919_081452/Training vs. Validation Loss_Training/events.out.tfevents.1695104094.msip-dell.ims.rwth-aachen.de.965717.16 b/runs/fashion_trainer_20230919_081452/Training vs. Validation Loss_Training/events.out.tfevents.1695104094.msip-dell.ims.rwth-aachen.de.965717.16
new file mode 100644
index 0000000000000000000000000000000000000000..616ac9390fcda30698513eeb7042fdc3023e815b
Binary files /dev/null and b/runs/fashion_trainer_20230919_081452/Training vs. Validation Loss_Training/events.out.tfevents.1695104094.msip-dell.ims.rwth-aachen.de.965717.16 differ
diff --git a/runs/fashion_trainer_20230919_081452/Training vs. Validation Loss_Validation/events.out.tfevents.1695104094.msip-dell.ims.rwth-aachen.de.965717.17 b/runs/fashion_trainer_20230919_081452/Training vs. Validation Loss_Validation/events.out.tfevents.1695104094.msip-dell.ims.rwth-aachen.de.965717.17
new file mode 100644
index 0000000000000000000000000000000000000000..2fdbd06431fcc4466937d8d9a85f0b1c2f282785
Binary files /dev/null and b/runs/fashion_trainer_20230919_081452/Training vs. Validation Loss_Validation/events.out.tfevents.1695104094.msip-dell.ims.rwth-aachen.de.965717.17 differ
diff --git a/runs/fashion_trainer_20230919_081452/events.out.tfevents.1695104092.msip-dell.ims.rwth-aachen.de.965717.15 b/runs/fashion_trainer_20230919_081452/events.out.tfevents.1695104092.msip-dell.ims.rwth-aachen.de.965717.15
new file mode 100644
index 0000000000000000000000000000000000000000..9579fb18f793cd5e6dc3d3bddbf96e0ee0b319ae
Binary files /dev/null and b/runs/fashion_trainer_20230919_081452/events.out.tfevents.1695104092.msip-dell.ims.rwth-aachen.de.965717.15 differ
diff --git a/runs/fashion_trainer_20230919_081710/Training vs. Validation Loss_Training/events.out.tfevents.1695104232.msip-dell.ims.rwth-aachen.de.965717.19 b/runs/fashion_trainer_20230919_081710/Training vs. Validation Loss_Training/events.out.tfevents.1695104232.msip-dell.ims.rwth-aachen.de.965717.19
new file mode 100644
index 0000000000000000000000000000000000000000..27a4576250de13539d481025d147cc4d5385eaeb
Binary files /dev/null and b/runs/fashion_trainer_20230919_081710/Training vs. Validation Loss_Training/events.out.tfevents.1695104232.msip-dell.ims.rwth-aachen.de.965717.19 differ
diff --git a/runs/fashion_trainer_20230919_081710/Training vs. Validation Loss_Validation/events.out.tfevents.1695104232.msip-dell.ims.rwth-aachen.de.965717.20 b/runs/fashion_trainer_20230919_081710/Training vs. Validation Loss_Validation/events.out.tfevents.1695104232.msip-dell.ims.rwth-aachen.de.965717.20
new file mode 100644
index 0000000000000000000000000000000000000000..2e50f40965321ab1a643a8c362b60ed636728d99
Binary files /dev/null and b/runs/fashion_trainer_20230919_081710/Training vs. Validation Loss_Validation/events.out.tfevents.1695104232.msip-dell.ims.rwth-aachen.de.965717.20 differ
diff --git a/runs/fashion_trainer_20230919_081710/events.out.tfevents.1695104230.msip-dell.ims.rwth-aachen.de.965717.18 b/runs/fashion_trainer_20230919_081710/events.out.tfevents.1695104230.msip-dell.ims.rwth-aachen.de.965717.18
new file mode 100644
index 0000000000000000000000000000000000000000..2616cc10fb2e4c2766247fcd2183a62a3c1968cd
Binary files /dev/null and b/runs/fashion_trainer_20230919_081710/events.out.tfevents.1695104230.msip-dell.ims.rwth-aachen.de.965717.18 differ
diff --git a/runs/fashion_trainer_20230919_081921/Training vs. Validation Loss_Training/events.out.tfevents.1695104364.msip-dell.ims.rwth-aachen.de.965717.22 b/runs/fashion_trainer_20230919_081921/Training vs. Validation Loss_Training/events.out.tfevents.1695104364.msip-dell.ims.rwth-aachen.de.965717.22
new file mode 100644
index 0000000000000000000000000000000000000000..af1539bec4a630ee52809c5c0b6079d269ffbb19
Binary files /dev/null and b/runs/fashion_trainer_20230919_081921/Training vs. Validation Loss_Training/events.out.tfevents.1695104364.msip-dell.ims.rwth-aachen.de.965717.22 differ
diff --git a/runs/fashion_trainer_20230919_081921/Training vs. Validation Loss_Validation/events.out.tfevents.1695104364.msip-dell.ims.rwth-aachen.de.965717.23 b/runs/fashion_trainer_20230919_081921/Training vs. Validation Loss_Validation/events.out.tfevents.1695104364.msip-dell.ims.rwth-aachen.de.965717.23
new file mode 100644
index 0000000000000000000000000000000000000000..b6592a86cab9ec7e4aa1fc372c8782e2cdafa77a
Binary files /dev/null and b/runs/fashion_trainer_20230919_081921/Training vs. Validation Loss_Validation/events.out.tfevents.1695104364.msip-dell.ims.rwth-aachen.de.965717.23 differ
diff --git a/runs/fashion_trainer_20230919_081921/events.out.tfevents.1695104361.msip-dell.ims.rwth-aachen.de.965717.21 b/runs/fashion_trainer_20230919_081921/events.out.tfevents.1695104361.msip-dell.ims.rwth-aachen.de.965717.21
new file mode 100644
index 0000000000000000000000000000000000000000..6edf52f399aee6f06ac5bc68de1345a0ad8f4a6b
Binary files /dev/null and b/runs/fashion_trainer_20230919_081921/events.out.tfevents.1695104361.msip-dell.ims.rwth-aachen.de.965717.21 differ
diff --git a/runs/fashion_trainer_20230919_082138/Training vs. Validation Loss_Training/events.out.tfevents.1695104501.msip-dell.ims.rwth-aachen.de.965717.25 b/runs/fashion_trainer_20230919_082138/Training vs. Validation Loss_Training/events.out.tfevents.1695104501.msip-dell.ims.rwth-aachen.de.965717.25
new file mode 100644
index 0000000000000000000000000000000000000000..4c2e89e668d4fb41bd47d97b23f9d2f46692dfea
Binary files /dev/null and b/runs/fashion_trainer_20230919_082138/Training vs. Validation Loss_Training/events.out.tfevents.1695104501.msip-dell.ims.rwth-aachen.de.965717.25 differ
diff --git a/runs/fashion_trainer_20230919_082138/Training vs. Validation Loss_Validation/events.out.tfevents.1695104501.msip-dell.ims.rwth-aachen.de.965717.26 b/runs/fashion_trainer_20230919_082138/Training vs. Validation Loss_Validation/events.out.tfevents.1695104501.msip-dell.ims.rwth-aachen.de.965717.26
new file mode 100644
index 0000000000000000000000000000000000000000..789bbe959f0eb53e8f3130cf6fa34601211dcfa3
Binary files /dev/null and b/runs/fashion_trainer_20230919_082138/Training vs. Validation Loss_Validation/events.out.tfevents.1695104501.msip-dell.ims.rwth-aachen.de.965717.26 differ
diff --git a/runs/fashion_trainer_20230919_082138/events.out.tfevents.1695104498.msip-dell.ims.rwth-aachen.de.965717.24 b/runs/fashion_trainer_20230919_082138/events.out.tfevents.1695104498.msip-dell.ims.rwth-aachen.de.965717.24
new file mode 100644
index 0000000000000000000000000000000000000000..05a146ccc31fd228474d6419acc54b659b804cfb
Binary files /dev/null and b/runs/fashion_trainer_20230919_082138/events.out.tfevents.1695104498.msip-dell.ims.rwth-aachen.de.965717.24 differ
diff --git a/runs/fashion_trainer_20230919_082410/Training vs. Validation Loss_Training/events.out.tfevents.1695104653.msip-dell.ims.rwth-aachen.de.965717.28 b/runs/fashion_trainer_20230919_082410/Training vs. Validation Loss_Training/events.out.tfevents.1695104653.msip-dell.ims.rwth-aachen.de.965717.28
new file mode 100644
index 0000000000000000000000000000000000000000..135745b6e6d4960103dd75099468c094a2655206
Binary files /dev/null and b/runs/fashion_trainer_20230919_082410/Training vs. Validation Loss_Training/events.out.tfevents.1695104653.msip-dell.ims.rwth-aachen.de.965717.28 differ
diff --git a/runs/fashion_trainer_20230919_082410/Training vs. Validation Loss_Validation/events.out.tfevents.1695104653.msip-dell.ims.rwth-aachen.de.965717.29 b/runs/fashion_trainer_20230919_082410/Training vs. Validation Loss_Validation/events.out.tfevents.1695104653.msip-dell.ims.rwth-aachen.de.965717.29
new file mode 100644
index 0000000000000000000000000000000000000000..8c04935fb8986130ea48b2e389e2d9e25add5e09
Binary files /dev/null and b/runs/fashion_trainer_20230919_082410/Training vs. Validation Loss_Validation/events.out.tfevents.1695104653.msip-dell.ims.rwth-aachen.de.965717.29 differ
diff --git a/runs/fashion_trainer_20230919_082410/events.out.tfevents.1695104650.msip-dell.ims.rwth-aachen.de.965717.27 b/runs/fashion_trainer_20230919_082410/events.out.tfevents.1695104650.msip-dell.ims.rwth-aachen.de.965717.27
new file mode 100644
index 0000000000000000000000000000000000000000..3ced806965b56b05f19198c15682d78b80367b69
Binary files /dev/null and b/runs/fashion_trainer_20230919_082410/events.out.tfevents.1695104650.msip-dell.ims.rwth-aachen.de.965717.27 differ
diff --git a/runs/fashion_trainer_20230919_083638/Training vs. Validation Loss_Training/events.out.tfevents.1695105400.msip-dell.ims.rwth-aachen.de.967117.1 b/runs/fashion_trainer_20230919_083638/Training vs. Validation Loss_Training/events.out.tfevents.1695105400.msip-dell.ims.rwth-aachen.de.967117.1
new file mode 100644
index 0000000000000000000000000000000000000000..fa87530e60f47214cc00701d0be636c7ce8cce6f
Binary files /dev/null and b/runs/fashion_trainer_20230919_083638/Training vs. Validation Loss_Training/events.out.tfevents.1695105400.msip-dell.ims.rwth-aachen.de.967117.1 differ
diff --git a/runs/fashion_trainer_20230919_083638/Training vs. Validation Loss_Validation/events.out.tfevents.1695105400.msip-dell.ims.rwth-aachen.de.967117.2 b/runs/fashion_trainer_20230919_083638/Training vs. Validation Loss_Validation/events.out.tfevents.1695105400.msip-dell.ims.rwth-aachen.de.967117.2
new file mode 100644
index 0000000000000000000000000000000000000000..56d621085fef3b3f6de8e1bdc2ceaf4f2a0b2f7a
Binary files /dev/null and b/runs/fashion_trainer_20230919_083638/Training vs. Validation Loss_Validation/events.out.tfevents.1695105400.msip-dell.ims.rwth-aachen.de.967117.2 differ
diff --git a/runs/fashion_trainer_20230919_083638/events.out.tfevents.1695105398.msip-dell.ims.rwth-aachen.de.967117.0 b/runs/fashion_trainer_20230919_083638/events.out.tfevents.1695105398.msip-dell.ims.rwth-aachen.de.967117.0
new file mode 100644
index 0000000000000000000000000000000000000000..570e21653258f3dc4e42b196715127496a19d00d
Binary files /dev/null and b/runs/fashion_trainer_20230919_083638/events.out.tfevents.1695105398.msip-dell.ims.rwth-aachen.de.967117.0 differ
diff --git a/runs/fashion_trainer_20230919_083856/Training vs. Validation Loss_Training/events.out.tfevents.1695105538.msip-dell.ims.rwth-aachen.de.967117.4 b/runs/fashion_trainer_20230919_083856/Training vs. Validation Loss_Training/events.out.tfevents.1695105538.msip-dell.ims.rwth-aachen.de.967117.4
new file mode 100644
index 0000000000000000000000000000000000000000..696a852827cafbcfbd9f077e2bd60414b3aedded
Binary files /dev/null and b/runs/fashion_trainer_20230919_083856/Training vs. Validation Loss_Training/events.out.tfevents.1695105538.msip-dell.ims.rwth-aachen.de.967117.4 differ
diff --git a/runs/fashion_trainer_20230919_083856/Training vs. Validation Loss_Validation/events.out.tfevents.1695105538.msip-dell.ims.rwth-aachen.de.967117.5 b/runs/fashion_trainer_20230919_083856/Training vs. Validation Loss_Validation/events.out.tfevents.1695105538.msip-dell.ims.rwth-aachen.de.967117.5
new file mode 100644
index 0000000000000000000000000000000000000000..8e64825b00f44ad2ef74baf27c4a32619c501f2f
Binary files /dev/null and b/runs/fashion_trainer_20230919_083856/Training vs. Validation Loss_Validation/events.out.tfevents.1695105538.msip-dell.ims.rwth-aachen.de.967117.5 differ
diff --git a/runs/fashion_trainer_20230919_083856/events.out.tfevents.1695105536.msip-dell.ims.rwth-aachen.de.967117.3 b/runs/fashion_trainer_20230919_083856/events.out.tfevents.1695105536.msip-dell.ims.rwth-aachen.de.967117.3
new file mode 100644
index 0000000000000000000000000000000000000000..7b65cc2361d2eac75fc0e844c32ce2e8e57122dd
Binary files /dev/null and b/runs/fashion_trainer_20230919_083856/events.out.tfevents.1695105536.msip-dell.ims.rwth-aachen.de.967117.3 differ
diff --git a/runs/fashion_trainer_20230919_084128/Training vs. Validation Loss_Training/events.out.tfevents.1695105691.msip-dell.ims.rwth-aachen.de.967117.7 b/runs/fashion_trainer_20230919_084128/Training vs. Validation Loss_Training/events.out.tfevents.1695105691.msip-dell.ims.rwth-aachen.de.967117.7
new file mode 100644
index 0000000000000000000000000000000000000000..e437dfd03644ccb4d4c85c4ed3942281e4bb7596
Binary files /dev/null and b/runs/fashion_trainer_20230919_084128/Training vs. Validation Loss_Training/events.out.tfevents.1695105691.msip-dell.ims.rwth-aachen.de.967117.7 differ
diff --git a/runs/fashion_trainer_20230919_084128/Training vs. Validation Loss_Validation/events.out.tfevents.1695105691.msip-dell.ims.rwth-aachen.de.967117.8 b/runs/fashion_trainer_20230919_084128/Training vs. Validation Loss_Validation/events.out.tfevents.1695105691.msip-dell.ims.rwth-aachen.de.967117.8
new file mode 100644
index 0000000000000000000000000000000000000000..46d97733f4b54c7948bb68df59b75012f609949d
Binary files /dev/null and b/runs/fashion_trainer_20230919_084128/Training vs. Validation Loss_Validation/events.out.tfevents.1695105691.msip-dell.ims.rwth-aachen.de.967117.8 differ
diff --git a/runs/fashion_trainer_20230919_084128/events.out.tfevents.1695105688.msip-dell.ims.rwth-aachen.de.967117.6 b/runs/fashion_trainer_20230919_084128/events.out.tfevents.1695105688.msip-dell.ims.rwth-aachen.de.967117.6
new file mode 100644
index 0000000000000000000000000000000000000000..b246449260c2035156fa1bdcf5dbc98cd1ca1aac
Binary files /dev/null and b/runs/fashion_trainer_20230919_084128/events.out.tfevents.1695105688.msip-dell.ims.rwth-aachen.de.967117.6 differ
diff --git a/runs/fashion_trainer_20230919_084357/Training vs. Validation Loss_Training/events.out.tfevents.1695105839.msip-dell.ims.rwth-aachen.de.967117.10 b/runs/fashion_trainer_20230919_084357/Training vs. Validation Loss_Training/events.out.tfevents.1695105839.msip-dell.ims.rwth-aachen.de.967117.10
new file mode 100644
index 0000000000000000000000000000000000000000..12cf3b02af0e797a10d7b0d03df877fa522015c7
Binary files /dev/null and b/runs/fashion_trainer_20230919_084357/Training vs. Validation Loss_Training/events.out.tfevents.1695105839.msip-dell.ims.rwth-aachen.de.967117.10 differ
diff --git a/runs/fashion_trainer_20230919_084357/Training vs. Validation Loss_Validation/events.out.tfevents.1695105839.msip-dell.ims.rwth-aachen.de.967117.11 b/runs/fashion_trainer_20230919_084357/Training vs. Validation Loss_Validation/events.out.tfevents.1695105839.msip-dell.ims.rwth-aachen.de.967117.11
new file mode 100644
index 0000000000000000000000000000000000000000..6ea230dcc6cd111dad1a1e8e45954ba0eacaab65
Binary files /dev/null and b/runs/fashion_trainer_20230919_084357/Training vs. Validation Loss_Validation/events.out.tfevents.1695105839.msip-dell.ims.rwth-aachen.de.967117.11 differ
diff --git a/runs/fashion_trainer_20230919_084357/events.out.tfevents.1695105837.msip-dell.ims.rwth-aachen.de.967117.9 b/runs/fashion_trainer_20230919_084357/events.out.tfevents.1695105837.msip-dell.ims.rwth-aachen.de.967117.9
new file mode 100644
index 0000000000000000000000000000000000000000..e0874e7b2765284dde4d113eff01adb58cd56fb1
Binary files /dev/null and b/runs/fashion_trainer_20230919_084357/events.out.tfevents.1695105837.msip-dell.ims.rwth-aachen.de.967117.9 differ
diff --git a/runs/fashion_trainer_20230919_084617/Training vs. Validation Loss_Training/events.out.tfevents.1695105980.msip-dell.ims.rwth-aachen.de.967117.13 b/runs/fashion_trainer_20230919_084617/Training vs. Validation Loss_Training/events.out.tfevents.1695105980.msip-dell.ims.rwth-aachen.de.967117.13
new file mode 100644
index 0000000000000000000000000000000000000000..d88d3fcba427b46480cd33b5d51fbdd27d22abd8
Binary files /dev/null and b/runs/fashion_trainer_20230919_084617/Training vs. Validation Loss_Training/events.out.tfevents.1695105980.msip-dell.ims.rwth-aachen.de.967117.13 differ
diff --git a/runs/fashion_trainer_20230919_084617/Training vs. Validation Loss_Validation/events.out.tfevents.1695105980.msip-dell.ims.rwth-aachen.de.967117.14 b/runs/fashion_trainer_20230919_084617/Training vs. Validation Loss_Validation/events.out.tfevents.1695105980.msip-dell.ims.rwth-aachen.de.967117.14
new file mode 100644
index 0000000000000000000000000000000000000000..a3789015208e7e41f75a0afe2270b257103e8c38
Binary files /dev/null and b/runs/fashion_trainer_20230919_084617/Training vs. Validation Loss_Validation/events.out.tfevents.1695105980.msip-dell.ims.rwth-aachen.de.967117.14 differ
diff --git a/runs/fashion_trainer_20230919_084617/events.out.tfevents.1695105977.msip-dell.ims.rwth-aachen.de.967117.12 b/runs/fashion_trainer_20230919_084617/events.out.tfevents.1695105977.msip-dell.ims.rwth-aachen.de.967117.12
new file mode 100644
index 0000000000000000000000000000000000000000..95c112acd2ce7c280aa6d353034721af11b6c273
Binary files /dev/null and b/runs/fashion_trainer_20230919_084617/events.out.tfevents.1695105977.msip-dell.ims.rwth-aachen.de.967117.12 differ
diff --git a/runs/fashion_trainer_20230919_084844/Training vs. Validation Loss_Training/events.out.tfevents.1695106127.msip-dell.ims.rwth-aachen.de.967117.16 b/runs/fashion_trainer_20230919_084844/Training vs. Validation Loss_Training/events.out.tfevents.1695106127.msip-dell.ims.rwth-aachen.de.967117.16
new file mode 100644
index 0000000000000000000000000000000000000000..2c27c1355783f649dcca4b421f04fac6bd74a24b
Binary files /dev/null and b/runs/fashion_trainer_20230919_084844/Training vs. Validation Loss_Training/events.out.tfevents.1695106127.msip-dell.ims.rwth-aachen.de.967117.16 differ
diff --git a/runs/fashion_trainer_20230919_084844/Training vs. Validation Loss_Validation/events.out.tfevents.1695106127.msip-dell.ims.rwth-aachen.de.967117.17 b/runs/fashion_trainer_20230919_084844/Training vs. Validation Loss_Validation/events.out.tfevents.1695106127.msip-dell.ims.rwth-aachen.de.967117.17
new file mode 100644
index 0000000000000000000000000000000000000000..84b6c8a7904d71a8bfdec2fff9315eccc91d23ac
Binary files /dev/null and b/runs/fashion_trainer_20230919_084844/Training vs. Validation Loss_Validation/events.out.tfevents.1695106127.msip-dell.ims.rwth-aachen.de.967117.17 differ
diff --git a/runs/fashion_trainer_20230919_084844/events.out.tfevents.1695106124.msip-dell.ims.rwth-aachen.de.967117.15 b/runs/fashion_trainer_20230919_084844/events.out.tfevents.1695106124.msip-dell.ims.rwth-aachen.de.967117.15
new file mode 100644
index 0000000000000000000000000000000000000000..df5480ac60f8ae3dfc0b76810c0a23002560e696
Binary files /dev/null and b/runs/fashion_trainer_20230919_084844/events.out.tfevents.1695106124.msip-dell.ims.rwth-aachen.de.967117.15 differ
diff --git a/runs/fashion_trainer_20230919_085118/Training vs. Validation Loss_Training/events.out.tfevents.1695106280.msip-dell.ims.rwth-aachen.de.967117.19 b/runs/fashion_trainer_20230919_085118/Training vs. Validation Loss_Training/events.out.tfevents.1695106280.msip-dell.ims.rwth-aachen.de.967117.19
new file mode 100644
index 0000000000000000000000000000000000000000..3cdedb3728d7ca7a1d661286551d02fbbf1742d0
Binary files /dev/null and b/runs/fashion_trainer_20230919_085118/Training vs. Validation Loss_Training/events.out.tfevents.1695106280.msip-dell.ims.rwth-aachen.de.967117.19 differ
diff --git a/runs/fashion_trainer_20230919_085118/Training vs. Validation Loss_Validation/events.out.tfevents.1695106280.msip-dell.ims.rwth-aachen.de.967117.20 b/runs/fashion_trainer_20230919_085118/Training vs. Validation Loss_Validation/events.out.tfevents.1695106280.msip-dell.ims.rwth-aachen.de.967117.20
new file mode 100644
index 0000000000000000000000000000000000000000..fd70217a7832ca929c51f20bd143c95b22bbb631
Binary files /dev/null and b/runs/fashion_trainer_20230919_085118/Training vs. Validation Loss_Validation/events.out.tfevents.1695106280.msip-dell.ims.rwth-aachen.de.967117.20 differ
diff --git a/runs/fashion_trainer_20230919_085118/events.out.tfevents.1695106278.msip-dell.ims.rwth-aachen.de.967117.18 b/runs/fashion_trainer_20230919_085118/events.out.tfevents.1695106278.msip-dell.ims.rwth-aachen.de.967117.18
new file mode 100644
index 0000000000000000000000000000000000000000..96af80779a65adaf9595c0e5a1f2b8bd6ebf5cba
Binary files /dev/null and b/runs/fashion_trainer_20230919_085118/events.out.tfevents.1695106278.msip-dell.ims.rwth-aachen.de.967117.18 differ
diff --git a/runs/fashion_trainer_20230919_085343/Training vs. Validation Loss_Training/events.out.tfevents.1695106426.msip-dell.ims.rwth-aachen.de.967117.22 b/runs/fashion_trainer_20230919_085343/Training vs. Validation Loss_Training/events.out.tfevents.1695106426.msip-dell.ims.rwth-aachen.de.967117.22
new file mode 100644
index 0000000000000000000000000000000000000000..3177de2ef2150e362f82f08cb073db49de2a52b9
Binary files /dev/null and b/runs/fashion_trainer_20230919_085343/Training vs. Validation Loss_Training/events.out.tfevents.1695106426.msip-dell.ims.rwth-aachen.de.967117.22 differ
diff --git a/runs/fashion_trainer_20230919_085343/Training vs. Validation Loss_Validation/events.out.tfevents.1695106426.msip-dell.ims.rwth-aachen.de.967117.23 b/runs/fashion_trainer_20230919_085343/Training vs. Validation Loss_Validation/events.out.tfevents.1695106426.msip-dell.ims.rwth-aachen.de.967117.23
new file mode 100644
index 0000000000000000000000000000000000000000..cd1e7f288f2fb5b8e95221603c1f885124532a1c
Binary files /dev/null and b/runs/fashion_trainer_20230919_085343/Training vs. Validation Loss_Validation/events.out.tfevents.1695106426.msip-dell.ims.rwth-aachen.de.967117.23 differ
diff --git a/runs/fashion_trainer_20230919_085343/events.out.tfevents.1695106423.msip-dell.ims.rwth-aachen.de.967117.21 b/runs/fashion_trainer_20230919_085343/events.out.tfevents.1695106423.msip-dell.ims.rwth-aachen.de.967117.21
new file mode 100644
index 0000000000000000000000000000000000000000..419799370e33afa8b40cf4f82a96e6ebc1bf6409
Binary files /dev/null and b/runs/fashion_trainer_20230919_085343/events.out.tfevents.1695106423.msip-dell.ims.rwth-aachen.de.967117.21 differ
diff --git a/runs/fashion_trainer_20230919_085601/Training vs. Validation Loss_Training/events.out.tfevents.1695106564.msip-dell.ims.rwth-aachen.de.967117.25 b/runs/fashion_trainer_20230919_085601/Training vs. Validation Loss_Training/events.out.tfevents.1695106564.msip-dell.ims.rwth-aachen.de.967117.25
new file mode 100644
index 0000000000000000000000000000000000000000..836eeaf786f851994822c4c9193dcf1a8c103cd3
Binary files /dev/null and b/runs/fashion_trainer_20230919_085601/Training vs. Validation Loss_Training/events.out.tfevents.1695106564.msip-dell.ims.rwth-aachen.de.967117.25 differ
diff --git a/runs/fashion_trainer_20230919_085601/Training vs. Validation Loss_Validation/events.out.tfevents.1695106564.msip-dell.ims.rwth-aachen.de.967117.26 b/runs/fashion_trainer_20230919_085601/Training vs. Validation Loss_Validation/events.out.tfevents.1695106564.msip-dell.ims.rwth-aachen.de.967117.26
new file mode 100644
index 0000000000000000000000000000000000000000..f68cf4a0972be22199a00d0e9d66bf8957136227
Binary files /dev/null and b/runs/fashion_trainer_20230919_085601/Training vs. Validation Loss_Validation/events.out.tfevents.1695106564.msip-dell.ims.rwth-aachen.de.967117.26 differ
diff --git a/runs/fashion_trainer_20230919_085601/events.out.tfevents.1695106561.msip-dell.ims.rwth-aachen.de.967117.24 b/runs/fashion_trainer_20230919_085601/events.out.tfevents.1695106561.msip-dell.ims.rwth-aachen.de.967117.24
new file mode 100644
index 0000000000000000000000000000000000000000..d340961ff80077d9cf31af2f040f0dc9ee236b9c
Binary files /dev/null and b/runs/fashion_trainer_20230919_085601/events.out.tfevents.1695106561.msip-dell.ims.rwth-aachen.de.967117.24 differ
diff --git a/runs/fashion_trainer_20230919_085817/Training vs. Validation Loss_Training/events.out.tfevents.1695106700.msip-dell.ims.rwth-aachen.de.967117.28 b/runs/fashion_trainer_20230919_085817/Training vs. Validation Loss_Training/events.out.tfevents.1695106700.msip-dell.ims.rwth-aachen.de.967117.28
new file mode 100644
index 0000000000000000000000000000000000000000..2562304ca8a78288b2db3ad93c95d2284217abdd
Binary files /dev/null and b/runs/fashion_trainer_20230919_085817/Training vs. Validation Loss_Training/events.out.tfevents.1695106700.msip-dell.ims.rwth-aachen.de.967117.28 differ
diff --git a/runs/fashion_trainer_20230919_085817/Training vs. Validation Loss_Validation/events.out.tfevents.1695106700.msip-dell.ims.rwth-aachen.de.967117.29 b/runs/fashion_trainer_20230919_085817/Training vs. Validation Loss_Validation/events.out.tfevents.1695106700.msip-dell.ims.rwth-aachen.de.967117.29
new file mode 100644
index 0000000000000000000000000000000000000000..32bb8d417434a9c0d51193d74c09ae1eb058498d
Binary files /dev/null and b/runs/fashion_trainer_20230919_085817/Training vs. Validation Loss_Validation/events.out.tfevents.1695106700.msip-dell.ims.rwth-aachen.de.967117.29 differ
diff --git a/runs/fashion_trainer_20230919_085817/events.out.tfevents.1695106697.msip-dell.ims.rwth-aachen.de.967117.27 b/runs/fashion_trainer_20230919_085817/events.out.tfevents.1695106697.msip-dell.ims.rwth-aachen.de.967117.27
new file mode 100644
index 0000000000000000000000000000000000000000..5cd3df89f59378d9b25c25a5a54b96e44f563c1a
Binary files /dev/null and b/runs/fashion_trainer_20230919_085817/events.out.tfevents.1695106697.msip-dell.ims.rwth-aachen.de.967117.27 differ
diff --git a/runs/fashion_trainer_20230919_090120/Training vs. Validation Loss_Training/events.out.tfevents.1695106883.msip-dell.ims.rwth-aachen.de.969696.1 b/runs/fashion_trainer_20230919_090120/Training vs. Validation Loss_Training/events.out.tfevents.1695106883.msip-dell.ims.rwth-aachen.de.969696.1
new file mode 100644
index 0000000000000000000000000000000000000000..1eea5259884728cc207bff2982b37c2b120dd4b5
Binary files /dev/null and b/runs/fashion_trainer_20230919_090120/Training vs. Validation Loss_Training/events.out.tfevents.1695106883.msip-dell.ims.rwth-aachen.de.969696.1 differ
diff --git a/runs/fashion_trainer_20230919_090120/Training vs. Validation Loss_Validation/events.out.tfevents.1695106883.msip-dell.ims.rwth-aachen.de.969696.2 b/runs/fashion_trainer_20230919_090120/Training vs. Validation Loss_Validation/events.out.tfevents.1695106883.msip-dell.ims.rwth-aachen.de.969696.2
new file mode 100644
index 0000000000000000000000000000000000000000..9a96e2a559f9368d73a3b713f37556f7aed68d4c
Binary files /dev/null and b/runs/fashion_trainer_20230919_090120/Training vs. Validation Loss_Validation/events.out.tfevents.1695106883.msip-dell.ims.rwth-aachen.de.969696.2 differ
diff --git a/runs/fashion_trainer_20230919_090120/events.out.tfevents.1695106880.msip-dell.ims.rwth-aachen.de.969696.0 b/runs/fashion_trainer_20230919_090120/events.out.tfevents.1695106880.msip-dell.ims.rwth-aachen.de.969696.0
new file mode 100644
index 0000000000000000000000000000000000000000..192a6dfb6bdf82b0355d76ae5721c5577bbb1e2b
Binary files /dev/null and b/runs/fashion_trainer_20230919_090120/events.out.tfevents.1695106880.msip-dell.ims.rwth-aachen.de.969696.0 differ
diff --git a/runs/fashion_trainer_20230919_090354/Training vs. Validation Loss_Training/events.out.tfevents.1695107036.msip-dell.ims.rwth-aachen.de.969696.4 b/runs/fashion_trainer_20230919_090354/Training vs. Validation Loss_Training/events.out.tfevents.1695107036.msip-dell.ims.rwth-aachen.de.969696.4
new file mode 100644
index 0000000000000000000000000000000000000000..99ab2228f19c19d4e5ba2c5ca7088c256b598575
Binary files /dev/null and b/runs/fashion_trainer_20230919_090354/Training vs. Validation Loss_Training/events.out.tfevents.1695107036.msip-dell.ims.rwth-aachen.de.969696.4 differ
diff --git a/runs/fashion_trainer_20230919_090354/Training vs. Validation Loss_Validation/events.out.tfevents.1695107036.msip-dell.ims.rwth-aachen.de.969696.5 b/runs/fashion_trainer_20230919_090354/Training vs. Validation Loss_Validation/events.out.tfevents.1695107036.msip-dell.ims.rwth-aachen.de.969696.5
new file mode 100644
index 0000000000000000000000000000000000000000..8e5db8f9b0af80c0988f372dcaafd01b24efdc84
Binary files /dev/null and b/runs/fashion_trainer_20230919_090354/Training vs. Validation Loss_Validation/events.out.tfevents.1695107036.msip-dell.ims.rwth-aachen.de.969696.5 differ
diff --git a/runs/fashion_trainer_20230919_090354/events.out.tfevents.1695107034.msip-dell.ims.rwth-aachen.de.969696.3 b/runs/fashion_trainer_20230919_090354/events.out.tfevents.1695107034.msip-dell.ims.rwth-aachen.de.969696.3
new file mode 100644
index 0000000000000000000000000000000000000000..4aa23e8b1092ef893d81a81ece8aa815052d345a
Binary files /dev/null and b/runs/fashion_trainer_20230919_090354/events.out.tfevents.1695107034.msip-dell.ims.rwth-aachen.de.969696.3 differ
diff --git a/runs/fashion_trainer_20230919_090606/Training vs. Validation Loss_Training/events.out.tfevents.1695107168.msip-dell.ims.rwth-aachen.de.969696.7 b/runs/fashion_trainer_20230919_090606/Training vs. Validation Loss_Training/events.out.tfevents.1695107168.msip-dell.ims.rwth-aachen.de.969696.7
new file mode 100644
index 0000000000000000000000000000000000000000..72d3dfe217d6b9dd82573c6d80974fde1f5fbc26
Binary files /dev/null and b/runs/fashion_trainer_20230919_090606/Training vs. Validation Loss_Training/events.out.tfevents.1695107168.msip-dell.ims.rwth-aachen.de.969696.7 differ
diff --git a/runs/fashion_trainer_20230919_090606/Training vs. Validation Loss_Validation/events.out.tfevents.1695107168.msip-dell.ims.rwth-aachen.de.969696.8 b/runs/fashion_trainer_20230919_090606/Training vs. Validation Loss_Validation/events.out.tfevents.1695107168.msip-dell.ims.rwth-aachen.de.969696.8
new file mode 100644
index 0000000000000000000000000000000000000000..4bdb99030d3281db41d8db750d27c558c1752a6a
Binary files /dev/null and b/runs/fashion_trainer_20230919_090606/Training vs. Validation Loss_Validation/events.out.tfevents.1695107168.msip-dell.ims.rwth-aachen.de.969696.8 differ
diff --git a/runs/fashion_trainer_20230919_090606/events.out.tfevents.1695107166.msip-dell.ims.rwth-aachen.de.969696.6 b/runs/fashion_trainer_20230919_090606/events.out.tfevents.1695107166.msip-dell.ims.rwth-aachen.de.969696.6
new file mode 100644
index 0000000000000000000000000000000000000000..e75a50646aeecb2fe2a8bc7a16092258fa484e0a
Binary files /dev/null and b/runs/fashion_trainer_20230919_090606/events.out.tfevents.1695107166.msip-dell.ims.rwth-aachen.de.969696.6 differ
diff --git a/runs/fashion_trainer_20230919_090816/Training vs. Validation Loss_Training/events.out.tfevents.1695107299.msip-dell.ims.rwth-aachen.de.969696.10 b/runs/fashion_trainer_20230919_090816/Training vs. Validation Loss_Training/events.out.tfevents.1695107299.msip-dell.ims.rwth-aachen.de.969696.10
new file mode 100644
index 0000000000000000000000000000000000000000..3e4a448cfbf0230fc73787fedb14e53b90fb645f
Binary files /dev/null and b/runs/fashion_trainer_20230919_090816/Training vs. Validation Loss_Training/events.out.tfevents.1695107299.msip-dell.ims.rwth-aachen.de.969696.10 differ
diff --git a/runs/fashion_trainer_20230919_090816/Training vs. Validation Loss_Validation/events.out.tfevents.1695107299.msip-dell.ims.rwth-aachen.de.969696.11 b/runs/fashion_trainer_20230919_090816/Training vs. Validation Loss_Validation/events.out.tfevents.1695107299.msip-dell.ims.rwth-aachen.de.969696.11
new file mode 100644
index 0000000000000000000000000000000000000000..60730f1f45e92a7aacce05fda83fafd315a3a883
Binary files /dev/null and b/runs/fashion_trainer_20230919_090816/Training vs. Validation Loss_Validation/events.out.tfevents.1695107299.msip-dell.ims.rwth-aachen.de.969696.11 differ
diff --git a/runs/fashion_trainer_20230919_090816/events.out.tfevents.1695107296.msip-dell.ims.rwth-aachen.de.969696.9 b/runs/fashion_trainer_20230919_090816/events.out.tfevents.1695107296.msip-dell.ims.rwth-aachen.de.969696.9
new file mode 100644
index 0000000000000000000000000000000000000000..16c00d951f9a5d91a5f97aef8a10201c4976aee5
Binary files /dev/null and b/runs/fashion_trainer_20230919_090816/events.out.tfevents.1695107296.msip-dell.ims.rwth-aachen.de.969696.9 differ
diff --git a/runs/fashion_trainer_20230919_091023/Training vs. Validation Loss_Training/events.out.tfevents.1695107426.msip-dell.ims.rwth-aachen.de.969696.13 b/runs/fashion_trainer_20230919_091023/Training vs. Validation Loss_Training/events.out.tfevents.1695107426.msip-dell.ims.rwth-aachen.de.969696.13
new file mode 100644
index 0000000000000000000000000000000000000000..e1b86fc093747f06082041eb30e0045676a85037
Binary files /dev/null and b/runs/fashion_trainer_20230919_091023/Training vs. Validation Loss_Training/events.out.tfevents.1695107426.msip-dell.ims.rwth-aachen.de.969696.13 differ
diff --git a/runs/fashion_trainer_20230919_091023/Training vs. Validation Loss_Validation/events.out.tfevents.1695107426.msip-dell.ims.rwth-aachen.de.969696.14 b/runs/fashion_trainer_20230919_091023/Training vs. Validation Loss_Validation/events.out.tfevents.1695107426.msip-dell.ims.rwth-aachen.de.969696.14
new file mode 100644
index 0000000000000000000000000000000000000000..307f5d59cd43a4aeb912cc24b06e064fee6275b7
Binary files /dev/null and b/runs/fashion_trainer_20230919_091023/Training vs. Validation Loss_Validation/events.out.tfevents.1695107426.msip-dell.ims.rwth-aachen.de.969696.14 differ
diff --git a/runs/fashion_trainer_20230919_091023/events.out.tfevents.1695107423.msip-dell.ims.rwth-aachen.de.969696.12 b/runs/fashion_trainer_20230919_091023/events.out.tfevents.1695107423.msip-dell.ims.rwth-aachen.de.969696.12
new file mode 100644
index 0000000000000000000000000000000000000000..13fd377234a18b06fe9bdd1e470bec6d3a68116f
Binary files /dev/null and b/runs/fashion_trainer_20230919_091023/events.out.tfevents.1695107423.msip-dell.ims.rwth-aachen.de.969696.12 differ
diff --git a/runs/fashion_trainer_20230919_091247/Training vs. Validation Loss_Training/events.out.tfevents.1695107569.msip-dell.ims.rwth-aachen.de.969696.16 b/runs/fashion_trainer_20230919_091247/Training vs. Validation Loss_Training/events.out.tfevents.1695107569.msip-dell.ims.rwth-aachen.de.969696.16
new file mode 100644
index 0000000000000000000000000000000000000000..6ca2794866e809e3436b5cda90fb71daf995c488
Binary files /dev/null and b/runs/fashion_trainer_20230919_091247/Training vs. Validation Loss_Training/events.out.tfevents.1695107569.msip-dell.ims.rwth-aachen.de.969696.16 differ
diff --git a/runs/fashion_trainer_20230919_091247/Training vs. Validation Loss_Validation/events.out.tfevents.1695107569.msip-dell.ims.rwth-aachen.de.969696.17 b/runs/fashion_trainer_20230919_091247/Training vs. Validation Loss_Validation/events.out.tfevents.1695107569.msip-dell.ims.rwth-aachen.de.969696.17
new file mode 100644
index 0000000000000000000000000000000000000000..5aecaf9ebef8afcd7f9796012c9e7f41025b1658
Binary files /dev/null and b/runs/fashion_trainer_20230919_091247/Training vs. Validation Loss_Validation/events.out.tfevents.1695107569.msip-dell.ims.rwth-aachen.de.969696.17 differ
diff --git a/runs/fashion_trainer_20230919_091247/events.out.tfevents.1695107567.msip-dell.ims.rwth-aachen.de.969696.15 b/runs/fashion_trainer_20230919_091247/events.out.tfevents.1695107567.msip-dell.ims.rwth-aachen.de.969696.15
new file mode 100644
index 0000000000000000000000000000000000000000..42fd4658c6168dea62f8c3917d1a9aa10c663327
Binary files /dev/null and b/runs/fashion_trainer_20230919_091247/events.out.tfevents.1695107567.msip-dell.ims.rwth-aachen.de.969696.15 differ
diff --git a/runs/fashion_trainer_20230919_091502/Training vs. Validation Loss_Training/events.out.tfevents.1695107705.msip-dell.ims.rwth-aachen.de.969696.19 b/runs/fashion_trainer_20230919_091502/Training vs. Validation Loss_Training/events.out.tfevents.1695107705.msip-dell.ims.rwth-aachen.de.969696.19
new file mode 100644
index 0000000000000000000000000000000000000000..df1384935a44a3706128f3713dd43661ddf8a3fa
Binary files /dev/null and b/runs/fashion_trainer_20230919_091502/Training vs. Validation Loss_Training/events.out.tfevents.1695107705.msip-dell.ims.rwth-aachen.de.969696.19 differ
diff --git a/runs/fashion_trainer_20230919_091502/Training vs. Validation Loss_Validation/events.out.tfevents.1695107705.msip-dell.ims.rwth-aachen.de.969696.20 b/runs/fashion_trainer_20230919_091502/Training vs. Validation Loss_Validation/events.out.tfevents.1695107705.msip-dell.ims.rwth-aachen.de.969696.20
new file mode 100644
index 0000000000000000000000000000000000000000..96072a9e9457b2b954c1592fe5e26b1e94c51a65
Binary files /dev/null and b/runs/fashion_trainer_20230919_091502/Training vs. Validation Loss_Validation/events.out.tfevents.1695107705.msip-dell.ims.rwth-aachen.de.969696.20 differ
diff --git a/runs/fashion_trainer_20230919_091502/events.out.tfevents.1695107702.msip-dell.ims.rwth-aachen.de.969696.18 b/runs/fashion_trainer_20230919_091502/events.out.tfevents.1695107702.msip-dell.ims.rwth-aachen.de.969696.18
new file mode 100644
index 0000000000000000000000000000000000000000..37bf41939cce6b063c2b66aba201c0e0c4a3a3ef
Binary files /dev/null and b/runs/fashion_trainer_20230919_091502/events.out.tfevents.1695107702.msip-dell.ims.rwth-aachen.de.969696.18 differ
diff --git a/runs/fashion_trainer_20230919_091718/Training vs. Validation Loss_Training/events.out.tfevents.1695107841.msip-dell.ims.rwth-aachen.de.969696.22 b/runs/fashion_trainer_20230919_091718/Training vs. Validation Loss_Training/events.out.tfevents.1695107841.msip-dell.ims.rwth-aachen.de.969696.22
new file mode 100644
index 0000000000000000000000000000000000000000..4149f22481f3e9faad21e99984d4fa558a167255
Binary files /dev/null and b/runs/fashion_trainer_20230919_091718/Training vs. Validation Loss_Training/events.out.tfevents.1695107841.msip-dell.ims.rwth-aachen.de.969696.22 differ
diff --git a/runs/fashion_trainer_20230919_091718/Training vs. Validation Loss_Validation/events.out.tfevents.1695107841.msip-dell.ims.rwth-aachen.de.969696.23 b/runs/fashion_trainer_20230919_091718/Training vs. Validation Loss_Validation/events.out.tfevents.1695107841.msip-dell.ims.rwth-aachen.de.969696.23
new file mode 100644
index 0000000000000000000000000000000000000000..014e977eeb76186cdb4f19040fe8c60701984ce4
Binary files /dev/null and b/runs/fashion_trainer_20230919_091718/Training vs. Validation Loss_Validation/events.out.tfevents.1695107841.msip-dell.ims.rwth-aachen.de.969696.23 differ
diff --git a/runs/fashion_trainer_20230919_091718/events.out.tfevents.1695107838.msip-dell.ims.rwth-aachen.de.969696.21 b/runs/fashion_trainer_20230919_091718/events.out.tfevents.1695107838.msip-dell.ims.rwth-aachen.de.969696.21
new file mode 100644
index 0000000000000000000000000000000000000000..bb2c08ce1a541da0eb6a747cc700a21937fc7849
Binary files /dev/null and b/runs/fashion_trainer_20230919_091718/events.out.tfevents.1695107838.msip-dell.ims.rwth-aachen.de.969696.21 differ
diff --git a/runs/fashion_trainer_20230919_091934/Training vs. Validation Loss_Training/events.out.tfevents.1695107977.msip-dell.ims.rwth-aachen.de.969696.25 b/runs/fashion_trainer_20230919_091934/Training vs. Validation Loss_Training/events.out.tfevents.1695107977.msip-dell.ims.rwth-aachen.de.969696.25
new file mode 100644
index 0000000000000000000000000000000000000000..5d01e33604ee81efb42bf811a83b939360f72657
Binary files /dev/null and b/runs/fashion_trainer_20230919_091934/Training vs. Validation Loss_Training/events.out.tfevents.1695107977.msip-dell.ims.rwth-aachen.de.969696.25 differ
diff --git a/runs/fashion_trainer_20230919_091934/Training vs. Validation Loss_Validation/events.out.tfevents.1695107977.msip-dell.ims.rwth-aachen.de.969696.26 b/runs/fashion_trainer_20230919_091934/Training vs. Validation Loss_Validation/events.out.tfevents.1695107977.msip-dell.ims.rwth-aachen.de.969696.26
new file mode 100644
index 0000000000000000000000000000000000000000..789ad5e4535ad9158abecb672927a5fa77d354b0
Binary files /dev/null and b/runs/fashion_trainer_20230919_091934/Training vs. Validation Loss_Validation/events.out.tfevents.1695107977.msip-dell.ims.rwth-aachen.de.969696.26 differ
diff --git a/runs/fashion_trainer_20230919_091934/events.out.tfevents.1695107974.msip-dell.ims.rwth-aachen.de.969696.24 b/runs/fashion_trainer_20230919_091934/events.out.tfevents.1695107974.msip-dell.ims.rwth-aachen.de.969696.24
new file mode 100644
index 0000000000000000000000000000000000000000..9c8b54d2a2cb7ebec664d38add60a4318aead5f6
Binary files /dev/null and b/runs/fashion_trainer_20230919_091934/events.out.tfevents.1695107974.msip-dell.ims.rwth-aachen.de.969696.24 differ
diff --git a/runs/fashion_trainer_20230919_092150/Training vs. Validation Loss_Training/events.out.tfevents.1695108113.msip-dell.ims.rwth-aachen.de.969696.28 b/runs/fashion_trainer_20230919_092150/Training vs. Validation Loss_Training/events.out.tfevents.1695108113.msip-dell.ims.rwth-aachen.de.969696.28
new file mode 100644
index 0000000000000000000000000000000000000000..05c78ccd807d73e6edfadcc83f221d0f02968ec1
Binary files /dev/null and b/runs/fashion_trainer_20230919_092150/Training vs. Validation Loss_Training/events.out.tfevents.1695108113.msip-dell.ims.rwth-aachen.de.969696.28 differ
diff --git a/runs/fashion_trainer_20230919_092150/Training vs. Validation Loss_Validation/events.out.tfevents.1695108113.msip-dell.ims.rwth-aachen.de.969696.29 b/runs/fashion_trainer_20230919_092150/Training vs. Validation Loss_Validation/events.out.tfevents.1695108113.msip-dell.ims.rwth-aachen.de.969696.29
new file mode 100644
index 0000000000000000000000000000000000000000..f9f791da0fc43351e13ec980633d683541d5b8f3
Binary files /dev/null and b/runs/fashion_trainer_20230919_092150/Training vs. Validation Loss_Validation/events.out.tfevents.1695108113.msip-dell.ims.rwth-aachen.de.969696.29 differ
diff --git a/runs/fashion_trainer_20230919_092150/events.out.tfevents.1695108110.msip-dell.ims.rwth-aachen.de.969696.27 b/runs/fashion_trainer_20230919_092150/events.out.tfevents.1695108110.msip-dell.ims.rwth-aachen.de.969696.27
new file mode 100644
index 0000000000000000000000000000000000000000..8f7f4c7911626bc6d64c60cfbb48b641c59f0a73
Binary files /dev/null and b/runs/fashion_trainer_20230919_092150/events.out.tfevents.1695108110.msip-dell.ims.rwth-aachen.de.969696.27 differ
diff --git a/runs/fashion_trainer_20230919_092417/Training vs. Validation Loss_Training/events.out.tfevents.1695108260.msip-dell.ims.rwth-aachen.de.975381.1 b/runs/fashion_trainer_20230919_092417/Training vs. Validation Loss_Training/events.out.tfevents.1695108260.msip-dell.ims.rwth-aachen.de.975381.1
new file mode 100644
index 0000000000000000000000000000000000000000..223e710b048f6cd2860bde19c2f43be315024e26
Binary files /dev/null and b/runs/fashion_trainer_20230919_092417/Training vs. Validation Loss_Training/events.out.tfevents.1695108260.msip-dell.ims.rwth-aachen.de.975381.1 differ
diff --git a/runs/fashion_trainer_20230919_092417/Training vs. Validation Loss_Validation/events.out.tfevents.1695108260.msip-dell.ims.rwth-aachen.de.975381.2 b/runs/fashion_trainer_20230919_092417/Training vs. Validation Loss_Validation/events.out.tfevents.1695108260.msip-dell.ims.rwth-aachen.de.975381.2
new file mode 100644
index 0000000000000000000000000000000000000000..6405054b160d6b18b1f81604319aab7344931b59
Binary files /dev/null and b/runs/fashion_trainer_20230919_092417/Training vs. Validation Loss_Validation/events.out.tfevents.1695108260.msip-dell.ims.rwth-aachen.de.975381.2 differ
diff --git a/runs/fashion_trainer_20230919_092417/events.out.tfevents.1695108257.msip-dell.ims.rwth-aachen.de.975381.0 b/runs/fashion_trainer_20230919_092417/events.out.tfevents.1695108257.msip-dell.ims.rwth-aachen.de.975381.0
new file mode 100644
index 0000000000000000000000000000000000000000..135c525a892aa42a5dbf9f0ec403b301719f390d
Binary files /dev/null and b/runs/fashion_trainer_20230919_092417/events.out.tfevents.1695108257.msip-dell.ims.rwth-aachen.de.975381.0 differ
diff --git a/runs/fashion_trainer_20230919_092631/Training vs. Validation Loss_Training/events.out.tfevents.1695108393.msip-dell.ims.rwth-aachen.de.975381.4 b/runs/fashion_trainer_20230919_092631/Training vs. Validation Loss_Training/events.out.tfevents.1695108393.msip-dell.ims.rwth-aachen.de.975381.4
new file mode 100644
index 0000000000000000000000000000000000000000..6436338e7443cae898de1123811e3e93549166a9
Binary files /dev/null and b/runs/fashion_trainer_20230919_092631/Training vs. Validation Loss_Training/events.out.tfevents.1695108393.msip-dell.ims.rwth-aachen.de.975381.4 differ
diff --git a/runs/fashion_trainer_20230919_092631/Training vs. Validation Loss_Validation/events.out.tfevents.1695108393.msip-dell.ims.rwth-aachen.de.975381.5 b/runs/fashion_trainer_20230919_092631/Training vs. Validation Loss_Validation/events.out.tfevents.1695108393.msip-dell.ims.rwth-aachen.de.975381.5
new file mode 100644
index 0000000000000000000000000000000000000000..aba762a7f8265abae22536cb50b8064cf1aaee7e
Binary files /dev/null and b/runs/fashion_trainer_20230919_092631/Training vs. Validation Loss_Validation/events.out.tfevents.1695108393.msip-dell.ims.rwth-aachen.de.975381.5 differ
diff --git a/runs/fashion_trainer_20230919_092631/events.out.tfevents.1695108391.msip-dell.ims.rwth-aachen.de.975381.3 b/runs/fashion_trainer_20230919_092631/events.out.tfevents.1695108391.msip-dell.ims.rwth-aachen.de.975381.3
new file mode 100644
index 0000000000000000000000000000000000000000..8d5bbe572a8786130dd1d4c6e779af1b113dec5d
Binary files /dev/null and b/runs/fashion_trainer_20230919_092631/events.out.tfevents.1695108391.msip-dell.ims.rwth-aachen.de.975381.3 differ
diff --git a/runs/fashion_trainer_20230919_092844/Training vs. Validation Loss_Training/events.out.tfevents.1695108526.msip-dell.ims.rwth-aachen.de.975381.7 b/runs/fashion_trainer_20230919_092844/Training vs. Validation Loss_Training/events.out.tfevents.1695108526.msip-dell.ims.rwth-aachen.de.975381.7
new file mode 100644
index 0000000000000000000000000000000000000000..d6727501ffb855f02066030795af1ed67d08fdd3
Binary files /dev/null and b/runs/fashion_trainer_20230919_092844/Training vs. Validation Loss_Training/events.out.tfevents.1695108526.msip-dell.ims.rwth-aachen.de.975381.7 differ
diff --git a/runs/fashion_trainer_20230919_092844/Training vs. Validation Loss_Validation/events.out.tfevents.1695108526.msip-dell.ims.rwth-aachen.de.975381.8 b/runs/fashion_trainer_20230919_092844/Training vs. Validation Loss_Validation/events.out.tfevents.1695108526.msip-dell.ims.rwth-aachen.de.975381.8
new file mode 100644
index 0000000000000000000000000000000000000000..6d112855c7885872beb9c282b55b0ddd7c7c0c3c
Binary files /dev/null and b/runs/fashion_trainer_20230919_092844/Training vs. Validation Loss_Validation/events.out.tfevents.1695108526.msip-dell.ims.rwth-aachen.de.975381.8 differ
diff --git a/runs/fashion_trainer_20230919_092844/events.out.tfevents.1695108524.msip-dell.ims.rwth-aachen.de.975381.6 b/runs/fashion_trainer_20230919_092844/events.out.tfevents.1695108524.msip-dell.ims.rwth-aachen.de.975381.6
new file mode 100644
index 0000000000000000000000000000000000000000..a110c803b39d5f5769e26c7a05fee4b82d0c813a
Binary files /dev/null and b/runs/fashion_trainer_20230919_092844/events.out.tfevents.1695108524.msip-dell.ims.rwth-aachen.de.975381.6 differ
diff --git a/runs/fashion_trainer_20230919_093054/Training vs. Validation Loss_Training/events.out.tfevents.1695108657.msip-dell.ims.rwth-aachen.de.975381.10 b/runs/fashion_trainer_20230919_093054/Training vs. Validation Loss_Training/events.out.tfevents.1695108657.msip-dell.ims.rwth-aachen.de.975381.10
new file mode 100644
index 0000000000000000000000000000000000000000..cba67dcd48c841a8d7af6305adb5a2299552d37f
Binary files /dev/null and b/runs/fashion_trainer_20230919_093054/Training vs. Validation Loss_Training/events.out.tfevents.1695108657.msip-dell.ims.rwth-aachen.de.975381.10 differ
diff --git a/runs/fashion_trainer_20230919_093054/Training vs. Validation Loss_Validation/events.out.tfevents.1695108657.msip-dell.ims.rwth-aachen.de.975381.11 b/runs/fashion_trainer_20230919_093054/Training vs. Validation Loss_Validation/events.out.tfevents.1695108657.msip-dell.ims.rwth-aachen.de.975381.11
new file mode 100644
index 0000000000000000000000000000000000000000..97634561950f9bc0189c6f08d836d9a868ee4e80
Binary files /dev/null and b/runs/fashion_trainer_20230919_093054/Training vs. Validation Loss_Validation/events.out.tfevents.1695108657.msip-dell.ims.rwth-aachen.de.975381.11 differ
diff --git a/runs/fashion_trainer_20230919_093054/events.out.tfevents.1695108654.msip-dell.ims.rwth-aachen.de.975381.9 b/runs/fashion_trainer_20230919_093054/events.out.tfevents.1695108654.msip-dell.ims.rwth-aachen.de.975381.9
new file mode 100644
index 0000000000000000000000000000000000000000..35c9c9e0d5048d63c6ae87d75f9301ba3d719429
Binary files /dev/null and b/runs/fashion_trainer_20230919_093054/events.out.tfevents.1695108654.msip-dell.ims.rwth-aachen.de.975381.9 differ
diff --git a/runs/fashion_trainer_20230919_093302/Training vs. Validation Loss_Training/events.out.tfevents.1695108785.msip-dell.ims.rwth-aachen.de.975381.13 b/runs/fashion_trainer_20230919_093302/Training vs. Validation Loss_Training/events.out.tfevents.1695108785.msip-dell.ims.rwth-aachen.de.975381.13
new file mode 100644
index 0000000000000000000000000000000000000000..a0e8a0c6dca8db8411da37182ef34fdcd935af5b
Binary files /dev/null and b/runs/fashion_trainer_20230919_093302/Training vs. Validation Loss_Training/events.out.tfevents.1695108785.msip-dell.ims.rwth-aachen.de.975381.13 differ
diff --git a/runs/fashion_trainer_20230919_093302/Training vs. Validation Loss_Validation/events.out.tfevents.1695108785.msip-dell.ims.rwth-aachen.de.975381.14 b/runs/fashion_trainer_20230919_093302/Training vs. Validation Loss_Validation/events.out.tfevents.1695108785.msip-dell.ims.rwth-aachen.de.975381.14
new file mode 100644
index 0000000000000000000000000000000000000000..f788742442bf276a1c7975de9703f3836ca9ac2d
Binary files /dev/null and b/runs/fashion_trainer_20230919_093302/Training vs. Validation Loss_Validation/events.out.tfevents.1695108785.msip-dell.ims.rwth-aachen.de.975381.14 differ
diff --git a/runs/fashion_trainer_20230919_093302/events.out.tfevents.1695108782.msip-dell.ims.rwth-aachen.de.975381.12 b/runs/fashion_trainer_20230919_093302/events.out.tfevents.1695108782.msip-dell.ims.rwth-aachen.de.975381.12
new file mode 100644
index 0000000000000000000000000000000000000000..1b70e1023a6e6713f7f22a6d4fe43dd80bc5b1e2
Binary files /dev/null and b/runs/fashion_trainer_20230919_093302/events.out.tfevents.1695108782.msip-dell.ims.rwth-aachen.de.975381.12 differ
diff --git a/runs/fashion_trainer_20230919_093515/Training vs. Validation Loss_Training/events.out.tfevents.1695108917.msip-dell.ims.rwth-aachen.de.975381.16 b/runs/fashion_trainer_20230919_093515/Training vs. Validation Loss_Training/events.out.tfevents.1695108917.msip-dell.ims.rwth-aachen.de.975381.16
new file mode 100644
index 0000000000000000000000000000000000000000..c2bc324db43e80aa8e203b43ba7721c1ce87081c
Binary files /dev/null and b/runs/fashion_trainer_20230919_093515/Training vs. Validation Loss_Training/events.out.tfevents.1695108917.msip-dell.ims.rwth-aachen.de.975381.16 differ
diff --git a/runs/fashion_trainer_20230919_093515/Training vs. Validation Loss_Validation/events.out.tfevents.1695108917.msip-dell.ims.rwth-aachen.de.975381.17 b/runs/fashion_trainer_20230919_093515/Training vs. Validation Loss_Validation/events.out.tfevents.1695108917.msip-dell.ims.rwth-aachen.de.975381.17
new file mode 100644
index 0000000000000000000000000000000000000000..d2b8b8b00c2608ec143e5b7affaafb60deb1b055
Binary files /dev/null and b/runs/fashion_trainer_20230919_093515/Training vs. Validation Loss_Validation/events.out.tfevents.1695108917.msip-dell.ims.rwth-aachen.de.975381.17 differ
diff --git a/runs/fashion_trainer_20230919_093515/events.out.tfevents.1695108915.msip-dell.ims.rwth-aachen.de.975381.15 b/runs/fashion_trainer_20230919_093515/events.out.tfevents.1695108915.msip-dell.ims.rwth-aachen.de.975381.15
new file mode 100644
index 0000000000000000000000000000000000000000..90c6cde05c19dafc9bcd887215c9349620b58a7a
Binary files /dev/null and b/runs/fashion_trainer_20230919_093515/events.out.tfevents.1695108915.msip-dell.ims.rwth-aachen.de.975381.15 differ
diff --git a/runs/fashion_trainer_20230919_093734/Training vs. Validation Loss_Training/events.out.tfevents.1695109056.msip-dell.ims.rwth-aachen.de.975381.19 b/runs/fashion_trainer_20230919_093734/Training vs. Validation Loss_Training/events.out.tfevents.1695109056.msip-dell.ims.rwth-aachen.de.975381.19
new file mode 100644
index 0000000000000000000000000000000000000000..af3dfc35662587fc9c571a7308762fc2081b2a5b
Binary files /dev/null and b/runs/fashion_trainer_20230919_093734/Training vs. Validation Loss_Training/events.out.tfevents.1695109056.msip-dell.ims.rwth-aachen.de.975381.19 differ
diff --git a/runs/fashion_trainer_20230919_093734/Training vs. Validation Loss_Validation/events.out.tfevents.1695109056.msip-dell.ims.rwth-aachen.de.975381.20 b/runs/fashion_trainer_20230919_093734/Training vs. Validation Loss_Validation/events.out.tfevents.1695109056.msip-dell.ims.rwth-aachen.de.975381.20
new file mode 100644
index 0000000000000000000000000000000000000000..f64faf9b9320fdfcb21e46a5e8927119a2a013b6
Binary files /dev/null and b/runs/fashion_trainer_20230919_093734/Training vs. Validation Loss_Validation/events.out.tfevents.1695109056.msip-dell.ims.rwth-aachen.de.975381.20 differ
diff --git a/runs/fashion_trainer_20230919_093734/events.out.tfevents.1695109054.msip-dell.ims.rwth-aachen.de.975381.18 b/runs/fashion_trainer_20230919_093734/events.out.tfevents.1695109054.msip-dell.ims.rwth-aachen.de.975381.18
new file mode 100644
index 0000000000000000000000000000000000000000..f5f068b141d37b44cfefdbf662adea93e8e8871c
Binary files /dev/null and b/runs/fashion_trainer_20230919_093734/events.out.tfevents.1695109054.msip-dell.ims.rwth-aachen.de.975381.18 differ
diff --git a/runs/fashion_trainer_20230919_093943/Training vs. Validation Loss_Training/events.out.tfevents.1695109186.msip-dell.ims.rwth-aachen.de.975381.22 b/runs/fashion_trainer_20230919_093943/Training vs. Validation Loss_Training/events.out.tfevents.1695109186.msip-dell.ims.rwth-aachen.de.975381.22
new file mode 100644
index 0000000000000000000000000000000000000000..180c6f5eb0b826bb9c834a2ea67b07dea32f2e3a
Binary files /dev/null and b/runs/fashion_trainer_20230919_093943/Training vs. Validation Loss_Training/events.out.tfevents.1695109186.msip-dell.ims.rwth-aachen.de.975381.22 differ
diff --git a/runs/fashion_trainer_20230919_093943/Training vs. Validation Loss_Validation/events.out.tfevents.1695109186.msip-dell.ims.rwth-aachen.de.975381.23 b/runs/fashion_trainer_20230919_093943/Training vs. Validation Loss_Validation/events.out.tfevents.1695109186.msip-dell.ims.rwth-aachen.de.975381.23
new file mode 100644
index 0000000000000000000000000000000000000000..e6331ce578d70248648f2f8f048f67f86793ecd3
Binary files /dev/null and b/runs/fashion_trainer_20230919_093943/Training vs. Validation Loss_Validation/events.out.tfevents.1695109186.msip-dell.ims.rwth-aachen.de.975381.23 differ
diff --git a/runs/fashion_trainer_20230919_093943/events.out.tfevents.1695109183.msip-dell.ims.rwth-aachen.de.975381.21 b/runs/fashion_trainer_20230919_093943/events.out.tfevents.1695109183.msip-dell.ims.rwth-aachen.de.975381.21
new file mode 100644
index 0000000000000000000000000000000000000000..8d81650daac26e6f32e656e7d71410548f92270e
Binary files /dev/null and b/runs/fashion_trainer_20230919_093943/events.out.tfevents.1695109183.msip-dell.ims.rwth-aachen.de.975381.21 differ
diff --git a/runs/fashion_trainer_20230919_094156/Training vs. Validation Loss_Training/events.out.tfevents.1695109318.msip-dell.ims.rwth-aachen.de.975381.25 b/runs/fashion_trainer_20230919_094156/Training vs. Validation Loss_Training/events.out.tfevents.1695109318.msip-dell.ims.rwth-aachen.de.975381.25
new file mode 100644
index 0000000000000000000000000000000000000000..42176715b421510014fb1df1836b3ae038ad8f91
Binary files /dev/null and b/runs/fashion_trainer_20230919_094156/Training vs. Validation Loss_Training/events.out.tfevents.1695109318.msip-dell.ims.rwth-aachen.de.975381.25 differ
diff --git a/runs/fashion_trainer_20230919_094156/Training vs. Validation Loss_Validation/events.out.tfevents.1695109318.msip-dell.ims.rwth-aachen.de.975381.26 b/runs/fashion_trainer_20230919_094156/Training vs. Validation Loss_Validation/events.out.tfevents.1695109318.msip-dell.ims.rwth-aachen.de.975381.26
new file mode 100644
index 0000000000000000000000000000000000000000..197269518fd6f99635c69d63352355d3329a8593
Binary files /dev/null and b/runs/fashion_trainer_20230919_094156/Training vs. Validation Loss_Validation/events.out.tfevents.1695109318.msip-dell.ims.rwth-aachen.de.975381.26 differ
diff --git a/runs/fashion_trainer_20230919_094156/events.out.tfevents.1695109316.msip-dell.ims.rwth-aachen.de.975381.24 b/runs/fashion_trainer_20230919_094156/events.out.tfevents.1695109316.msip-dell.ims.rwth-aachen.de.975381.24
new file mode 100644
index 0000000000000000000000000000000000000000..a799e520bbcf5c54d6d884dc4c94bfb1f824d58f
Binary files /dev/null and b/runs/fashion_trainer_20230919_094156/events.out.tfevents.1695109316.msip-dell.ims.rwth-aachen.de.975381.24 differ
diff --git a/runs/fashion_trainer_20230919_094400/Training vs. Validation Loss_Training/events.out.tfevents.1695109442.msip-dell.ims.rwth-aachen.de.975381.28 b/runs/fashion_trainer_20230919_094400/Training vs. Validation Loss_Training/events.out.tfevents.1695109442.msip-dell.ims.rwth-aachen.de.975381.28
new file mode 100644
index 0000000000000000000000000000000000000000..ee94106a3cd52200311aabe55d61263a331feac9
Binary files /dev/null and b/runs/fashion_trainer_20230919_094400/Training vs. Validation Loss_Training/events.out.tfevents.1695109442.msip-dell.ims.rwth-aachen.de.975381.28 differ
diff --git a/runs/fashion_trainer_20230919_094400/Training vs. Validation Loss_Validation/events.out.tfevents.1695109442.msip-dell.ims.rwth-aachen.de.975381.29 b/runs/fashion_trainer_20230919_094400/Training vs. Validation Loss_Validation/events.out.tfevents.1695109442.msip-dell.ims.rwth-aachen.de.975381.29
new file mode 100644
index 0000000000000000000000000000000000000000..5f2cbb02c2e3e833395bfb1d44bddd5b0eb2cd01
Binary files /dev/null and b/runs/fashion_trainer_20230919_094400/Training vs. Validation Loss_Validation/events.out.tfevents.1695109442.msip-dell.ims.rwth-aachen.de.975381.29 differ
diff --git a/runs/fashion_trainer_20230919_094400/events.out.tfevents.1695109440.msip-dell.ims.rwth-aachen.de.975381.27 b/runs/fashion_trainer_20230919_094400/events.out.tfevents.1695109440.msip-dell.ims.rwth-aachen.de.975381.27
new file mode 100644
index 0000000000000000000000000000000000000000..b6c796e1d6d42e04b2c553b4afb9bde91a526403
Binary files /dev/null and b/runs/fashion_trainer_20230919_094400/events.out.tfevents.1695109440.msip-dell.ims.rwth-aachen.de.975381.27 differ
diff --git a/runs/fashion_trainer_20230919_095355/Training vs. Validation Loss_Training/events.out.tfevents.1695110038.msip-dell.ims.rwth-aachen.de.983188.1 b/runs/fashion_trainer_20230919_095355/Training vs. Validation Loss_Training/events.out.tfevents.1695110038.msip-dell.ims.rwth-aachen.de.983188.1
new file mode 100644
index 0000000000000000000000000000000000000000..13cb0f66e1e3cda34b72859f2f219fb90add3bac
Binary files /dev/null and b/runs/fashion_trainer_20230919_095355/Training vs. Validation Loss_Training/events.out.tfevents.1695110038.msip-dell.ims.rwth-aachen.de.983188.1 differ
diff --git a/runs/fashion_trainer_20230919_095355/Training vs. Validation Loss_Validation/events.out.tfevents.1695110038.msip-dell.ims.rwth-aachen.de.983188.2 b/runs/fashion_trainer_20230919_095355/Training vs. Validation Loss_Validation/events.out.tfevents.1695110038.msip-dell.ims.rwth-aachen.de.983188.2
new file mode 100644
index 0000000000000000000000000000000000000000..e1c11cd09482064067ce115c22ced7bcefea16bc
Binary files /dev/null and b/runs/fashion_trainer_20230919_095355/Training vs. Validation Loss_Validation/events.out.tfevents.1695110038.msip-dell.ims.rwth-aachen.de.983188.2 differ
diff --git a/runs/fashion_trainer_20230919_095355/events.out.tfevents.1695110035.msip-dell.ims.rwth-aachen.de.983188.0 b/runs/fashion_trainer_20230919_095355/events.out.tfevents.1695110035.msip-dell.ims.rwth-aachen.de.983188.0
new file mode 100644
index 0000000000000000000000000000000000000000..92b89d221510ed4bca5cd453f20167bf000aae8a
Binary files /dev/null and b/runs/fashion_trainer_20230919_095355/events.out.tfevents.1695110035.msip-dell.ims.rwth-aachen.de.983188.0 differ
diff --git a/runs/fashion_trainer_20230919_095610/Training vs. Validation Loss_Training/events.out.tfevents.1695110172.msip-dell.ims.rwth-aachen.de.983188.4 b/runs/fashion_trainer_20230919_095610/Training vs. Validation Loss_Training/events.out.tfevents.1695110172.msip-dell.ims.rwth-aachen.de.983188.4
new file mode 100644
index 0000000000000000000000000000000000000000..59065952ee5d37e7684077cdce6dc60259d23d3f
Binary files /dev/null and b/runs/fashion_trainer_20230919_095610/Training vs. Validation Loss_Training/events.out.tfevents.1695110172.msip-dell.ims.rwth-aachen.de.983188.4 differ
diff --git a/runs/fashion_trainer_20230919_095610/Training vs. Validation Loss_Validation/events.out.tfevents.1695110172.msip-dell.ims.rwth-aachen.de.983188.5 b/runs/fashion_trainer_20230919_095610/Training vs. Validation Loss_Validation/events.out.tfevents.1695110172.msip-dell.ims.rwth-aachen.de.983188.5
new file mode 100644
index 0000000000000000000000000000000000000000..777ab7ccf2f1317f81fc544efd6f9f2a08df6257
Binary files /dev/null and b/runs/fashion_trainer_20230919_095610/Training vs. Validation Loss_Validation/events.out.tfevents.1695110172.msip-dell.ims.rwth-aachen.de.983188.5 differ
diff --git a/runs/fashion_trainer_20230919_095610/events.out.tfevents.1695110170.msip-dell.ims.rwth-aachen.de.983188.3 b/runs/fashion_trainer_20230919_095610/events.out.tfevents.1695110170.msip-dell.ims.rwth-aachen.de.983188.3
new file mode 100644
index 0000000000000000000000000000000000000000..b924ec6fd87aa58e16b7f8842896244268e1808f
Binary files /dev/null and b/runs/fashion_trainer_20230919_095610/events.out.tfevents.1695110170.msip-dell.ims.rwth-aachen.de.983188.3 differ
diff --git a/runs/fashion_trainer_20230919_095822/Training vs. Validation Loss_Training/events.out.tfevents.1695110304.msip-dell.ims.rwth-aachen.de.983188.7 b/runs/fashion_trainer_20230919_095822/Training vs. Validation Loss_Training/events.out.tfevents.1695110304.msip-dell.ims.rwth-aachen.de.983188.7
new file mode 100644
index 0000000000000000000000000000000000000000..396d3032fe1315b10ad494c06148c47643404c7c
Binary files /dev/null and b/runs/fashion_trainer_20230919_095822/Training vs. Validation Loss_Training/events.out.tfevents.1695110304.msip-dell.ims.rwth-aachen.de.983188.7 differ
diff --git a/runs/fashion_trainer_20230919_095822/Training vs. Validation Loss_Validation/events.out.tfevents.1695110304.msip-dell.ims.rwth-aachen.de.983188.8 b/runs/fashion_trainer_20230919_095822/Training vs. Validation Loss_Validation/events.out.tfevents.1695110304.msip-dell.ims.rwth-aachen.de.983188.8
new file mode 100644
index 0000000000000000000000000000000000000000..a87119173db3442aaec1ffca4f790d106e3a35ec
Binary files /dev/null and b/runs/fashion_trainer_20230919_095822/Training vs. Validation Loss_Validation/events.out.tfevents.1695110304.msip-dell.ims.rwth-aachen.de.983188.8 differ
diff --git a/runs/fashion_trainer_20230919_095822/events.out.tfevents.1695110302.msip-dell.ims.rwth-aachen.de.983188.6 b/runs/fashion_trainer_20230919_095822/events.out.tfevents.1695110302.msip-dell.ims.rwth-aachen.de.983188.6
new file mode 100644
index 0000000000000000000000000000000000000000..0946d411cd4d200d19708e97be799ebc9347dbfb
Binary files /dev/null and b/runs/fashion_trainer_20230919_095822/events.out.tfevents.1695110302.msip-dell.ims.rwth-aachen.de.983188.6 differ
diff --git a/runs/fashion_trainer_20230919_100159/Training vs. Validation Loss_Training/events.out.tfevents.1695110522.msip-dell.ims.rwth-aachen.de.985899.1 b/runs/fashion_trainer_20230919_100159/Training vs. Validation Loss_Training/events.out.tfevents.1695110522.msip-dell.ims.rwth-aachen.de.985899.1
new file mode 100644
index 0000000000000000000000000000000000000000..abcd2fd1298575ebad1adc5bfa352ebb88447cb8
Binary files /dev/null and b/runs/fashion_trainer_20230919_100159/Training vs. Validation Loss_Training/events.out.tfevents.1695110522.msip-dell.ims.rwth-aachen.de.985899.1 differ
diff --git a/runs/fashion_trainer_20230919_100159/Training vs. Validation Loss_Validation/events.out.tfevents.1695110522.msip-dell.ims.rwth-aachen.de.985899.2 b/runs/fashion_trainer_20230919_100159/Training vs. Validation Loss_Validation/events.out.tfevents.1695110522.msip-dell.ims.rwth-aachen.de.985899.2
new file mode 100644
index 0000000000000000000000000000000000000000..ed4d177267d670531ca74b95f80286dda6641f83
Binary files /dev/null and b/runs/fashion_trainer_20230919_100159/Training vs. Validation Loss_Validation/events.out.tfevents.1695110522.msip-dell.ims.rwth-aachen.de.985899.2 differ
diff --git a/runs/fashion_trainer_20230919_100159/events.out.tfevents.1695110519.msip-dell.ims.rwth-aachen.de.985899.0 b/runs/fashion_trainer_20230919_100159/events.out.tfevents.1695110519.msip-dell.ims.rwth-aachen.de.985899.0
new file mode 100644
index 0000000000000000000000000000000000000000..9bd1923791895394eced3773f41a039dd9d07774
Binary files /dev/null and b/runs/fashion_trainer_20230919_100159/events.out.tfevents.1695110519.msip-dell.ims.rwth-aachen.de.985899.0 differ
diff --git a/runs/fashion_trainer_20230919_100410/Training vs. Validation Loss_Training/events.out.tfevents.1695110652.msip-dell.ims.rwth-aachen.de.985899.4 b/runs/fashion_trainer_20230919_100410/Training vs. Validation Loss_Training/events.out.tfevents.1695110652.msip-dell.ims.rwth-aachen.de.985899.4
new file mode 100644
index 0000000000000000000000000000000000000000..f972b50ef91267668f421eff925362dd06a01931
Binary files /dev/null and b/runs/fashion_trainer_20230919_100410/Training vs. Validation Loss_Training/events.out.tfevents.1695110652.msip-dell.ims.rwth-aachen.de.985899.4 differ
diff --git a/runs/fashion_trainer_20230919_100410/Training vs. Validation Loss_Validation/events.out.tfevents.1695110652.msip-dell.ims.rwth-aachen.de.985899.5 b/runs/fashion_trainer_20230919_100410/Training vs. Validation Loss_Validation/events.out.tfevents.1695110652.msip-dell.ims.rwth-aachen.de.985899.5
new file mode 100644
index 0000000000000000000000000000000000000000..85226228daa042fce1e05b9963162f284bd60062
Binary files /dev/null and b/runs/fashion_trainer_20230919_100410/Training vs. Validation Loss_Validation/events.out.tfevents.1695110652.msip-dell.ims.rwth-aachen.de.985899.5 differ
diff --git a/runs/fashion_trainer_20230919_100410/events.out.tfevents.1695110650.msip-dell.ims.rwth-aachen.de.985899.3 b/runs/fashion_trainer_20230919_100410/events.out.tfevents.1695110650.msip-dell.ims.rwth-aachen.de.985899.3
new file mode 100644
index 0000000000000000000000000000000000000000..9d2471d6c0f4147c7200ea4862b4f7ee4794c85e
Binary files /dev/null and b/runs/fashion_trainer_20230919_100410/events.out.tfevents.1695110650.msip-dell.ims.rwth-aachen.de.985899.3 differ
diff --git a/runs/fashion_trainer_20230919_100628/Training vs. Validation Loss_Training/events.out.tfevents.1695110791.msip-dell.ims.rwth-aachen.de.985899.7 b/runs/fashion_trainer_20230919_100628/Training vs. Validation Loss_Training/events.out.tfevents.1695110791.msip-dell.ims.rwth-aachen.de.985899.7
new file mode 100644
index 0000000000000000000000000000000000000000..7295472ec4ad2666c20d5a16eba3889a5258d56d
Binary files /dev/null and b/runs/fashion_trainer_20230919_100628/Training vs. Validation Loss_Training/events.out.tfevents.1695110791.msip-dell.ims.rwth-aachen.de.985899.7 differ
diff --git a/runs/fashion_trainer_20230919_100628/Training vs. Validation Loss_Validation/events.out.tfevents.1695110791.msip-dell.ims.rwth-aachen.de.985899.8 b/runs/fashion_trainer_20230919_100628/Training vs. Validation Loss_Validation/events.out.tfevents.1695110791.msip-dell.ims.rwth-aachen.de.985899.8
new file mode 100644
index 0000000000000000000000000000000000000000..02c9b8a19da1766859a0772e74447171727e3440
Binary files /dev/null and b/runs/fashion_trainer_20230919_100628/Training vs. Validation Loss_Validation/events.out.tfevents.1695110791.msip-dell.ims.rwth-aachen.de.985899.8 differ
diff --git a/runs/fashion_trainer_20230919_100628/events.out.tfevents.1695110788.msip-dell.ims.rwth-aachen.de.985899.6 b/runs/fashion_trainer_20230919_100628/events.out.tfevents.1695110788.msip-dell.ims.rwth-aachen.de.985899.6
new file mode 100644
index 0000000000000000000000000000000000000000..2f6f6684cfbb7ac5ae33b70a4899550426d2e621
Binary files /dev/null and b/runs/fashion_trainer_20230919_100628/events.out.tfevents.1695110788.msip-dell.ims.rwth-aachen.de.985899.6 differ
diff --git a/runs/fashion_trainer_20230919_100840/Training vs. Validation Loss_Training/events.out.tfevents.1695110923.msip-dell.ims.rwth-aachen.de.985899.10 b/runs/fashion_trainer_20230919_100840/Training vs. Validation Loss_Training/events.out.tfevents.1695110923.msip-dell.ims.rwth-aachen.de.985899.10
new file mode 100644
index 0000000000000000000000000000000000000000..ab96c5dc9121cca68e18bd4eeb4f815762d3a327
Binary files /dev/null and b/runs/fashion_trainer_20230919_100840/Training vs. Validation Loss_Training/events.out.tfevents.1695110923.msip-dell.ims.rwth-aachen.de.985899.10 differ
diff --git a/runs/fashion_trainer_20230919_100840/Training vs. Validation Loss_Validation/events.out.tfevents.1695110923.msip-dell.ims.rwth-aachen.de.985899.11 b/runs/fashion_trainer_20230919_100840/Training vs. Validation Loss_Validation/events.out.tfevents.1695110923.msip-dell.ims.rwth-aachen.de.985899.11
new file mode 100644
index 0000000000000000000000000000000000000000..638b95038f03066db6fb262e562230f18acb656a
Binary files /dev/null and b/runs/fashion_trainer_20230919_100840/Training vs. Validation Loss_Validation/events.out.tfevents.1695110923.msip-dell.ims.rwth-aachen.de.985899.11 differ
diff --git a/runs/fashion_trainer_20230919_100840/events.out.tfevents.1695110920.msip-dell.ims.rwth-aachen.de.985899.9 b/runs/fashion_trainer_20230919_100840/events.out.tfevents.1695110920.msip-dell.ims.rwth-aachen.de.985899.9
new file mode 100644
index 0000000000000000000000000000000000000000..526606d84ab0aff0424d8641196127422f649b95
Binary files /dev/null and b/runs/fashion_trainer_20230919_100840/events.out.tfevents.1695110920.msip-dell.ims.rwth-aachen.de.985899.9 differ
diff --git a/runs/fashion_trainer_20230919_101059/Training vs. Validation Loss_Training/events.out.tfevents.1695111061.msip-dell.ims.rwth-aachen.de.985899.13 b/runs/fashion_trainer_20230919_101059/Training vs. Validation Loss_Training/events.out.tfevents.1695111061.msip-dell.ims.rwth-aachen.de.985899.13
new file mode 100644
index 0000000000000000000000000000000000000000..04ad7f4fd7c48475e12eab46269d13ab142f9cf3
Binary files /dev/null and b/runs/fashion_trainer_20230919_101059/Training vs. Validation Loss_Training/events.out.tfevents.1695111061.msip-dell.ims.rwth-aachen.de.985899.13 differ
diff --git a/runs/fashion_trainer_20230919_101059/Training vs. Validation Loss_Validation/events.out.tfevents.1695111061.msip-dell.ims.rwth-aachen.de.985899.14 b/runs/fashion_trainer_20230919_101059/Training vs. Validation Loss_Validation/events.out.tfevents.1695111061.msip-dell.ims.rwth-aachen.de.985899.14
new file mode 100644
index 0000000000000000000000000000000000000000..1286e3fc590927db2cbec3becc4a750ebc3295c2
Binary files /dev/null and b/runs/fashion_trainer_20230919_101059/Training vs. Validation Loss_Validation/events.out.tfevents.1695111061.msip-dell.ims.rwth-aachen.de.985899.14 differ
diff --git a/runs/fashion_trainer_20230919_101059/events.out.tfevents.1695111059.msip-dell.ims.rwth-aachen.de.985899.12 b/runs/fashion_trainer_20230919_101059/events.out.tfevents.1695111059.msip-dell.ims.rwth-aachen.de.985899.12
new file mode 100644
index 0000000000000000000000000000000000000000..9db72072edc337da2cd466c80e9baf2dae34d383
Binary files /dev/null and b/runs/fashion_trainer_20230919_101059/events.out.tfevents.1695111059.msip-dell.ims.rwth-aachen.de.985899.12 differ
diff --git a/runs/fashion_trainer_20230919_101323/Training vs. Validation Loss_Training/events.out.tfevents.1695111206.msip-dell.ims.rwth-aachen.de.985899.16 b/runs/fashion_trainer_20230919_101323/Training vs. Validation Loss_Training/events.out.tfevents.1695111206.msip-dell.ims.rwth-aachen.de.985899.16
new file mode 100644
index 0000000000000000000000000000000000000000..a0da1d6f2317ef294529813af024df3d63504fbf
Binary files /dev/null and b/runs/fashion_trainer_20230919_101323/Training vs. Validation Loss_Training/events.out.tfevents.1695111206.msip-dell.ims.rwth-aachen.de.985899.16 differ
diff --git a/runs/fashion_trainer_20230919_101323/Training vs. Validation Loss_Validation/events.out.tfevents.1695111206.msip-dell.ims.rwth-aachen.de.985899.17 b/runs/fashion_trainer_20230919_101323/Training vs. Validation Loss_Validation/events.out.tfevents.1695111206.msip-dell.ims.rwth-aachen.de.985899.17
new file mode 100644
index 0000000000000000000000000000000000000000..cb3ab6b031be0b8b32e697147cb32f70f90d1737
Binary files /dev/null and b/runs/fashion_trainer_20230919_101323/Training vs. Validation Loss_Validation/events.out.tfevents.1695111206.msip-dell.ims.rwth-aachen.de.985899.17 differ
diff --git a/runs/fashion_trainer_20230919_101323/events.out.tfevents.1695111203.msip-dell.ims.rwth-aachen.de.985899.15 b/runs/fashion_trainer_20230919_101323/events.out.tfevents.1695111203.msip-dell.ims.rwth-aachen.de.985899.15
new file mode 100644
index 0000000000000000000000000000000000000000..c63cf2e11f80443ad18b573ced34aa4a4762f9b0
Binary files /dev/null and b/runs/fashion_trainer_20230919_101323/events.out.tfevents.1695111203.msip-dell.ims.rwth-aachen.de.985899.15 differ
diff --git a/runs/fashion_trainer_20230919_101532/Training vs. Validation Loss_Training/events.out.tfevents.1695111334.msip-dell.ims.rwth-aachen.de.985899.19 b/runs/fashion_trainer_20230919_101532/Training vs. Validation Loss_Training/events.out.tfevents.1695111334.msip-dell.ims.rwth-aachen.de.985899.19
new file mode 100644
index 0000000000000000000000000000000000000000..f576144d3fb39b68f145fe7418485534b3175c22
Binary files /dev/null and b/runs/fashion_trainer_20230919_101532/Training vs. Validation Loss_Training/events.out.tfevents.1695111334.msip-dell.ims.rwth-aachen.de.985899.19 differ
diff --git a/runs/fashion_trainer_20230919_101532/Training vs. Validation Loss_Validation/events.out.tfevents.1695111334.msip-dell.ims.rwth-aachen.de.985899.20 b/runs/fashion_trainer_20230919_101532/Training vs. Validation Loss_Validation/events.out.tfevents.1695111334.msip-dell.ims.rwth-aachen.de.985899.20
new file mode 100644
index 0000000000000000000000000000000000000000..fa113cc96492e3e4dd98e3858f4a0d3dea1f6040
Binary files /dev/null and b/runs/fashion_trainer_20230919_101532/Training vs. Validation Loss_Validation/events.out.tfevents.1695111334.msip-dell.ims.rwth-aachen.de.985899.20 differ
diff --git a/runs/fashion_trainer_20230919_101532/events.out.tfevents.1695111332.msip-dell.ims.rwth-aachen.de.985899.18 b/runs/fashion_trainer_20230919_101532/events.out.tfevents.1695111332.msip-dell.ims.rwth-aachen.de.985899.18
new file mode 100644
index 0000000000000000000000000000000000000000..229a088cf51b184160698c7e613d54ff6de5ce1e
Binary files /dev/null and b/runs/fashion_trainer_20230919_101532/events.out.tfevents.1695111332.msip-dell.ims.rwth-aachen.de.985899.18 differ
diff --git a/runs/fashion_trainer_20230919_101736/Training vs. Validation Loss_Training/events.out.tfevents.1695111459.msip-dell.ims.rwth-aachen.de.985899.22 b/runs/fashion_trainer_20230919_101736/Training vs. Validation Loss_Training/events.out.tfevents.1695111459.msip-dell.ims.rwth-aachen.de.985899.22
new file mode 100644
index 0000000000000000000000000000000000000000..84c127758e7ea23d33a1c722d942944115ad6b69
Binary files /dev/null and b/runs/fashion_trainer_20230919_101736/Training vs. Validation Loss_Training/events.out.tfevents.1695111459.msip-dell.ims.rwth-aachen.de.985899.22 differ
diff --git a/runs/fashion_trainer_20230919_101736/Training vs. Validation Loss_Validation/events.out.tfevents.1695111459.msip-dell.ims.rwth-aachen.de.985899.23 b/runs/fashion_trainer_20230919_101736/Training vs. Validation Loss_Validation/events.out.tfevents.1695111459.msip-dell.ims.rwth-aachen.de.985899.23
new file mode 100644
index 0000000000000000000000000000000000000000..c69d075b003c970dfe711863e895a508e62af0f6
Binary files /dev/null and b/runs/fashion_trainer_20230919_101736/Training vs. Validation Loss_Validation/events.out.tfevents.1695111459.msip-dell.ims.rwth-aachen.de.985899.23 differ
diff --git a/runs/fashion_trainer_20230919_101736/events.out.tfevents.1695111456.msip-dell.ims.rwth-aachen.de.985899.21 b/runs/fashion_trainer_20230919_101736/events.out.tfevents.1695111456.msip-dell.ims.rwth-aachen.de.985899.21
new file mode 100644
index 0000000000000000000000000000000000000000..b31b7c82bd3b15b000d75713ad03fa244489568b
Binary files /dev/null and b/runs/fashion_trainer_20230919_101736/events.out.tfevents.1695111456.msip-dell.ims.rwth-aachen.de.985899.21 differ
diff --git a/runs/fashion_trainer_20230919_101949/Training vs. Validation Loss_Training/events.out.tfevents.1695111591.msip-dell.ims.rwth-aachen.de.985899.25 b/runs/fashion_trainer_20230919_101949/Training vs. Validation Loss_Training/events.out.tfevents.1695111591.msip-dell.ims.rwth-aachen.de.985899.25
new file mode 100644
index 0000000000000000000000000000000000000000..9e6c3111df4d63508045402b9914fc1d6218ef9a
Binary files /dev/null and b/runs/fashion_trainer_20230919_101949/Training vs. Validation Loss_Training/events.out.tfevents.1695111591.msip-dell.ims.rwth-aachen.de.985899.25 differ
diff --git a/runs/fashion_trainer_20230919_101949/Training vs. Validation Loss_Validation/events.out.tfevents.1695111591.msip-dell.ims.rwth-aachen.de.985899.26 b/runs/fashion_trainer_20230919_101949/Training vs. Validation Loss_Validation/events.out.tfevents.1695111591.msip-dell.ims.rwth-aachen.de.985899.26
new file mode 100644
index 0000000000000000000000000000000000000000..007abdb09b640fa4af7b162a04471ec6611565bd
Binary files /dev/null and b/runs/fashion_trainer_20230919_101949/Training vs. Validation Loss_Validation/events.out.tfevents.1695111591.msip-dell.ims.rwth-aachen.de.985899.26 differ
diff --git a/runs/fashion_trainer_20230919_101949/events.out.tfevents.1695111589.msip-dell.ims.rwth-aachen.de.985899.24 b/runs/fashion_trainer_20230919_101949/events.out.tfevents.1695111589.msip-dell.ims.rwth-aachen.de.985899.24
new file mode 100644
index 0000000000000000000000000000000000000000..5c635c15df482bd910bcfe465025506350d8b4b2
Binary files /dev/null and b/runs/fashion_trainer_20230919_101949/events.out.tfevents.1695111589.msip-dell.ims.rwth-aachen.de.985899.24 differ
diff --git a/runs/fashion_trainer_20230919_102201/Training vs. Validation Loss_Training/events.out.tfevents.1695111723.msip-dell.ims.rwth-aachen.de.985899.28 b/runs/fashion_trainer_20230919_102201/Training vs. Validation Loss_Training/events.out.tfevents.1695111723.msip-dell.ims.rwth-aachen.de.985899.28
new file mode 100644
index 0000000000000000000000000000000000000000..299e95f1e711be49ac5ba8841696ddfa414cb30a
Binary files /dev/null and b/runs/fashion_trainer_20230919_102201/Training vs. Validation Loss_Training/events.out.tfevents.1695111723.msip-dell.ims.rwth-aachen.de.985899.28 differ
diff --git a/runs/fashion_trainer_20230919_102201/Training vs. Validation Loss_Validation/events.out.tfevents.1695111723.msip-dell.ims.rwth-aachen.de.985899.29 b/runs/fashion_trainer_20230919_102201/Training vs. Validation Loss_Validation/events.out.tfevents.1695111723.msip-dell.ims.rwth-aachen.de.985899.29
new file mode 100644
index 0000000000000000000000000000000000000000..7a061d0bc850c07c7716eb3572347d49879aea6e
Binary files /dev/null and b/runs/fashion_trainer_20230919_102201/Training vs. Validation Loss_Validation/events.out.tfevents.1695111723.msip-dell.ims.rwth-aachen.de.985899.29 differ
diff --git a/runs/fashion_trainer_20230919_102201/events.out.tfevents.1695111721.msip-dell.ims.rwth-aachen.de.985899.27 b/runs/fashion_trainer_20230919_102201/events.out.tfevents.1695111721.msip-dell.ims.rwth-aachen.de.985899.27
new file mode 100644
index 0000000000000000000000000000000000000000..e5876d79e636b5127cc424ef15d11e51cee2e22a
Binary files /dev/null and b/runs/fashion_trainer_20230919_102201/events.out.tfevents.1695111721.msip-dell.ims.rwth-aachen.de.985899.27 differ
diff --git a/runs/fashion_trainer_20230919_103458/Training vs. Validation Loss_Training/events.out.tfevents.1695112501.msip-dell.ims.rwth-aachen.de.994545.1 b/runs/fashion_trainer_20230919_103458/Training vs. Validation Loss_Training/events.out.tfevents.1695112501.msip-dell.ims.rwth-aachen.de.994545.1
new file mode 100644
index 0000000000000000000000000000000000000000..8d09df81693312e4303ef67cc46fb5ab74bdf603
Binary files /dev/null and b/runs/fashion_trainer_20230919_103458/Training vs. Validation Loss_Training/events.out.tfevents.1695112501.msip-dell.ims.rwth-aachen.de.994545.1 differ
diff --git a/runs/fashion_trainer_20230919_103458/Training vs. Validation Loss_Validation/events.out.tfevents.1695112501.msip-dell.ims.rwth-aachen.de.994545.2 b/runs/fashion_trainer_20230919_103458/Training vs. Validation Loss_Validation/events.out.tfevents.1695112501.msip-dell.ims.rwth-aachen.de.994545.2
new file mode 100644
index 0000000000000000000000000000000000000000..e642f6f5659739712f4e126cf36f53772e608e92
Binary files /dev/null and b/runs/fashion_trainer_20230919_103458/Training vs. Validation Loss_Validation/events.out.tfevents.1695112501.msip-dell.ims.rwth-aachen.de.994545.2 differ
diff --git a/runs/fashion_trainer_20230919_103458/events.out.tfevents.1695112498.msip-dell.ims.rwth-aachen.de.994545.0 b/runs/fashion_trainer_20230919_103458/events.out.tfevents.1695112498.msip-dell.ims.rwth-aachen.de.994545.0
new file mode 100644
index 0000000000000000000000000000000000000000..c6931cebd81e758bbfb1e93c95ede495bd46cf74
Binary files /dev/null and b/runs/fashion_trainer_20230919_103458/events.out.tfevents.1695112498.msip-dell.ims.rwth-aachen.de.994545.0 differ
diff --git a/runs/fashion_trainer_20230919_103712/Training vs. Validation Loss_Training/events.out.tfevents.1695112635.msip-dell.ims.rwth-aachen.de.994545.4 b/runs/fashion_trainer_20230919_103712/Training vs. Validation Loss_Training/events.out.tfevents.1695112635.msip-dell.ims.rwth-aachen.de.994545.4
new file mode 100644
index 0000000000000000000000000000000000000000..26c04d0c5660c07dd64184a0c5efe07737bdb366
Binary files /dev/null and b/runs/fashion_trainer_20230919_103712/Training vs. Validation Loss_Training/events.out.tfevents.1695112635.msip-dell.ims.rwth-aachen.de.994545.4 differ
diff --git a/runs/fashion_trainer_20230919_103712/Training vs. Validation Loss_Validation/events.out.tfevents.1695112635.msip-dell.ims.rwth-aachen.de.994545.5 b/runs/fashion_trainer_20230919_103712/Training vs. Validation Loss_Validation/events.out.tfevents.1695112635.msip-dell.ims.rwth-aachen.de.994545.5
new file mode 100644
index 0000000000000000000000000000000000000000..1ba917e0d3446f6006d6eb2af856564067a2eff5
Binary files /dev/null and b/runs/fashion_trainer_20230919_103712/Training vs. Validation Loss_Validation/events.out.tfevents.1695112635.msip-dell.ims.rwth-aachen.de.994545.5 differ
diff --git a/runs/fashion_trainer_20230919_103712/events.out.tfevents.1695112632.msip-dell.ims.rwth-aachen.de.994545.3 b/runs/fashion_trainer_20230919_103712/events.out.tfevents.1695112632.msip-dell.ims.rwth-aachen.de.994545.3
new file mode 100644
index 0000000000000000000000000000000000000000..37d822f7753e777e754c6161512c16b50fd60d8e
Binary files /dev/null and b/runs/fashion_trainer_20230919_103712/events.out.tfevents.1695112632.msip-dell.ims.rwth-aachen.de.994545.3 differ
diff --git a/runs/fashion_trainer_20230919_103924/Training vs. Validation Loss_Training/events.out.tfevents.1695112766.msip-dell.ims.rwth-aachen.de.994545.7 b/runs/fashion_trainer_20230919_103924/Training vs. Validation Loss_Training/events.out.tfevents.1695112766.msip-dell.ims.rwth-aachen.de.994545.7
new file mode 100644
index 0000000000000000000000000000000000000000..8f24d3c90f15f5e2fcc876b3881ba989070c9120
Binary files /dev/null and b/runs/fashion_trainer_20230919_103924/Training vs. Validation Loss_Training/events.out.tfevents.1695112766.msip-dell.ims.rwth-aachen.de.994545.7 differ
diff --git a/runs/fashion_trainer_20230919_103924/Training vs. Validation Loss_Validation/events.out.tfevents.1695112766.msip-dell.ims.rwth-aachen.de.994545.8 b/runs/fashion_trainer_20230919_103924/Training vs. Validation Loss_Validation/events.out.tfevents.1695112766.msip-dell.ims.rwth-aachen.de.994545.8
new file mode 100644
index 0000000000000000000000000000000000000000..79e05564365122071f3b66924a301dbee4bd5b96
Binary files /dev/null and b/runs/fashion_trainer_20230919_103924/Training vs. Validation Loss_Validation/events.out.tfevents.1695112766.msip-dell.ims.rwth-aachen.de.994545.8 differ
diff --git a/runs/fashion_trainer_20230919_103924/events.out.tfevents.1695112764.msip-dell.ims.rwth-aachen.de.994545.6 b/runs/fashion_trainer_20230919_103924/events.out.tfevents.1695112764.msip-dell.ims.rwth-aachen.de.994545.6
new file mode 100644
index 0000000000000000000000000000000000000000..25ec5edf83e834fb021c4d586513069d100871ce
Binary files /dev/null and b/runs/fashion_trainer_20230919_103924/events.out.tfevents.1695112764.msip-dell.ims.rwth-aachen.de.994545.6 differ
diff --git a/runs/fashion_trainer_20230919_104137/Training vs. Validation Loss_Training/events.out.tfevents.1695112900.msip-dell.ims.rwth-aachen.de.994545.10 b/runs/fashion_trainer_20230919_104137/Training vs. Validation Loss_Training/events.out.tfevents.1695112900.msip-dell.ims.rwth-aachen.de.994545.10
new file mode 100644
index 0000000000000000000000000000000000000000..044fdb2b50568e241870b4a66ef901d999873666
Binary files /dev/null and b/runs/fashion_trainer_20230919_104137/Training vs. Validation Loss_Training/events.out.tfevents.1695112900.msip-dell.ims.rwth-aachen.de.994545.10 differ
diff --git a/runs/fashion_trainer_20230919_104137/Training vs. Validation Loss_Validation/events.out.tfevents.1695112900.msip-dell.ims.rwth-aachen.de.994545.11 b/runs/fashion_trainer_20230919_104137/Training vs. Validation Loss_Validation/events.out.tfevents.1695112900.msip-dell.ims.rwth-aachen.de.994545.11
new file mode 100644
index 0000000000000000000000000000000000000000..c7af1914dc7d18918185e186e8db8a167479c2ba
Binary files /dev/null and b/runs/fashion_trainer_20230919_104137/Training vs. Validation Loss_Validation/events.out.tfevents.1695112900.msip-dell.ims.rwth-aachen.de.994545.11 differ
diff --git a/runs/fashion_trainer_20230919_104137/events.out.tfevents.1695112897.msip-dell.ims.rwth-aachen.de.994545.9 b/runs/fashion_trainer_20230919_104137/events.out.tfevents.1695112897.msip-dell.ims.rwth-aachen.de.994545.9
new file mode 100644
index 0000000000000000000000000000000000000000..43e47942a9edb54b34583363bf79ff39975a92dc
Binary files /dev/null and b/runs/fashion_trainer_20230919_104137/events.out.tfevents.1695112897.msip-dell.ims.rwth-aachen.de.994545.9 differ
diff --git a/runs/fashion_trainer_20230919_104349/Training vs. Validation Loss_Training/events.out.tfevents.1695113031.msip-dell.ims.rwth-aachen.de.994545.13 b/runs/fashion_trainer_20230919_104349/Training vs. Validation Loss_Training/events.out.tfevents.1695113031.msip-dell.ims.rwth-aachen.de.994545.13
new file mode 100644
index 0000000000000000000000000000000000000000..f72f37a1a20e5d8abe4ce2da8ef10dfad4c277c5
Binary files /dev/null and b/runs/fashion_trainer_20230919_104349/Training vs. Validation Loss_Training/events.out.tfevents.1695113031.msip-dell.ims.rwth-aachen.de.994545.13 differ
diff --git a/runs/fashion_trainer_20230919_104349/Training vs. Validation Loss_Validation/events.out.tfevents.1695113031.msip-dell.ims.rwth-aachen.de.994545.14 b/runs/fashion_trainer_20230919_104349/Training vs. Validation Loss_Validation/events.out.tfevents.1695113031.msip-dell.ims.rwth-aachen.de.994545.14
new file mode 100644
index 0000000000000000000000000000000000000000..54f5719f04d66daff052d7458cbeff02524c19a4
Binary files /dev/null and b/runs/fashion_trainer_20230919_104349/Training vs. Validation Loss_Validation/events.out.tfevents.1695113031.msip-dell.ims.rwth-aachen.de.994545.14 differ
diff --git a/runs/fashion_trainer_20230919_104349/events.out.tfevents.1695113029.msip-dell.ims.rwth-aachen.de.994545.12 b/runs/fashion_trainer_20230919_104349/events.out.tfevents.1695113029.msip-dell.ims.rwth-aachen.de.994545.12
new file mode 100644
index 0000000000000000000000000000000000000000..3cfde554d7aab135a584689f3b407e4712a09139
Binary files /dev/null and b/runs/fashion_trainer_20230919_104349/events.out.tfevents.1695113029.msip-dell.ims.rwth-aachen.de.994545.12 differ
diff --git a/runs/fashion_trainer_20230919_104601/Training vs. Validation Loss_Training/events.out.tfevents.1695113163.msip-dell.ims.rwth-aachen.de.994545.16 b/runs/fashion_trainer_20230919_104601/Training vs. Validation Loss_Training/events.out.tfevents.1695113163.msip-dell.ims.rwth-aachen.de.994545.16
new file mode 100644
index 0000000000000000000000000000000000000000..5db4cbceeaab6257a3bc9a7e01afdf8cd58c19fe
Binary files /dev/null and b/runs/fashion_trainer_20230919_104601/Training vs. Validation Loss_Training/events.out.tfevents.1695113163.msip-dell.ims.rwth-aachen.de.994545.16 differ
diff --git a/runs/fashion_trainer_20230919_104601/Training vs. Validation Loss_Validation/events.out.tfevents.1695113163.msip-dell.ims.rwth-aachen.de.994545.17 b/runs/fashion_trainer_20230919_104601/Training vs. Validation Loss_Validation/events.out.tfevents.1695113163.msip-dell.ims.rwth-aachen.de.994545.17
new file mode 100644
index 0000000000000000000000000000000000000000..4de3fb51c2a9e517fccb1356d829cae7a6489e75
Binary files /dev/null and b/runs/fashion_trainer_20230919_104601/Training vs. Validation Loss_Validation/events.out.tfevents.1695113163.msip-dell.ims.rwth-aachen.de.994545.17 differ
diff --git a/runs/fashion_trainer_20230919_104601/events.out.tfevents.1695113161.msip-dell.ims.rwth-aachen.de.994545.15 b/runs/fashion_trainer_20230919_104601/events.out.tfevents.1695113161.msip-dell.ims.rwth-aachen.de.994545.15
new file mode 100644
index 0000000000000000000000000000000000000000..8480da22980890188763336a7dadf217a990dc2a
Binary files /dev/null and b/runs/fashion_trainer_20230919_104601/events.out.tfevents.1695113161.msip-dell.ims.rwth-aachen.de.994545.15 differ
diff --git a/runs/fashion_trainer_20230919_104817/Training vs. Validation Loss_Training/events.out.tfevents.1695113300.msip-dell.ims.rwth-aachen.de.994545.19 b/runs/fashion_trainer_20230919_104817/Training vs. Validation Loss_Training/events.out.tfevents.1695113300.msip-dell.ims.rwth-aachen.de.994545.19
new file mode 100644
index 0000000000000000000000000000000000000000..23c2fe48b8c4d5556207eac50173db0043158074
Binary files /dev/null and b/runs/fashion_trainer_20230919_104817/Training vs. Validation Loss_Training/events.out.tfevents.1695113300.msip-dell.ims.rwth-aachen.de.994545.19 differ
diff --git a/runs/fashion_trainer_20230919_104817/Training vs. Validation Loss_Validation/events.out.tfevents.1695113300.msip-dell.ims.rwth-aachen.de.994545.20 b/runs/fashion_trainer_20230919_104817/Training vs. Validation Loss_Validation/events.out.tfevents.1695113300.msip-dell.ims.rwth-aachen.de.994545.20
new file mode 100644
index 0000000000000000000000000000000000000000..0a614ea4f4b7d35684193237579d9a2955e6c4cc
Binary files /dev/null and b/runs/fashion_trainer_20230919_104817/Training vs. Validation Loss_Validation/events.out.tfevents.1695113300.msip-dell.ims.rwth-aachen.de.994545.20 differ
diff --git a/runs/fashion_trainer_20230919_104817/events.out.tfevents.1695113297.msip-dell.ims.rwth-aachen.de.994545.18 b/runs/fashion_trainer_20230919_104817/events.out.tfevents.1695113297.msip-dell.ims.rwth-aachen.de.994545.18
new file mode 100644
index 0000000000000000000000000000000000000000..0df2850ab1bf4c8422829b61623df388799f9332
Binary files /dev/null and b/runs/fashion_trainer_20230919_104817/events.out.tfevents.1695113297.msip-dell.ims.rwth-aachen.de.994545.18 differ
diff --git a/runs/fashion_trainer_20230919_105031/Training vs. Validation Loss_Training/events.out.tfevents.1695113434.msip-dell.ims.rwth-aachen.de.994545.22 b/runs/fashion_trainer_20230919_105031/Training vs. Validation Loss_Training/events.out.tfevents.1695113434.msip-dell.ims.rwth-aachen.de.994545.22
new file mode 100644
index 0000000000000000000000000000000000000000..39f1baee01f978770ece827f008c3d5073a0d242
Binary files /dev/null and b/runs/fashion_trainer_20230919_105031/Training vs. Validation Loss_Training/events.out.tfevents.1695113434.msip-dell.ims.rwth-aachen.de.994545.22 differ
diff --git a/runs/fashion_trainer_20230919_105031/Training vs. Validation Loss_Validation/events.out.tfevents.1695113434.msip-dell.ims.rwth-aachen.de.994545.23 b/runs/fashion_trainer_20230919_105031/Training vs. Validation Loss_Validation/events.out.tfevents.1695113434.msip-dell.ims.rwth-aachen.de.994545.23
new file mode 100644
index 0000000000000000000000000000000000000000..5e4d0624325ef61a06b0f9fade7c3998f6dacae4
Binary files /dev/null and b/runs/fashion_trainer_20230919_105031/Training vs. Validation Loss_Validation/events.out.tfevents.1695113434.msip-dell.ims.rwth-aachen.de.994545.23 differ
diff --git a/runs/fashion_trainer_20230919_105031/events.out.tfevents.1695113431.msip-dell.ims.rwth-aachen.de.994545.21 b/runs/fashion_trainer_20230919_105031/events.out.tfevents.1695113431.msip-dell.ims.rwth-aachen.de.994545.21
new file mode 100644
index 0000000000000000000000000000000000000000..d36c8bfb26a53a5e657cd29090311750a1701e92
Binary files /dev/null and b/runs/fashion_trainer_20230919_105031/events.out.tfevents.1695113431.msip-dell.ims.rwth-aachen.de.994545.21 differ
diff --git a/runs/fashion_trainer_20230919_105248/Training vs. Validation Loss_Training/events.out.tfevents.1695113570.msip-dell.ims.rwth-aachen.de.994545.25 b/runs/fashion_trainer_20230919_105248/Training vs. Validation Loss_Training/events.out.tfevents.1695113570.msip-dell.ims.rwth-aachen.de.994545.25
new file mode 100644
index 0000000000000000000000000000000000000000..461da74180daa243e0352f89e9891356f9cfabd9
Binary files /dev/null and b/runs/fashion_trainer_20230919_105248/Training vs. Validation Loss_Training/events.out.tfevents.1695113570.msip-dell.ims.rwth-aachen.de.994545.25 differ
diff --git a/runs/fashion_trainer_20230919_105248/Training vs. Validation Loss_Validation/events.out.tfevents.1695113570.msip-dell.ims.rwth-aachen.de.994545.26 b/runs/fashion_trainer_20230919_105248/Training vs. Validation Loss_Validation/events.out.tfevents.1695113570.msip-dell.ims.rwth-aachen.de.994545.26
new file mode 100644
index 0000000000000000000000000000000000000000..4eb92cdc2ae9d43ff264b58e2976b98b030679a2
Binary files /dev/null and b/runs/fashion_trainer_20230919_105248/Training vs. Validation Loss_Validation/events.out.tfevents.1695113570.msip-dell.ims.rwth-aachen.de.994545.26 differ
diff --git a/runs/fashion_trainer_20230919_105248/events.out.tfevents.1695113568.msip-dell.ims.rwth-aachen.de.994545.24 b/runs/fashion_trainer_20230919_105248/events.out.tfevents.1695113568.msip-dell.ims.rwth-aachen.de.994545.24
new file mode 100644
index 0000000000000000000000000000000000000000..2e29fddba84fdf7b9d2408d8728621ed8981c6c8
Binary files /dev/null and b/runs/fashion_trainer_20230919_105248/events.out.tfevents.1695113568.msip-dell.ims.rwth-aachen.de.994545.24 differ
diff --git a/runs/fashion_trainer_20230919_105500/Training vs. Validation Loss_Training/events.out.tfevents.1695113702.msip-dell.ims.rwth-aachen.de.994545.28 b/runs/fashion_trainer_20230919_105500/Training vs. Validation Loss_Training/events.out.tfevents.1695113702.msip-dell.ims.rwth-aachen.de.994545.28
new file mode 100644
index 0000000000000000000000000000000000000000..fbbebc864f36d820240713c051a09c41f2eb54fd
Binary files /dev/null and b/runs/fashion_trainer_20230919_105500/Training vs. Validation Loss_Training/events.out.tfevents.1695113702.msip-dell.ims.rwth-aachen.de.994545.28 differ
diff --git a/runs/fashion_trainer_20230919_105500/Training vs. Validation Loss_Validation/events.out.tfevents.1695113702.msip-dell.ims.rwth-aachen.de.994545.29 b/runs/fashion_trainer_20230919_105500/Training vs. Validation Loss_Validation/events.out.tfevents.1695113702.msip-dell.ims.rwth-aachen.de.994545.29
new file mode 100644
index 0000000000000000000000000000000000000000..54f17013947abac0051df967cb0c3f4ebefe50bf
Binary files /dev/null and b/runs/fashion_trainer_20230919_105500/Training vs. Validation Loss_Validation/events.out.tfevents.1695113702.msip-dell.ims.rwth-aachen.de.994545.29 differ
diff --git a/runs/fashion_trainer_20230919_105500/events.out.tfevents.1695113700.msip-dell.ims.rwth-aachen.de.994545.27 b/runs/fashion_trainer_20230919_105500/events.out.tfevents.1695113700.msip-dell.ims.rwth-aachen.de.994545.27
new file mode 100644
index 0000000000000000000000000000000000000000..3be7a024efe1afa4d800b54c2746cc9f340f202f
Binary files /dev/null and b/runs/fashion_trainer_20230919_105500/events.out.tfevents.1695113700.msip-dell.ims.rwth-aachen.de.994545.27 differ
diff --git a/runs/fashion_trainer_20230919_110551/Training vs. Validation Loss_Training/events.out.tfevents.1695114354.msip-dell.ims.rwth-aachen.de.1002330.1 b/runs/fashion_trainer_20230919_110551/Training vs. Validation Loss_Training/events.out.tfevents.1695114354.msip-dell.ims.rwth-aachen.de.1002330.1
new file mode 100644
index 0000000000000000000000000000000000000000..b42351765fe2c8872df748e557f015959a56fa17
Binary files /dev/null and b/runs/fashion_trainer_20230919_110551/Training vs. Validation Loss_Training/events.out.tfevents.1695114354.msip-dell.ims.rwth-aachen.de.1002330.1 differ
diff --git a/runs/fashion_trainer_20230919_110551/Training vs. Validation Loss_Validation/events.out.tfevents.1695114354.msip-dell.ims.rwth-aachen.de.1002330.2 b/runs/fashion_trainer_20230919_110551/Training vs. Validation Loss_Validation/events.out.tfevents.1695114354.msip-dell.ims.rwth-aachen.de.1002330.2
new file mode 100644
index 0000000000000000000000000000000000000000..03825a810e89eef14a42c79358b336082fa88565
Binary files /dev/null and b/runs/fashion_trainer_20230919_110551/Training vs. Validation Loss_Validation/events.out.tfevents.1695114354.msip-dell.ims.rwth-aachen.de.1002330.2 differ
diff --git a/runs/fashion_trainer_20230919_110551/events.out.tfevents.1695114351.msip-dell.ims.rwth-aachen.de.1002330.0 b/runs/fashion_trainer_20230919_110551/events.out.tfevents.1695114351.msip-dell.ims.rwth-aachen.de.1002330.0
new file mode 100644
index 0000000000000000000000000000000000000000..eb7c79343bdead131b7265bc72237d19ebe8c3c8
Binary files /dev/null and b/runs/fashion_trainer_20230919_110551/events.out.tfevents.1695114351.msip-dell.ims.rwth-aachen.de.1002330.0 differ
diff --git a/runs/fashion_trainer_20230919_110803/Training vs. Validation Loss_Training/events.out.tfevents.1695114485.msip-dell.ims.rwth-aachen.de.1002330.4 b/runs/fashion_trainer_20230919_110803/Training vs. Validation Loss_Training/events.out.tfevents.1695114485.msip-dell.ims.rwth-aachen.de.1002330.4
new file mode 100644
index 0000000000000000000000000000000000000000..9ceece7687aaad875f51eeb536f265e57df5e7ea
Binary files /dev/null and b/runs/fashion_trainer_20230919_110803/Training vs. Validation Loss_Training/events.out.tfevents.1695114485.msip-dell.ims.rwth-aachen.de.1002330.4 differ
diff --git a/runs/fashion_trainer_20230919_110803/Training vs. Validation Loss_Validation/events.out.tfevents.1695114485.msip-dell.ims.rwth-aachen.de.1002330.5 b/runs/fashion_trainer_20230919_110803/Training vs. Validation Loss_Validation/events.out.tfevents.1695114485.msip-dell.ims.rwth-aachen.de.1002330.5
new file mode 100644
index 0000000000000000000000000000000000000000..20564179bd0cc447e6d61d036bfa53b8fc0e49f1
Binary files /dev/null and b/runs/fashion_trainer_20230919_110803/Training vs. Validation Loss_Validation/events.out.tfevents.1695114485.msip-dell.ims.rwth-aachen.de.1002330.5 differ
diff --git a/runs/fashion_trainer_20230919_110803/events.out.tfevents.1695114483.msip-dell.ims.rwth-aachen.de.1002330.3 b/runs/fashion_trainer_20230919_110803/events.out.tfevents.1695114483.msip-dell.ims.rwth-aachen.de.1002330.3
new file mode 100644
index 0000000000000000000000000000000000000000..a385cd3160c5ef6780f9da2370fb59f1540c4b23
Binary files /dev/null and b/runs/fashion_trainer_20230919_110803/events.out.tfevents.1695114483.msip-dell.ims.rwth-aachen.de.1002330.3 differ
diff --git a/runs/fashion_trainer_20230919_111014/Training vs. Validation Loss_Training/events.out.tfevents.1695114617.msip-dell.ims.rwth-aachen.de.1002330.7 b/runs/fashion_trainer_20230919_111014/Training vs. Validation Loss_Training/events.out.tfevents.1695114617.msip-dell.ims.rwth-aachen.de.1002330.7
new file mode 100644
index 0000000000000000000000000000000000000000..103d98b4b01e3d73052adf1511338da1dede9714
Binary files /dev/null and b/runs/fashion_trainer_20230919_111014/Training vs. Validation Loss_Training/events.out.tfevents.1695114617.msip-dell.ims.rwth-aachen.de.1002330.7 differ
diff --git a/runs/fashion_trainer_20230919_111014/Training vs. Validation Loss_Validation/events.out.tfevents.1695114617.msip-dell.ims.rwth-aachen.de.1002330.8 b/runs/fashion_trainer_20230919_111014/Training vs. Validation Loss_Validation/events.out.tfevents.1695114617.msip-dell.ims.rwth-aachen.de.1002330.8
new file mode 100644
index 0000000000000000000000000000000000000000..69fa5ee7b14367a02c7ca053156f441817d215b1
Binary files /dev/null and b/runs/fashion_trainer_20230919_111014/Training vs. Validation Loss_Validation/events.out.tfevents.1695114617.msip-dell.ims.rwth-aachen.de.1002330.8 differ
diff --git a/runs/fashion_trainer_20230919_111014/events.out.tfevents.1695114614.msip-dell.ims.rwth-aachen.de.1002330.6 b/runs/fashion_trainer_20230919_111014/events.out.tfevents.1695114614.msip-dell.ims.rwth-aachen.de.1002330.6
new file mode 100644
index 0000000000000000000000000000000000000000..d6f2abfa3b2ea5622a0d1a8206bfc6e37ce98872
Binary files /dev/null and b/runs/fashion_trainer_20230919_111014/events.out.tfevents.1695114614.msip-dell.ims.rwth-aachen.de.1002330.6 differ
diff --git a/runs/fashion_trainer_20230919_111229/Training vs. Validation Loss_Training/events.out.tfevents.1695114751.msip-dell.ims.rwth-aachen.de.1002330.10 b/runs/fashion_trainer_20230919_111229/Training vs. Validation Loss_Training/events.out.tfevents.1695114751.msip-dell.ims.rwth-aachen.de.1002330.10
new file mode 100644
index 0000000000000000000000000000000000000000..4fa048ac34eceba71a277764537586b394682a73
Binary files /dev/null and b/runs/fashion_trainer_20230919_111229/Training vs. Validation Loss_Training/events.out.tfevents.1695114751.msip-dell.ims.rwth-aachen.de.1002330.10 differ
diff --git a/runs/fashion_trainer_20230919_111229/Training vs. Validation Loss_Validation/events.out.tfevents.1695114751.msip-dell.ims.rwth-aachen.de.1002330.11 b/runs/fashion_trainer_20230919_111229/Training vs. Validation Loss_Validation/events.out.tfevents.1695114751.msip-dell.ims.rwth-aachen.de.1002330.11
new file mode 100644
index 0000000000000000000000000000000000000000..7fbea5644a330641374a17d12a3655b0a6ab0790
Binary files /dev/null and b/runs/fashion_trainer_20230919_111229/Training vs. Validation Loss_Validation/events.out.tfevents.1695114751.msip-dell.ims.rwth-aachen.de.1002330.11 differ
diff --git a/runs/fashion_trainer_20230919_111229/events.out.tfevents.1695114749.msip-dell.ims.rwth-aachen.de.1002330.9 b/runs/fashion_trainer_20230919_111229/events.out.tfevents.1695114749.msip-dell.ims.rwth-aachen.de.1002330.9
new file mode 100644
index 0000000000000000000000000000000000000000..4f5c2a539b2d521f20d674b300cef1f139287833
Binary files /dev/null and b/runs/fashion_trainer_20230919_111229/events.out.tfevents.1695114749.msip-dell.ims.rwth-aachen.de.1002330.9 differ
diff --git a/runs/fashion_trainer_20230919_111440/Training vs. Validation Loss_Training/events.out.tfevents.1695114883.msip-dell.ims.rwth-aachen.de.1002330.13 b/runs/fashion_trainer_20230919_111440/Training vs. Validation Loss_Training/events.out.tfevents.1695114883.msip-dell.ims.rwth-aachen.de.1002330.13
new file mode 100644
index 0000000000000000000000000000000000000000..21bce6383fa25232c4b5f2ca9cce2eeddeebf567
Binary files /dev/null and b/runs/fashion_trainer_20230919_111440/Training vs. Validation Loss_Training/events.out.tfevents.1695114883.msip-dell.ims.rwth-aachen.de.1002330.13 differ
diff --git a/runs/fashion_trainer_20230919_111440/Training vs. Validation Loss_Validation/events.out.tfevents.1695114883.msip-dell.ims.rwth-aachen.de.1002330.14 b/runs/fashion_trainer_20230919_111440/Training vs. Validation Loss_Validation/events.out.tfevents.1695114883.msip-dell.ims.rwth-aachen.de.1002330.14
new file mode 100644
index 0000000000000000000000000000000000000000..7c58d86d1ffd31ff80c63c0008bd3bdc3e08e0e8
Binary files /dev/null and b/runs/fashion_trainer_20230919_111440/Training vs. Validation Loss_Validation/events.out.tfevents.1695114883.msip-dell.ims.rwth-aachen.de.1002330.14 differ
diff --git a/runs/fashion_trainer_20230919_111440/events.out.tfevents.1695114880.msip-dell.ims.rwth-aachen.de.1002330.12 b/runs/fashion_trainer_20230919_111440/events.out.tfevents.1695114880.msip-dell.ims.rwth-aachen.de.1002330.12
new file mode 100644
index 0000000000000000000000000000000000000000..8337fb3a8601c6c8596ebc47b0eb52726578f3a2
Binary files /dev/null and b/runs/fashion_trainer_20230919_111440/events.out.tfevents.1695114880.msip-dell.ims.rwth-aachen.de.1002330.12 differ
diff --git a/runs/fashion_trainer_20230919_111653/Training vs. Validation Loss_Training/events.out.tfevents.1695115016.msip-dell.ims.rwth-aachen.de.1002330.16 b/runs/fashion_trainer_20230919_111653/Training vs. Validation Loss_Training/events.out.tfevents.1695115016.msip-dell.ims.rwth-aachen.de.1002330.16
new file mode 100644
index 0000000000000000000000000000000000000000..1a351866d68beb40394f792ae5bbc93e43d8b4f6
Binary files /dev/null and b/runs/fashion_trainer_20230919_111653/Training vs. Validation Loss_Training/events.out.tfevents.1695115016.msip-dell.ims.rwth-aachen.de.1002330.16 differ
diff --git a/runs/fashion_trainer_20230919_111653/Training vs. Validation Loss_Validation/events.out.tfevents.1695115016.msip-dell.ims.rwth-aachen.de.1002330.17 b/runs/fashion_trainer_20230919_111653/Training vs. Validation Loss_Validation/events.out.tfevents.1695115016.msip-dell.ims.rwth-aachen.de.1002330.17
new file mode 100644
index 0000000000000000000000000000000000000000..e3cac2fc979d9f8c8e9b4d59f9d4082654bc64c7
Binary files /dev/null and b/runs/fashion_trainer_20230919_111653/Training vs. Validation Loss_Validation/events.out.tfevents.1695115016.msip-dell.ims.rwth-aachen.de.1002330.17 differ
diff --git a/runs/fashion_trainer_20230919_111653/events.out.tfevents.1695115013.msip-dell.ims.rwth-aachen.de.1002330.15 b/runs/fashion_trainer_20230919_111653/events.out.tfevents.1695115013.msip-dell.ims.rwth-aachen.de.1002330.15
new file mode 100644
index 0000000000000000000000000000000000000000..6faa31a078e736e3c50d3692f7a2e57cccc6da37
Binary files /dev/null and b/runs/fashion_trainer_20230919_111653/events.out.tfevents.1695115013.msip-dell.ims.rwth-aachen.de.1002330.15 differ
diff --git a/runs/fashion_trainer_20230919_112538/Training vs. Validation Loss_Training/events.out.tfevents.1695115541.msip-dell.ims.rwth-aachen.de.1010247.1 b/runs/fashion_trainer_20230919_112538/Training vs. Validation Loss_Training/events.out.tfevents.1695115541.msip-dell.ims.rwth-aachen.de.1010247.1
new file mode 100644
index 0000000000000000000000000000000000000000..dbfd4f94eca816d7dc5921499eeeeaa9b8e96b48
Binary files /dev/null and b/runs/fashion_trainer_20230919_112538/Training vs. Validation Loss_Training/events.out.tfevents.1695115541.msip-dell.ims.rwth-aachen.de.1010247.1 differ
diff --git a/runs/fashion_trainer_20230919_112538/Training vs. Validation Loss_Validation/events.out.tfevents.1695115541.msip-dell.ims.rwth-aachen.de.1010247.2 b/runs/fashion_trainer_20230919_112538/Training vs. Validation Loss_Validation/events.out.tfevents.1695115541.msip-dell.ims.rwth-aachen.de.1010247.2
new file mode 100644
index 0000000000000000000000000000000000000000..2e914d67bf1250e6e4a78bfe29f28ebfbbbeada0
Binary files /dev/null and b/runs/fashion_trainer_20230919_112538/Training vs. Validation Loss_Validation/events.out.tfevents.1695115541.msip-dell.ims.rwth-aachen.de.1010247.2 differ
diff --git a/runs/fashion_trainer_20230919_112538/events.out.tfevents.1695115538.msip-dell.ims.rwth-aachen.de.1010247.0 b/runs/fashion_trainer_20230919_112538/events.out.tfevents.1695115538.msip-dell.ims.rwth-aachen.de.1010247.0
new file mode 100644
index 0000000000000000000000000000000000000000..b4ed9005c4503057124169c2741cd8a8be8f5c5c
Binary files /dev/null and b/runs/fashion_trainer_20230919_112538/events.out.tfevents.1695115538.msip-dell.ims.rwth-aachen.de.1010247.0 differ
diff --git a/runs/fashion_trainer_20230919_112758/Training vs. Validation Loss_Training/events.out.tfevents.1695115681.msip-dell.ims.rwth-aachen.de.1010247.4 b/runs/fashion_trainer_20230919_112758/Training vs. Validation Loss_Training/events.out.tfevents.1695115681.msip-dell.ims.rwth-aachen.de.1010247.4
new file mode 100644
index 0000000000000000000000000000000000000000..a5b34ccf87c7672599b68fc56f76dacb26aa1b58
Binary files /dev/null and b/runs/fashion_trainer_20230919_112758/Training vs. Validation Loss_Training/events.out.tfevents.1695115681.msip-dell.ims.rwth-aachen.de.1010247.4 differ
diff --git a/runs/fashion_trainer_20230919_112758/Training vs. Validation Loss_Validation/events.out.tfevents.1695115681.msip-dell.ims.rwth-aachen.de.1010247.5 b/runs/fashion_trainer_20230919_112758/Training vs. Validation Loss_Validation/events.out.tfevents.1695115681.msip-dell.ims.rwth-aachen.de.1010247.5
new file mode 100644
index 0000000000000000000000000000000000000000..0724e32aa7a42829e56b849475b6fbcce2fb5f1c
Binary files /dev/null and b/runs/fashion_trainer_20230919_112758/Training vs. Validation Loss_Validation/events.out.tfevents.1695115681.msip-dell.ims.rwth-aachen.de.1010247.5 differ
diff --git a/runs/fashion_trainer_20230919_112758/events.out.tfevents.1695115678.msip-dell.ims.rwth-aachen.de.1010247.3 b/runs/fashion_trainer_20230919_112758/events.out.tfevents.1695115678.msip-dell.ims.rwth-aachen.de.1010247.3
new file mode 100644
index 0000000000000000000000000000000000000000..d5f60a1118c4ad3b4aab6216aac5ed9abc70b8ba
Binary files /dev/null and b/runs/fashion_trainer_20230919_112758/events.out.tfevents.1695115678.msip-dell.ims.rwth-aachen.de.1010247.3 differ
diff --git a/runs/fashion_trainer_20230919_113010/Training vs. Validation Loss_Training/events.out.tfevents.1695115813.msip-dell.ims.rwth-aachen.de.1010247.7 b/runs/fashion_trainer_20230919_113010/Training vs. Validation Loss_Training/events.out.tfevents.1695115813.msip-dell.ims.rwth-aachen.de.1010247.7
new file mode 100644
index 0000000000000000000000000000000000000000..ee0e98bf3c326622da2d62be4d3873982c833d71
Binary files /dev/null and b/runs/fashion_trainer_20230919_113010/Training vs. Validation Loss_Training/events.out.tfevents.1695115813.msip-dell.ims.rwth-aachen.de.1010247.7 differ
diff --git a/runs/fashion_trainer_20230919_113010/Training vs. Validation Loss_Validation/events.out.tfevents.1695115813.msip-dell.ims.rwth-aachen.de.1010247.8 b/runs/fashion_trainer_20230919_113010/Training vs. Validation Loss_Validation/events.out.tfevents.1695115813.msip-dell.ims.rwth-aachen.de.1010247.8
new file mode 100644
index 0000000000000000000000000000000000000000..9416e700b91b9bca6dda824b6a3f61ed24aa505a
Binary files /dev/null and b/runs/fashion_trainer_20230919_113010/Training vs. Validation Loss_Validation/events.out.tfevents.1695115813.msip-dell.ims.rwth-aachen.de.1010247.8 differ
diff --git a/runs/fashion_trainer_20230919_113010/events.out.tfevents.1695115810.msip-dell.ims.rwth-aachen.de.1010247.6 b/runs/fashion_trainer_20230919_113010/events.out.tfevents.1695115810.msip-dell.ims.rwth-aachen.de.1010247.6
new file mode 100644
index 0000000000000000000000000000000000000000..6ae56d747e296487560b6bcb955c8ac76b7f4fcf
Binary files /dev/null and b/runs/fashion_trainer_20230919_113010/events.out.tfevents.1695115810.msip-dell.ims.rwth-aachen.de.1010247.6 differ
diff --git a/runs/fashion_trainer_20230919_113228/Training vs. Validation Loss_Training/events.out.tfevents.1695115951.msip-dell.ims.rwth-aachen.de.1010247.10 b/runs/fashion_trainer_20230919_113228/Training vs. Validation Loss_Training/events.out.tfevents.1695115951.msip-dell.ims.rwth-aachen.de.1010247.10
new file mode 100644
index 0000000000000000000000000000000000000000..5661720bcbd20cd6f27dd0675f14eaba27996a25
Binary files /dev/null and b/runs/fashion_trainer_20230919_113228/Training vs. Validation Loss_Training/events.out.tfevents.1695115951.msip-dell.ims.rwth-aachen.de.1010247.10 differ
diff --git a/runs/fashion_trainer_20230919_113228/Training vs. Validation Loss_Validation/events.out.tfevents.1695115951.msip-dell.ims.rwth-aachen.de.1010247.11 b/runs/fashion_trainer_20230919_113228/Training vs. Validation Loss_Validation/events.out.tfevents.1695115951.msip-dell.ims.rwth-aachen.de.1010247.11
new file mode 100644
index 0000000000000000000000000000000000000000..4c25a106f59874d248a4ad00cd13efdb9fa2f74b
Binary files /dev/null and b/runs/fashion_trainer_20230919_113228/Training vs. Validation Loss_Validation/events.out.tfevents.1695115951.msip-dell.ims.rwth-aachen.de.1010247.11 differ
diff --git a/runs/fashion_trainer_20230919_113228/events.out.tfevents.1695115948.msip-dell.ims.rwth-aachen.de.1010247.9 b/runs/fashion_trainer_20230919_113228/events.out.tfevents.1695115948.msip-dell.ims.rwth-aachen.de.1010247.9
new file mode 100644
index 0000000000000000000000000000000000000000..22f6779e364f36b94ee73c72bcf8e5dda9f89332
Binary files /dev/null and b/runs/fashion_trainer_20230919_113228/events.out.tfevents.1695115948.msip-dell.ims.rwth-aachen.de.1010247.9 differ
diff --git a/runs/fashion_trainer_20230919_113440/Training vs. Validation Loss_Training/events.out.tfevents.1695116083.msip-dell.ims.rwth-aachen.de.1010247.13 b/runs/fashion_trainer_20230919_113440/Training vs. Validation Loss_Training/events.out.tfevents.1695116083.msip-dell.ims.rwth-aachen.de.1010247.13
new file mode 100644
index 0000000000000000000000000000000000000000..6253054fc893340ba1dc453f102f6428475fc058
Binary files /dev/null and b/runs/fashion_trainer_20230919_113440/Training vs. Validation Loss_Training/events.out.tfevents.1695116083.msip-dell.ims.rwth-aachen.de.1010247.13 differ
diff --git a/runs/fashion_trainer_20230919_113440/Training vs. Validation Loss_Validation/events.out.tfevents.1695116083.msip-dell.ims.rwth-aachen.de.1010247.14 b/runs/fashion_trainer_20230919_113440/Training vs. Validation Loss_Validation/events.out.tfevents.1695116083.msip-dell.ims.rwth-aachen.de.1010247.14
new file mode 100644
index 0000000000000000000000000000000000000000..3af82a0a3749951be729beced70f06ec688a7345
Binary files /dev/null and b/runs/fashion_trainer_20230919_113440/Training vs. Validation Loss_Validation/events.out.tfevents.1695116083.msip-dell.ims.rwth-aachen.de.1010247.14 differ
diff --git a/runs/fashion_trainer_20230919_113440/events.out.tfevents.1695116080.msip-dell.ims.rwth-aachen.de.1010247.12 b/runs/fashion_trainer_20230919_113440/events.out.tfevents.1695116080.msip-dell.ims.rwth-aachen.de.1010247.12
new file mode 100644
index 0000000000000000000000000000000000000000..923c55c373c9e0b6c587305f797c06de30e493e2
Binary files /dev/null and b/runs/fashion_trainer_20230919_113440/events.out.tfevents.1695116080.msip-dell.ims.rwth-aachen.de.1010247.12 differ
diff --git a/runs/fashion_trainer_20230919_113700/Training vs. Validation Loss_Training/events.out.tfevents.1695116223.msip-dell.ims.rwth-aachen.de.1010247.16 b/runs/fashion_trainer_20230919_113700/Training vs. Validation Loss_Training/events.out.tfevents.1695116223.msip-dell.ims.rwth-aachen.de.1010247.16
new file mode 100644
index 0000000000000000000000000000000000000000..fbe28eefe578272f007634934666007f1f830ed9
Binary files /dev/null and b/runs/fashion_trainer_20230919_113700/Training vs. Validation Loss_Training/events.out.tfevents.1695116223.msip-dell.ims.rwth-aachen.de.1010247.16 differ
diff --git a/runs/fashion_trainer_20230919_113700/Training vs. Validation Loss_Validation/events.out.tfevents.1695116223.msip-dell.ims.rwth-aachen.de.1010247.17 b/runs/fashion_trainer_20230919_113700/Training vs. Validation Loss_Validation/events.out.tfevents.1695116223.msip-dell.ims.rwth-aachen.de.1010247.17
new file mode 100644
index 0000000000000000000000000000000000000000..0ed65516615ad9d3cd2410ab1c52033649af74f2
Binary files /dev/null and b/runs/fashion_trainer_20230919_113700/Training vs. Validation Loss_Validation/events.out.tfevents.1695116223.msip-dell.ims.rwth-aachen.de.1010247.17 differ
diff --git a/runs/fashion_trainer_20230919_113700/events.out.tfevents.1695116220.msip-dell.ims.rwth-aachen.de.1010247.15 b/runs/fashion_trainer_20230919_113700/events.out.tfevents.1695116220.msip-dell.ims.rwth-aachen.de.1010247.15
new file mode 100644
index 0000000000000000000000000000000000000000..2c9b12e19c9f69201bd5a5434f8ce0041856f7bb
Binary files /dev/null and b/runs/fashion_trainer_20230919_113700/events.out.tfevents.1695116220.msip-dell.ims.rwth-aachen.de.1010247.15 differ
diff --git a/runs/fashion_trainer_20230919_113910/Training vs. Validation Loss_Training/events.out.tfevents.1695116353.msip-dell.ims.rwth-aachen.de.1010247.19 b/runs/fashion_trainer_20230919_113910/Training vs. Validation Loss_Training/events.out.tfevents.1695116353.msip-dell.ims.rwth-aachen.de.1010247.19
new file mode 100644
index 0000000000000000000000000000000000000000..e7c8234021d176e160529b37061f6a05d2485eae
Binary files /dev/null and b/runs/fashion_trainer_20230919_113910/Training vs. Validation Loss_Training/events.out.tfevents.1695116353.msip-dell.ims.rwth-aachen.de.1010247.19 differ
diff --git a/runs/fashion_trainer_20230919_113910/Training vs. Validation Loss_Validation/events.out.tfevents.1695116353.msip-dell.ims.rwth-aachen.de.1010247.20 b/runs/fashion_trainer_20230919_113910/Training vs. Validation Loss_Validation/events.out.tfevents.1695116353.msip-dell.ims.rwth-aachen.de.1010247.20
new file mode 100644
index 0000000000000000000000000000000000000000..b153c58d673a1cf9bf1ce8c2ed7e792e266f64af
Binary files /dev/null and b/runs/fashion_trainer_20230919_113910/Training vs. Validation Loss_Validation/events.out.tfevents.1695116353.msip-dell.ims.rwth-aachen.de.1010247.20 differ
diff --git a/runs/fashion_trainer_20230919_113910/events.out.tfevents.1695116350.msip-dell.ims.rwth-aachen.de.1010247.18 b/runs/fashion_trainer_20230919_113910/events.out.tfevents.1695116350.msip-dell.ims.rwth-aachen.de.1010247.18
new file mode 100644
index 0000000000000000000000000000000000000000..467d754815b2125010afbfe3481822ea0afe86ae
Binary files /dev/null and b/runs/fashion_trainer_20230919_113910/events.out.tfevents.1695116350.msip-dell.ims.rwth-aachen.de.1010247.18 differ
diff --git a/runs/fashion_trainer_20230919_114130/Training vs. Validation Loss_Training/events.out.tfevents.1695116492.msip-dell.ims.rwth-aachen.de.1010247.22 b/runs/fashion_trainer_20230919_114130/Training vs. Validation Loss_Training/events.out.tfevents.1695116492.msip-dell.ims.rwth-aachen.de.1010247.22
new file mode 100644
index 0000000000000000000000000000000000000000..8f203dc3440aab895561ebff81df3eaa608515b0
Binary files /dev/null and b/runs/fashion_trainer_20230919_114130/Training vs. Validation Loss_Training/events.out.tfevents.1695116492.msip-dell.ims.rwth-aachen.de.1010247.22 differ
diff --git a/runs/fashion_trainer_20230919_114130/Training vs. Validation Loss_Validation/events.out.tfevents.1695116492.msip-dell.ims.rwth-aachen.de.1010247.23 b/runs/fashion_trainer_20230919_114130/Training vs. Validation Loss_Validation/events.out.tfevents.1695116492.msip-dell.ims.rwth-aachen.de.1010247.23
new file mode 100644
index 0000000000000000000000000000000000000000..42c1e92739bc8b02b28e52363a22eb7a5cefa617
Binary files /dev/null and b/runs/fashion_trainer_20230919_114130/Training vs. Validation Loss_Validation/events.out.tfevents.1695116492.msip-dell.ims.rwth-aachen.de.1010247.23 differ
diff --git a/runs/fashion_trainer_20230919_114130/events.out.tfevents.1695116490.msip-dell.ims.rwth-aachen.de.1010247.21 b/runs/fashion_trainer_20230919_114130/events.out.tfevents.1695116490.msip-dell.ims.rwth-aachen.de.1010247.21
new file mode 100644
index 0000000000000000000000000000000000000000..d8897dbfa3c1afc78dfd49144db765c2dd489b78
Binary files /dev/null and b/runs/fashion_trainer_20230919_114130/events.out.tfevents.1695116490.msip-dell.ims.rwth-aachen.de.1010247.21 differ
diff --git a/runs/fashion_trainer_20230919_114341/Training vs. Validation Loss_Training/events.out.tfevents.1695116624.msip-dell.ims.rwth-aachen.de.1010247.25 b/runs/fashion_trainer_20230919_114341/Training vs. Validation Loss_Training/events.out.tfevents.1695116624.msip-dell.ims.rwth-aachen.de.1010247.25
new file mode 100644
index 0000000000000000000000000000000000000000..511860542c633b9eca12272da36ed3c2497a16f8
Binary files /dev/null and b/runs/fashion_trainer_20230919_114341/Training vs. Validation Loss_Training/events.out.tfevents.1695116624.msip-dell.ims.rwth-aachen.de.1010247.25 differ
diff --git a/runs/fashion_trainer_20230919_114341/Training vs. Validation Loss_Validation/events.out.tfevents.1695116624.msip-dell.ims.rwth-aachen.de.1010247.26 b/runs/fashion_trainer_20230919_114341/Training vs. Validation Loss_Validation/events.out.tfevents.1695116624.msip-dell.ims.rwth-aachen.de.1010247.26
new file mode 100644
index 0000000000000000000000000000000000000000..5a469faad98ddec5ebf70f36967992003980c5f3
Binary files /dev/null and b/runs/fashion_trainer_20230919_114341/Training vs. Validation Loss_Validation/events.out.tfevents.1695116624.msip-dell.ims.rwth-aachen.de.1010247.26 differ
diff --git a/runs/fashion_trainer_20230919_114341/events.out.tfevents.1695116621.msip-dell.ims.rwth-aachen.de.1010247.24 b/runs/fashion_trainer_20230919_114341/events.out.tfevents.1695116621.msip-dell.ims.rwth-aachen.de.1010247.24
new file mode 100644
index 0000000000000000000000000000000000000000..71482b10eb7ea9e6a96a1cd061ac3251cd41e03b
Binary files /dev/null and b/runs/fashion_trainer_20230919_114341/events.out.tfevents.1695116621.msip-dell.ims.rwth-aachen.de.1010247.24 differ
diff --git a/runs/fashion_trainer_20230919_114556/Training vs. Validation Loss_Training/events.out.tfevents.1695116758.msip-dell.ims.rwth-aachen.de.1010247.28 b/runs/fashion_trainer_20230919_114556/Training vs. Validation Loss_Training/events.out.tfevents.1695116758.msip-dell.ims.rwth-aachen.de.1010247.28
new file mode 100644
index 0000000000000000000000000000000000000000..ec2fb571c511629eb21b463ec793688960f1396f
Binary files /dev/null and b/runs/fashion_trainer_20230919_114556/Training vs. Validation Loss_Training/events.out.tfevents.1695116758.msip-dell.ims.rwth-aachen.de.1010247.28 differ
diff --git a/runs/fashion_trainer_20230919_114556/Training vs. Validation Loss_Validation/events.out.tfevents.1695116758.msip-dell.ims.rwth-aachen.de.1010247.29 b/runs/fashion_trainer_20230919_114556/Training vs. Validation Loss_Validation/events.out.tfevents.1695116758.msip-dell.ims.rwth-aachen.de.1010247.29
new file mode 100644
index 0000000000000000000000000000000000000000..10d66a53aa549d9cb6050f398ff8e36162239131
Binary files /dev/null and b/runs/fashion_trainer_20230919_114556/Training vs. Validation Loss_Validation/events.out.tfevents.1695116758.msip-dell.ims.rwth-aachen.de.1010247.29 differ
diff --git a/runs/fashion_trainer_20230919_114556/events.out.tfevents.1695116756.msip-dell.ims.rwth-aachen.de.1010247.27 b/runs/fashion_trainer_20230919_114556/events.out.tfevents.1695116756.msip-dell.ims.rwth-aachen.de.1010247.27
new file mode 100644
index 0000000000000000000000000000000000000000..8a3a10f9bae93cdc15f51192ea47f1958970e7c2
Binary files /dev/null and b/runs/fashion_trainer_20230919_114556/events.out.tfevents.1695116756.msip-dell.ims.rwth-aachen.de.1010247.27 differ
diff --git a/runs/fashion_trainer_20230919_115213/Training vs. Validation Loss_Training/events.out.tfevents.1695117136.msip-dell.ims.rwth-aachen.de.1017771.1 b/runs/fashion_trainer_20230919_115213/Training vs. Validation Loss_Training/events.out.tfevents.1695117136.msip-dell.ims.rwth-aachen.de.1017771.1
new file mode 100644
index 0000000000000000000000000000000000000000..8b3ec84a76b08e79270216d26ba0a43cd0642549
Binary files /dev/null and b/runs/fashion_trainer_20230919_115213/Training vs. Validation Loss_Training/events.out.tfevents.1695117136.msip-dell.ims.rwth-aachen.de.1017771.1 differ
diff --git a/runs/fashion_trainer_20230919_115213/Training vs. Validation Loss_Validation/events.out.tfevents.1695117136.msip-dell.ims.rwth-aachen.de.1017771.2 b/runs/fashion_trainer_20230919_115213/Training vs. Validation Loss_Validation/events.out.tfevents.1695117136.msip-dell.ims.rwth-aachen.de.1017771.2
new file mode 100644
index 0000000000000000000000000000000000000000..c24d56e55074f2366898bccbcb9274c6f0806935
Binary files /dev/null and b/runs/fashion_trainer_20230919_115213/Training vs. Validation Loss_Validation/events.out.tfevents.1695117136.msip-dell.ims.rwth-aachen.de.1017771.2 differ
diff --git a/runs/fashion_trainer_20230919_115213/events.out.tfevents.1695117133.msip-dell.ims.rwth-aachen.de.1017771.0 b/runs/fashion_trainer_20230919_115213/events.out.tfevents.1695117133.msip-dell.ims.rwth-aachen.de.1017771.0
new file mode 100644
index 0000000000000000000000000000000000000000..ba8c1ad2bc258ffae42efccebcbc7a78bfc07854
Binary files /dev/null and b/runs/fashion_trainer_20230919_115213/events.out.tfevents.1695117133.msip-dell.ims.rwth-aachen.de.1017771.0 differ
diff --git a/runs/fashion_trainer_20230919_115436/Training vs. Validation Loss_Training/events.out.tfevents.1695117279.msip-dell.ims.rwth-aachen.de.1017771.4 b/runs/fashion_trainer_20230919_115436/Training vs. Validation Loss_Training/events.out.tfevents.1695117279.msip-dell.ims.rwth-aachen.de.1017771.4
new file mode 100644
index 0000000000000000000000000000000000000000..9109954d4f31fe89fccf264f3987901fbea606c8
Binary files /dev/null and b/runs/fashion_trainer_20230919_115436/Training vs. Validation Loss_Training/events.out.tfevents.1695117279.msip-dell.ims.rwth-aachen.de.1017771.4 differ
diff --git a/runs/fashion_trainer_20230919_115436/Training vs. Validation Loss_Validation/events.out.tfevents.1695117279.msip-dell.ims.rwth-aachen.de.1017771.5 b/runs/fashion_trainer_20230919_115436/Training vs. Validation Loss_Validation/events.out.tfevents.1695117279.msip-dell.ims.rwth-aachen.de.1017771.5
new file mode 100644
index 0000000000000000000000000000000000000000..9e54605cbd6a2e130b398db6de1dca517bc5a483
Binary files /dev/null and b/runs/fashion_trainer_20230919_115436/Training vs. Validation Loss_Validation/events.out.tfevents.1695117279.msip-dell.ims.rwth-aachen.de.1017771.5 differ
diff --git a/runs/fashion_trainer_20230919_115436/events.out.tfevents.1695117276.msip-dell.ims.rwth-aachen.de.1017771.3 b/runs/fashion_trainer_20230919_115436/events.out.tfevents.1695117276.msip-dell.ims.rwth-aachen.de.1017771.3
new file mode 100644
index 0000000000000000000000000000000000000000..e498555625adef2a069f6b031a273f2fea59202c
Binary files /dev/null and b/runs/fashion_trainer_20230919_115436/events.out.tfevents.1695117276.msip-dell.ims.rwth-aachen.de.1017771.3 differ
diff --git a/runs/fashion_trainer_20230919_115644/Training vs. Validation Loss_Training/events.out.tfevents.1695117407.msip-dell.ims.rwth-aachen.de.1017771.7 b/runs/fashion_trainer_20230919_115644/Training vs. Validation Loss_Training/events.out.tfevents.1695117407.msip-dell.ims.rwth-aachen.de.1017771.7
new file mode 100644
index 0000000000000000000000000000000000000000..ef024af24e29021c5fcad223e2113a0d552f7ba5
Binary files /dev/null and b/runs/fashion_trainer_20230919_115644/Training vs. Validation Loss_Training/events.out.tfevents.1695117407.msip-dell.ims.rwth-aachen.de.1017771.7 differ
diff --git a/runs/fashion_trainer_20230919_115644/Training vs. Validation Loss_Validation/events.out.tfevents.1695117407.msip-dell.ims.rwth-aachen.de.1017771.8 b/runs/fashion_trainer_20230919_115644/Training vs. Validation Loss_Validation/events.out.tfevents.1695117407.msip-dell.ims.rwth-aachen.de.1017771.8
new file mode 100644
index 0000000000000000000000000000000000000000..ec33bd7109b93db2a7738bd4a04f1f451b0c6f6d
Binary files /dev/null and b/runs/fashion_trainer_20230919_115644/Training vs. Validation Loss_Validation/events.out.tfevents.1695117407.msip-dell.ims.rwth-aachen.de.1017771.8 differ
diff --git a/runs/fashion_trainer_20230919_115644/events.out.tfevents.1695117404.msip-dell.ims.rwth-aachen.de.1017771.6 b/runs/fashion_trainer_20230919_115644/events.out.tfevents.1695117404.msip-dell.ims.rwth-aachen.de.1017771.6
new file mode 100644
index 0000000000000000000000000000000000000000..04ce01b44c43028c9d71136b0adbbe4b05cb41a1
Binary files /dev/null and b/runs/fashion_trainer_20230919_115644/events.out.tfevents.1695117404.msip-dell.ims.rwth-aachen.de.1017771.6 differ
diff --git a/runs/fashion_trainer_20230919_115851/Training vs. Validation Loss_Training/events.out.tfevents.1695117534.msip-dell.ims.rwth-aachen.de.1017771.10 b/runs/fashion_trainer_20230919_115851/Training vs. Validation Loss_Training/events.out.tfevents.1695117534.msip-dell.ims.rwth-aachen.de.1017771.10
new file mode 100644
index 0000000000000000000000000000000000000000..f878db3d27c882ae901a0d8900acbd8ee50c5b4d
Binary files /dev/null and b/runs/fashion_trainer_20230919_115851/Training vs. Validation Loss_Training/events.out.tfevents.1695117534.msip-dell.ims.rwth-aachen.de.1017771.10 differ
diff --git a/runs/fashion_trainer_20230919_115851/Training vs. Validation Loss_Validation/events.out.tfevents.1695117534.msip-dell.ims.rwth-aachen.de.1017771.11 b/runs/fashion_trainer_20230919_115851/Training vs. Validation Loss_Validation/events.out.tfevents.1695117534.msip-dell.ims.rwth-aachen.de.1017771.11
new file mode 100644
index 0000000000000000000000000000000000000000..0039e41bbf519ea792aacc9450dbb332ef3928a8
Binary files /dev/null and b/runs/fashion_trainer_20230919_115851/Training vs. Validation Loss_Validation/events.out.tfevents.1695117534.msip-dell.ims.rwth-aachen.de.1017771.11 differ
diff --git a/runs/fashion_trainer_20230919_115851/events.out.tfevents.1695117531.msip-dell.ims.rwth-aachen.de.1017771.9 b/runs/fashion_trainer_20230919_115851/events.out.tfevents.1695117531.msip-dell.ims.rwth-aachen.de.1017771.9
new file mode 100644
index 0000000000000000000000000000000000000000..dc2a91c2272007e59ec9f8b0e5d9ea77b58d2200
Binary files /dev/null and b/runs/fashion_trainer_20230919_115851/events.out.tfevents.1695117531.msip-dell.ims.rwth-aachen.de.1017771.9 differ
diff --git a/runs/fashion_trainer_20230919_120109/Training vs. Validation Loss_Training/events.out.tfevents.1695117672.msip-dell.ims.rwth-aachen.de.1017771.13 b/runs/fashion_trainer_20230919_120109/Training vs. Validation Loss_Training/events.out.tfevents.1695117672.msip-dell.ims.rwth-aachen.de.1017771.13
new file mode 100644
index 0000000000000000000000000000000000000000..8f1f4a99528f2b648f13964bfcc8e006a15aebc1
Binary files /dev/null and b/runs/fashion_trainer_20230919_120109/Training vs. Validation Loss_Training/events.out.tfevents.1695117672.msip-dell.ims.rwth-aachen.de.1017771.13 differ
diff --git a/runs/fashion_trainer_20230919_120109/Training vs. Validation Loss_Validation/events.out.tfevents.1695117672.msip-dell.ims.rwth-aachen.de.1017771.14 b/runs/fashion_trainer_20230919_120109/Training vs. Validation Loss_Validation/events.out.tfevents.1695117672.msip-dell.ims.rwth-aachen.de.1017771.14
new file mode 100644
index 0000000000000000000000000000000000000000..a902a2cc16c152242f896496b72f8c9d84309df5
Binary files /dev/null and b/runs/fashion_trainer_20230919_120109/Training vs. Validation Loss_Validation/events.out.tfevents.1695117672.msip-dell.ims.rwth-aachen.de.1017771.14 differ
diff --git a/runs/fashion_trainer_20230919_120109/events.out.tfevents.1695117669.msip-dell.ims.rwth-aachen.de.1017771.12 b/runs/fashion_trainer_20230919_120109/events.out.tfevents.1695117669.msip-dell.ims.rwth-aachen.de.1017771.12
new file mode 100644
index 0000000000000000000000000000000000000000..22e770fd03185f54283df17bf9eca371d92efeee
Binary files /dev/null and b/runs/fashion_trainer_20230919_120109/events.out.tfevents.1695117669.msip-dell.ims.rwth-aachen.de.1017771.12 differ
diff --git a/runs/fashion_trainer_20230919_120326/Training vs. Validation Loss_Training/events.out.tfevents.1695117808.msip-dell.ims.rwth-aachen.de.1017771.16 b/runs/fashion_trainer_20230919_120326/Training vs. Validation Loss_Training/events.out.tfevents.1695117808.msip-dell.ims.rwth-aachen.de.1017771.16
new file mode 100644
index 0000000000000000000000000000000000000000..ef65cc40c03ec47559b5417938ecca61a7ae5084
Binary files /dev/null and b/runs/fashion_trainer_20230919_120326/Training vs. Validation Loss_Training/events.out.tfevents.1695117808.msip-dell.ims.rwth-aachen.de.1017771.16 differ
diff --git a/runs/fashion_trainer_20230919_120326/Training vs. Validation Loss_Validation/events.out.tfevents.1695117808.msip-dell.ims.rwth-aachen.de.1017771.17 b/runs/fashion_trainer_20230919_120326/Training vs. Validation Loss_Validation/events.out.tfevents.1695117808.msip-dell.ims.rwth-aachen.de.1017771.17
new file mode 100644
index 0000000000000000000000000000000000000000..2f3cfabacceddeb9ac7fafa047d40d157fa4571d
Binary files /dev/null and b/runs/fashion_trainer_20230919_120326/Training vs. Validation Loss_Validation/events.out.tfevents.1695117808.msip-dell.ims.rwth-aachen.de.1017771.17 differ
diff --git a/runs/fashion_trainer_20230919_120326/events.out.tfevents.1695117806.msip-dell.ims.rwth-aachen.de.1017771.15 b/runs/fashion_trainer_20230919_120326/events.out.tfevents.1695117806.msip-dell.ims.rwth-aachen.de.1017771.15
new file mode 100644
index 0000000000000000000000000000000000000000..99de8759875ade8fc96c544b256105bb3e41e6ab
Binary files /dev/null and b/runs/fashion_trainer_20230919_120326/events.out.tfevents.1695117806.msip-dell.ims.rwth-aachen.de.1017771.15 differ
diff --git a/runs/fashion_trainer_20230919_120537/Training vs. Validation Loss_Training/events.out.tfevents.1695117940.msip-dell.ims.rwth-aachen.de.1017771.19 b/runs/fashion_trainer_20230919_120537/Training vs. Validation Loss_Training/events.out.tfevents.1695117940.msip-dell.ims.rwth-aachen.de.1017771.19
new file mode 100644
index 0000000000000000000000000000000000000000..858a53f5f0b7a64c82347024fac4292d0d2b1c71
Binary files /dev/null and b/runs/fashion_trainer_20230919_120537/Training vs. Validation Loss_Training/events.out.tfevents.1695117940.msip-dell.ims.rwth-aachen.de.1017771.19 differ
diff --git a/runs/fashion_trainer_20230919_120537/Training vs. Validation Loss_Validation/events.out.tfevents.1695117940.msip-dell.ims.rwth-aachen.de.1017771.20 b/runs/fashion_trainer_20230919_120537/Training vs. Validation Loss_Validation/events.out.tfevents.1695117940.msip-dell.ims.rwth-aachen.de.1017771.20
new file mode 100644
index 0000000000000000000000000000000000000000..42f21e032d8dce97ead8376a4467aa2947b333db
Binary files /dev/null and b/runs/fashion_trainer_20230919_120537/Training vs. Validation Loss_Validation/events.out.tfevents.1695117940.msip-dell.ims.rwth-aachen.de.1017771.20 differ
diff --git a/runs/fashion_trainer_20230919_120537/events.out.tfevents.1695117937.msip-dell.ims.rwth-aachen.de.1017771.18 b/runs/fashion_trainer_20230919_120537/events.out.tfevents.1695117937.msip-dell.ims.rwth-aachen.de.1017771.18
new file mode 100644
index 0000000000000000000000000000000000000000..73532d9222e392a0ca70b1a559bdbc9f573d827f
Binary files /dev/null and b/runs/fashion_trainer_20230919_120537/events.out.tfevents.1695117937.msip-dell.ims.rwth-aachen.de.1017771.18 differ
diff --git a/runs/fashion_trainer_20230919_120754/Training vs. Validation Loss_Training/events.out.tfevents.1695118076.msip-dell.ims.rwth-aachen.de.1017771.22 b/runs/fashion_trainer_20230919_120754/Training vs. Validation Loss_Training/events.out.tfevents.1695118076.msip-dell.ims.rwth-aachen.de.1017771.22
new file mode 100644
index 0000000000000000000000000000000000000000..5b69f1603ca8cf2b385ae09d939f5f28a8926884
Binary files /dev/null and b/runs/fashion_trainer_20230919_120754/Training vs. Validation Loss_Training/events.out.tfevents.1695118076.msip-dell.ims.rwth-aachen.de.1017771.22 differ
diff --git a/runs/fashion_trainer_20230919_120754/Training vs. Validation Loss_Validation/events.out.tfevents.1695118076.msip-dell.ims.rwth-aachen.de.1017771.23 b/runs/fashion_trainer_20230919_120754/Training vs. Validation Loss_Validation/events.out.tfevents.1695118076.msip-dell.ims.rwth-aachen.de.1017771.23
new file mode 100644
index 0000000000000000000000000000000000000000..96c9afd168b0c4904488180dd8c84cef091aa731
Binary files /dev/null and b/runs/fashion_trainer_20230919_120754/Training vs. Validation Loss_Validation/events.out.tfevents.1695118076.msip-dell.ims.rwth-aachen.de.1017771.23 differ
diff --git a/runs/fashion_trainer_20230919_120754/events.out.tfevents.1695118074.msip-dell.ims.rwth-aachen.de.1017771.21 b/runs/fashion_trainer_20230919_120754/events.out.tfevents.1695118074.msip-dell.ims.rwth-aachen.de.1017771.21
new file mode 100644
index 0000000000000000000000000000000000000000..ed892d9e1ca0909eea7b838c6761867e3d82101a
Binary files /dev/null and b/runs/fashion_trainer_20230919_120754/events.out.tfevents.1695118074.msip-dell.ims.rwth-aachen.de.1017771.21 differ
diff --git a/runs/fashion_trainer_20230919_121008/Training vs. Validation Loss_Training/events.out.tfevents.1695118211.msip-dell.ims.rwth-aachen.de.1017771.25 b/runs/fashion_trainer_20230919_121008/Training vs. Validation Loss_Training/events.out.tfevents.1695118211.msip-dell.ims.rwth-aachen.de.1017771.25
new file mode 100644
index 0000000000000000000000000000000000000000..538d33992199609b6c29d36fa25c9057b219c075
Binary files /dev/null and b/runs/fashion_trainer_20230919_121008/Training vs. Validation Loss_Training/events.out.tfevents.1695118211.msip-dell.ims.rwth-aachen.de.1017771.25 differ
diff --git a/runs/fashion_trainer_20230919_121008/Training vs. Validation Loss_Validation/events.out.tfevents.1695118211.msip-dell.ims.rwth-aachen.de.1017771.26 b/runs/fashion_trainer_20230919_121008/Training vs. Validation Loss_Validation/events.out.tfevents.1695118211.msip-dell.ims.rwth-aachen.de.1017771.26
new file mode 100644
index 0000000000000000000000000000000000000000..fad6ded5f73844f1a516972d89a3545442619a09
Binary files /dev/null and b/runs/fashion_trainer_20230919_121008/Training vs. Validation Loss_Validation/events.out.tfevents.1695118211.msip-dell.ims.rwth-aachen.de.1017771.26 differ
diff --git a/runs/fashion_trainer_20230919_121008/events.out.tfevents.1695118208.msip-dell.ims.rwth-aachen.de.1017771.24 b/runs/fashion_trainer_20230919_121008/events.out.tfevents.1695118208.msip-dell.ims.rwth-aachen.de.1017771.24
new file mode 100644
index 0000000000000000000000000000000000000000..aef83a08c2586227c0b767f8cbe5672d7bfc69aa
Binary files /dev/null and b/runs/fashion_trainer_20230919_121008/events.out.tfevents.1695118208.msip-dell.ims.rwth-aachen.de.1017771.24 differ
diff --git a/runs/fashion_trainer_20230919_121220/Training vs. Validation Loss_Training/events.out.tfevents.1695118342.msip-dell.ims.rwth-aachen.de.1017771.28 b/runs/fashion_trainer_20230919_121220/Training vs. Validation Loss_Training/events.out.tfevents.1695118342.msip-dell.ims.rwth-aachen.de.1017771.28
new file mode 100644
index 0000000000000000000000000000000000000000..ee1d546463a58926d00dd554e073caa92043b2b9
Binary files /dev/null and b/runs/fashion_trainer_20230919_121220/Training vs. Validation Loss_Training/events.out.tfevents.1695118342.msip-dell.ims.rwth-aachen.de.1017771.28 differ
diff --git a/runs/fashion_trainer_20230919_121220/Training vs. Validation Loss_Validation/events.out.tfevents.1695118342.msip-dell.ims.rwth-aachen.de.1017771.29 b/runs/fashion_trainer_20230919_121220/Training vs. Validation Loss_Validation/events.out.tfevents.1695118342.msip-dell.ims.rwth-aachen.de.1017771.29
new file mode 100644
index 0000000000000000000000000000000000000000..a7384175c6fd1d67001f64a0c5d56bd6b012e35f
Binary files /dev/null and b/runs/fashion_trainer_20230919_121220/Training vs. Validation Loss_Validation/events.out.tfevents.1695118342.msip-dell.ims.rwth-aachen.de.1017771.29 differ
diff --git a/runs/fashion_trainer_20230919_121220/events.out.tfevents.1695118340.msip-dell.ims.rwth-aachen.de.1017771.27 b/runs/fashion_trainer_20230919_121220/events.out.tfevents.1695118340.msip-dell.ims.rwth-aachen.de.1017771.27
new file mode 100644
index 0000000000000000000000000000000000000000..a2c7bd0e8f96adc8a5c7cb523354b745edb57065
Binary files /dev/null and b/runs/fashion_trainer_20230919_121220/events.out.tfevents.1695118340.msip-dell.ims.rwth-aachen.de.1017771.27 differ
diff --git a/runs/fashion_trainer_20230919_121556/Training vs. Validation Loss_Training/events.out.tfevents.1695118558.msip-dell.ims.rwth-aachen.de.1024297.1 b/runs/fashion_trainer_20230919_121556/Training vs. Validation Loss_Training/events.out.tfevents.1695118558.msip-dell.ims.rwth-aachen.de.1024297.1
new file mode 100644
index 0000000000000000000000000000000000000000..7b7f86ec1a9dfada998ec9eb9817851a21286f19
Binary files /dev/null and b/runs/fashion_trainer_20230919_121556/Training vs. Validation Loss_Training/events.out.tfevents.1695118558.msip-dell.ims.rwth-aachen.de.1024297.1 differ
diff --git a/runs/fashion_trainer_20230919_121556/Training vs. Validation Loss_Validation/events.out.tfevents.1695118558.msip-dell.ims.rwth-aachen.de.1024297.2 b/runs/fashion_trainer_20230919_121556/Training vs. Validation Loss_Validation/events.out.tfevents.1695118558.msip-dell.ims.rwth-aachen.de.1024297.2
new file mode 100644
index 0000000000000000000000000000000000000000..395f09999432b9f815dfafd529daadfbba42eb77
Binary files /dev/null and b/runs/fashion_trainer_20230919_121556/Training vs. Validation Loss_Validation/events.out.tfevents.1695118558.msip-dell.ims.rwth-aachen.de.1024297.2 differ
diff --git a/runs/fashion_trainer_20230919_121556/events.out.tfevents.1695118556.msip-dell.ims.rwth-aachen.de.1024297.0 b/runs/fashion_trainer_20230919_121556/events.out.tfevents.1695118556.msip-dell.ims.rwth-aachen.de.1024297.0
new file mode 100644
index 0000000000000000000000000000000000000000..a2ca3cd468ee9ae2b7e6bdefdcd6bba274fc7b1e
Binary files /dev/null and b/runs/fashion_trainer_20230919_121556/events.out.tfevents.1695118556.msip-dell.ims.rwth-aachen.de.1024297.0 differ
diff --git a/runs/fashion_trainer_20230919_121803/Training vs. Validation Loss_Training/events.out.tfevents.1695118685.msip-dell.ims.rwth-aachen.de.1024297.4 b/runs/fashion_trainer_20230919_121803/Training vs. Validation Loss_Training/events.out.tfevents.1695118685.msip-dell.ims.rwth-aachen.de.1024297.4
new file mode 100644
index 0000000000000000000000000000000000000000..15e114819be10ae5d4517be1d7004a2ec58dab5e
Binary files /dev/null and b/runs/fashion_trainer_20230919_121803/Training vs. Validation Loss_Training/events.out.tfevents.1695118685.msip-dell.ims.rwth-aachen.de.1024297.4 differ
diff --git a/runs/fashion_trainer_20230919_121803/Training vs. Validation Loss_Validation/events.out.tfevents.1695118685.msip-dell.ims.rwth-aachen.de.1024297.5 b/runs/fashion_trainer_20230919_121803/Training vs. Validation Loss_Validation/events.out.tfevents.1695118685.msip-dell.ims.rwth-aachen.de.1024297.5
new file mode 100644
index 0000000000000000000000000000000000000000..2b9d6a7158541891d0542bf757c9ef0d0a15bdf8
Binary files /dev/null and b/runs/fashion_trainer_20230919_121803/Training vs. Validation Loss_Validation/events.out.tfevents.1695118685.msip-dell.ims.rwth-aachen.de.1024297.5 differ
diff --git a/runs/fashion_trainer_20230919_121803/events.out.tfevents.1695118683.msip-dell.ims.rwth-aachen.de.1024297.3 b/runs/fashion_trainer_20230919_121803/events.out.tfevents.1695118683.msip-dell.ims.rwth-aachen.de.1024297.3
new file mode 100644
index 0000000000000000000000000000000000000000..4efe4d2ee50df525cde5f2cb83accec9dd926027
Binary files /dev/null and b/runs/fashion_trainer_20230919_121803/events.out.tfevents.1695118683.msip-dell.ims.rwth-aachen.de.1024297.3 differ
diff --git a/runs/fashion_trainer_20230919_122014/Training vs. Validation Loss_Training/events.out.tfevents.1695118816.msip-dell.ims.rwth-aachen.de.1024297.7 b/runs/fashion_trainer_20230919_122014/Training vs. Validation Loss_Training/events.out.tfevents.1695118816.msip-dell.ims.rwth-aachen.de.1024297.7
new file mode 100644
index 0000000000000000000000000000000000000000..9165cae157b4bfb518542f81473145a4cb6511c2
Binary files /dev/null and b/runs/fashion_trainer_20230919_122014/Training vs. Validation Loss_Training/events.out.tfevents.1695118816.msip-dell.ims.rwth-aachen.de.1024297.7 differ
diff --git a/runs/fashion_trainer_20230919_122014/Training vs. Validation Loss_Validation/events.out.tfevents.1695118816.msip-dell.ims.rwth-aachen.de.1024297.8 b/runs/fashion_trainer_20230919_122014/Training vs. Validation Loss_Validation/events.out.tfevents.1695118816.msip-dell.ims.rwth-aachen.de.1024297.8
new file mode 100644
index 0000000000000000000000000000000000000000..87efc61ddd3ec8aa78f4bfa5127b0c7ce932f9ac
Binary files /dev/null and b/runs/fashion_trainer_20230919_122014/Training vs. Validation Loss_Validation/events.out.tfevents.1695118816.msip-dell.ims.rwth-aachen.de.1024297.8 differ
diff --git a/runs/fashion_trainer_20230919_122014/events.out.tfevents.1695118814.msip-dell.ims.rwth-aachen.de.1024297.6 b/runs/fashion_trainer_20230919_122014/events.out.tfevents.1695118814.msip-dell.ims.rwth-aachen.de.1024297.6
new file mode 100644
index 0000000000000000000000000000000000000000..ff26e5183bcb1ea85c730128e72c5c102b9f5355
Binary files /dev/null and b/runs/fashion_trainer_20230919_122014/events.out.tfevents.1695118814.msip-dell.ims.rwth-aachen.de.1024297.6 differ
diff --git a/runs/fashion_trainer_20230919_122224/Training vs. Validation Loss_Training/events.out.tfevents.1695118946.msip-dell.ims.rwth-aachen.de.1024297.10 b/runs/fashion_trainer_20230919_122224/Training vs. Validation Loss_Training/events.out.tfevents.1695118946.msip-dell.ims.rwth-aachen.de.1024297.10
new file mode 100644
index 0000000000000000000000000000000000000000..5523a389ebfc67f83fd29293b7eec5b09f58eda7
Binary files /dev/null and b/runs/fashion_trainer_20230919_122224/Training vs. Validation Loss_Training/events.out.tfevents.1695118946.msip-dell.ims.rwth-aachen.de.1024297.10 differ
diff --git a/runs/fashion_trainer_20230919_122224/Training vs. Validation Loss_Validation/events.out.tfevents.1695118946.msip-dell.ims.rwth-aachen.de.1024297.11 b/runs/fashion_trainer_20230919_122224/Training vs. Validation Loss_Validation/events.out.tfevents.1695118946.msip-dell.ims.rwth-aachen.de.1024297.11
new file mode 100644
index 0000000000000000000000000000000000000000..8c6452e3364306332d390952716683bdb540fcfd
Binary files /dev/null and b/runs/fashion_trainer_20230919_122224/Training vs. Validation Loss_Validation/events.out.tfevents.1695118946.msip-dell.ims.rwth-aachen.de.1024297.11 differ
diff --git a/runs/fashion_trainer_20230919_122224/events.out.tfevents.1695118944.msip-dell.ims.rwth-aachen.de.1024297.9 b/runs/fashion_trainer_20230919_122224/events.out.tfevents.1695118944.msip-dell.ims.rwth-aachen.de.1024297.9
new file mode 100644
index 0000000000000000000000000000000000000000..c1e5754f4aa8990ca706fbab3bdf0ea5dd23e50e
Binary files /dev/null and b/runs/fashion_trainer_20230919_122224/events.out.tfevents.1695118944.msip-dell.ims.rwth-aachen.de.1024297.9 differ
diff --git a/runs/fashion_trainer_20230919_122438/Training vs. Validation Loss_Training/events.out.tfevents.1695119081.msip-dell.ims.rwth-aachen.de.1024297.13 b/runs/fashion_trainer_20230919_122438/Training vs. Validation Loss_Training/events.out.tfevents.1695119081.msip-dell.ims.rwth-aachen.de.1024297.13
new file mode 100644
index 0000000000000000000000000000000000000000..9847b016772df8cc076916bd0584ea97d6181bec
Binary files /dev/null and b/runs/fashion_trainer_20230919_122438/Training vs. Validation Loss_Training/events.out.tfevents.1695119081.msip-dell.ims.rwth-aachen.de.1024297.13 differ
diff --git a/runs/fashion_trainer_20230919_122438/Training vs. Validation Loss_Validation/events.out.tfevents.1695119081.msip-dell.ims.rwth-aachen.de.1024297.14 b/runs/fashion_trainer_20230919_122438/Training vs. Validation Loss_Validation/events.out.tfevents.1695119081.msip-dell.ims.rwth-aachen.de.1024297.14
new file mode 100644
index 0000000000000000000000000000000000000000..dded8741b78c22b93f2f86b0328d5b4f882fa8f8
Binary files /dev/null and b/runs/fashion_trainer_20230919_122438/Training vs. Validation Loss_Validation/events.out.tfevents.1695119081.msip-dell.ims.rwth-aachen.de.1024297.14 differ
diff --git a/runs/fashion_trainer_20230919_122438/events.out.tfevents.1695119078.msip-dell.ims.rwth-aachen.de.1024297.12 b/runs/fashion_trainer_20230919_122438/events.out.tfevents.1695119078.msip-dell.ims.rwth-aachen.de.1024297.12
new file mode 100644
index 0000000000000000000000000000000000000000..d6eb0d71f8846cede2ff6a2929236098eb2dbca7
Binary files /dev/null and b/runs/fashion_trainer_20230919_122438/events.out.tfevents.1695119078.msip-dell.ims.rwth-aachen.de.1024297.12 differ
diff --git a/runs/fashion_trainer_20230919_122649/Training vs. Validation Loss_Training/events.out.tfevents.1695119212.msip-dell.ims.rwth-aachen.de.1024297.16 b/runs/fashion_trainer_20230919_122649/Training vs. Validation Loss_Training/events.out.tfevents.1695119212.msip-dell.ims.rwth-aachen.de.1024297.16
new file mode 100644
index 0000000000000000000000000000000000000000..5c929cb4e9e38317659517e2b401d34096ff8049
Binary files /dev/null and b/runs/fashion_trainer_20230919_122649/Training vs. Validation Loss_Training/events.out.tfevents.1695119212.msip-dell.ims.rwth-aachen.de.1024297.16 differ
diff --git a/runs/fashion_trainer_20230919_122649/Training vs. Validation Loss_Validation/events.out.tfevents.1695119212.msip-dell.ims.rwth-aachen.de.1024297.17 b/runs/fashion_trainer_20230919_122649/Training vs. Validation Loss_Validation/events.out.tfevents.1695119212.msip-dell.ims.rwth-aachen.de.1024297.17
new file mode 100644
index 0000000000000000000000000000000000000000..c7ce5c9fbc857f27cce42f2ebbbd5ca90e836627
Binary files /dev/null and b/runs/fashion_trainer_20230919_122649/Training vs. Validation Loss_Validation/events.out.tfevents.1695119212.msip-dell.ims.rwth-aachen.de.1024297.17 differ
diff --git a/runs/fashion_trainer_20230919_122649/events.out.tfevents.1695119209.msip-dell.ims.rwth-aachen.de.1024297.15 b/runs/fashion_trainer_20230919_122649/events.out.tfevents.1695119209.msip-dell.ims.rwth-aachen.de.1024297.15
new file mode 100644
index 0000000000000000000000000000000000000000..238da266ca1f425708fb62fca3daad273b9af733
Binary files /dev/null and b/runs/fashion_trainer_20230919_122649/events.out.tfevents.1695119209.msip-dell.ims.rwth-aachen.de.1024297.15 differ
diff --git a/runs/fashion_trainer_20230919_122905/Training vs. Validation Loss_Training/events.out.tfevents.1695119348.msip-dell.ims.rwth-aachen.de.1024297.19 b/runs/fashion_trainer_20230919_122905/Training vs. Validation Loss_Training/events.out.tfevents.1695119348.msip-dell.ims.rwth-aachen.de.1024297.19
new file mode 100644
index 0000000000000000000000000000000000000000..f9d304ac5218be6a29973af9cc725f1f34aa4da6
Binary files /dev/null and b/runs/fashion_trainer_20230919_122905/Training vs. Validation Loss_Training/events.out.tfevents.1695119348.msip-dell.ims.rwth-aachen.de.1024297.19 differ
diff --git a/runs/fashion_trainer_20230919_122905/Training vs. Validation Loss_Validation/events.out.tfevents.1695119348.msip-dell.ims.rwth-aachen.de.1024297.20 b/runs/fashion_trainer_20230919_122905/Training vs. Validation Loss_Validation/events.out.tfevents.1695119348.msip-dell.ims.rwth-aachen.de.1024297.20
new file mode 100644
index 0000000000000000000000000000000000000000..cfc0fa711efc9449ce39bacdce99fca362670ecc
Binary files /dev/null and b/runs/fashion_trainer_20230919_122905/Training vs. Validation Loss_Validation/events.out.tfevents.1695119348.msip-dell.ims.rwth-aachen.de.1024297.20 differ
diff --git a/runs/fashion_trainer_20230919_122905/events.out.tfevents.1695119345.msip-dell.ims.rwth-aachen.de.1024297.18 b/runs/fashion_trainer_20230919_122905/events.out.tfevents.1695119345.msip-dell.ims.rwth-aachen.de.1024297.18
new file mode 100644
index 0000000000000000000000000000000000000000..04b0726246ef2163f5f2e27f8a2b8e38eaa4f36a
Binary files /dev/null and b/runs/fashion_trainer_20230919_122905/events.out.tfevents.1695119345.msip-dell.ims.rwth-aachen.de.1024297.18 differ
diff --git a/runs/fashion_trainer_20230919_123120/Training vs. Validation Loss_Training/events.out.tfevents.1695119483.msip-dell.ims.rwth-aachen.de.1024297.22 b/runs/fashion_trainer_20230919_123120/Training vs. Validation Loss_Training/events.out.tfevents.1695119483.msip-dell.ims.rwth-aachen.de.1024297.22
new file mode 100644
index 0000000000000000000000000000000000000000..b150aeb2372964bbba7a03d14fad2651d84019ad
Binary files /dev/null and b/runs/fashion_trainer_20230919_123120/Training vs. Validation Loss_Training/events.out.tfevents.1695119483.msip-dell.ims.rwth-aachen.de.1024297.22 differ
diff --git a/runs/fashion_trainer_20230919_123120/Training vs. Validation Loss_Validation/events.out.tfevents.1695119483.msip-dell.ims.rwth-aachen.de.1024297.23 b/runs/fashion_trainer_20230919_123120/Training vs. Validation Loss_Validation/events.out.tfevents.1695119483.msip-dell.ims.rwth-aachen.de.1024297.23
new file mode 100644
index 0000000000000000000000000000000000000000..58a6e5cd26b9d4d5d699750852ad8c997b0b1ef2
Binary files /dev/null and b/runs/fashion_trainer_20230919_123120/Training vs. Validation Loss_Validation/events.out.tfevents.1695119483.msip-dell.ims.rwth-aachen.de.1024297.23 differ
diff --git a/runs/fashion_trainer_20230919_123120/events.out.tfevents.1695119480.msip-dell.ims.rwth-aachen.de.1024297.21 b/runs/fashion_trainer_20230919_123120/events.out.tfevents.1695119480.msip-dell.ims.rwth-aachen.de.1024297.21
new file mode 100644
index 0000000000000000000000000000000000000000..ffe19bc3fb94924e6291af5f8e8ef8739054518c
Binary files /dev/null and b/runs/fashion_trainer_20230919_123120/events.out.tfevents.1695119480.msip-dell.ims.rwth-aachen.de.1024297.21 differ
diff --git a/runs/fashion_trainer_20230919_123334/Training vs. Validation Loss_Training/events.out.tfevents.1695119616.msip-dell.ims.rwth-aachen.de.1024297.25 b/runs/fashion_trainer_20230919_123334/Training vs. Validation Loss_Training/events.out.tfevents.1695119616.msip-dell.ims.rwth-aachen.de.1024297.25
new file mode 100644
index 0000000000000000000000000000000000000000..082bae82139147ec78c550a294d587faf69312ac
Binary files /dev/null and b/runs/fashion_trainer_20230919_123334/Training vs. Validation Loss_Training/events.out.tfevents.1695119616.msip-dell.ims.rwth-aachen.de.1024297.25 differ
diff --git a/runs/fashion_trainer_20230919_123334/Training vs. Validation Loss_Validation/events.out.tfevents.1695119616.msip-dell.ims.rwth-aachen.de.1024297.26 b/runs/fashion_trainer_20230919_123334/Training vs. Validation Loss_Validation/events.out.tfevents.1695119616.msip-dell.ims.rwth-aachen.de.1024297.26
new file mode 100644
index 0000000000000000000000000000000000000000..5c0e90de38d44a5ebd44d88009d8be5b28163e7c
Binary files /dev/null and b/runs/fashion_trainer_20230919_123334/Training vs. Validation Loss_Validation/events.out.tfevents.1695119616.msip-dell.ims.rwth-aachen.de.1024297.26 differ
diff --git a/runs/fashion_trainer_20230919_123334/events.out.tfevents.1695119614.msip-dell.ims.rwth-aachen.de.1024297.24 b/runs/fashion_trainer_20230919_123334/events.out.tfevents.1695119614.msip-dell.ims.rwth-aachen.de.1024297.24
new file mode 100644
index 0000000000000000000000000000000000000000..0b0d3e38828594d6e60bf3fb98fd0e44966d105d
Binary files /dev/null and b/runs/fashion_trainer_20230919_123334/events.out.tfevents.1695119614.msip-dell.ims.rwth-aachen.de.1024297.24 differ
diff --git a/runs/fashion_trainer_20230919_123548/Training vs. Validation Loss_Training/events.out.tfevents.1695119750.msip-dell.ims.rwth-aachen.de.1024297.28 b/runs/fashion_trainer_20230919_123548/Training vs. Validation Loss_Training/events.out.tfevents.1695119750.msip-dell.ims.rwth-aachen.de.1024297.28
new file mode 100644
index 0000000000000000000000000000000000000000..fd14f8967718afe055bb0e00e8dd1010c2680637
Binary files /dev/null and b/runs/fashion_trainer_20230919_123548/Training vs. Validation Loss_Training/events.out.tfevents.1695119750.msip-dell.ims.rwth-aachen.de.1024297.28 differ
diff --git a/runs/fashion_trainer_20230919_123548/Training vs. Validation Loss_Validation/events.out.tfevents.1695119750.msip-dell.ims.rwth-aachen.de.1024297.29 b/runs/fashion_trainer_20230919_123548/Training vs. Validation Loss_Validation/events.out.tfevents.1695119750.msip-dell.ims.rwth-aachen.de.1024297.29
new file mode 100644
index 0000000000000000000000000000000000000000..b2d0c6b7627651b60d9e88721c4e7bc32da09a48
Binary files /dev/null and b/runs/fashion_trainer_20230919_123548/Training vs. Validation Loss_Validation/events.out.tfevents.1695119750.msip-dell.ims.rwth-aachen.de.1024297.29 differ
diff --git a/runs/fashion_trainer_20230919_123548/events.out.tfevents.1695119748.msip-dell.ims.rwth-aachen.de.1024297.27 b/runs/fashion_trainer_20230919_123548/events.out.tfevents.1695119748.msip-dell.ims.rwth-aachen.de.1024297.27
new file mode 100644
index 0000000000000000000000000000000000000000..6685db645a0d347a111ee8dcc318eec92287afc8
Binary files /dev/null and b/runs/fashion_trainer_20230919_123548/events.out.tfevents.1695119748.msip-dell.ims.rwth-aachen.de.1024297.27 differ
diff --git a/runs/fashion_trainer_20230919_124717/Training vs. Validation Loss_Training/events.out.tfevents.1695120439.msip-dell.ims.rwth-aachen.de.1032158.1 b/runs/fashion_trainer_20230919_124717/Training vs. Validation Loss_Training/events.out.tfevents.1695120439.msip-dell.ims.rwth-aachen.de.1032158.1
new file mode 100644
index 0000000000000000000000000000000000000000..8584283775ac3cf454558adcc1b7652863cd7f4a
Binary files /dev/null and b/runs/fashion_trainer_20230919_124717/Training vs. Validation Loss_Training/events.out.tfevents.1695120439.msip-dell.ims.rwth-aachen.de.1032158.1 differ
diff --git a/runs/fashion_trainer_20230919_124717/Training vs. Validation Loss_Validation/events.out.tfevents.1695120439.msip-dell.ims.rwth-aachen.de.1032158.2 b/runs/fashion_trainer_20230919_124717/Training vs. Validation Loss_Validation/events.out.tfevents.1695120439.msip-dell.ims.rwth-aachen.de.1032158.2
new file mode 100644
index 0000000000000000000000000000000000000000..181a5f5dba323ea56c82b38982d54dea0e452fe7
Binary files /dev/null and b/runs/fashion_trainer_20230919_124717/Training vs. Validation Loss_Validation/events.out.tfevents.1695120439.msip-dell.ims.rwth-aachen.de.1032158.2 differ
diff --git a/runs/fashion_trainer_20230919_124717/events.out.tfevents.1695120437.msip-dell.ims.rwth-aachen.de.1032158.0 b/runs/fashion_trainer_20230919_124717/events.out.tfevents.1695120437.msip-dell.ims.rwth-aachen.de.1032158.0
new file mode 100644
index 0000000000000000000000000000000000000000..4d2ce157770497c5ccd450ea4f8a587298ad4fa3
Binary files /dev/null and b/runs/fashion_trainer_20230919_124717/events.out.tfevents.1695120437.msip-dell.ims.rwth-aachen.de.1032158.0 differ
diff --git a/runs/fashion_trainer_20230919_124928/Training vs. Validation Loss_Training/events.out.tfevents.1695120571.msip-dell.ims.rwth-aachen.de.1032158.4 b/runs/fashion_trainer_20230919_124928/Training vs. Validation Loss_Training/events.out.tfevents.1695120571.msip-dell.ims.rwth-aachen.de.1032158.4
new file mode 100644
index 0000000000000000000000000000000000000000..5f399e7a20503cb86c363714d47e903f055236fe
Binary files /dev/null and b/runs/fashion_trainer_20230919_124928/Training vs. Validation Loss_Training/events.out.tfevents.1695120571.msip-dell.ims.rwth-aachen.de.1032158.4 differ
diff --git a/runs/fashion_trainer_20230919_124928/Training vs. Validation Loss_Validation/events.out.tfevents.1695120571.msip-dell.ims.rwth-aachen.de.1032158.5 b/runs/fashion_trainer_20230919_124928/Training vs. Validation Loss_Validation/events.out.tfevents.1695120571.msip-dell.ims.rwth-aachen.de.1032158.5
new file mode 100644
index 0000000000000000000000000000000000000000..5985893e4786eae643bda3a645aa8163d05bb2d0
Binary files /dev/null and b/runs/fashion_trainer_20230919_124928/Training vs. Validation Loss_Validation/events.out.tfevents.1695120571.msip-dell.ims.rwth-aachen.de.1032158.5 differ
diff --git a/runs/fashion_trainer_20230919_124928/events.out.tfevents.1695120568.msip-dell.ims.rwth-aachen.de.1032158.3 b/runs/fashion_trainer_20230919_124928/events.out.tfevents.1695120568.msip-dell.ims.rwth-aachen.de.1032158.3
new file mode 100644
index 0000000000000000000000000000000000000000..1389566df5666681095eb3016a8c30f74c1f5f65
Binary files /dev/null and b/runs/fashion_trainer_20230919_124928/events.out.tfevents.1695120568.msip-dell.ims.rwth-aachen.de.1032158.3 differ
diff --git a/runs/fashion_trainer_20230919_125139/Training vs. Validation Loss_Training/events.out.tfevents.1695120702.msip-dell.ims.rwth-aachen.de.1032158.7 b/runs/fashion_trainer_20230919_125139/Training vs. Validation Loss_Training/events.out.tfevents.1695120702.msip-dell.ims.rwth-aachen.de.1032158.7
new file mode 100644
index 0000000000000000000000000000000000000000..8663e4557b540ca30fbe6b3b062703fd6c26defe
Binary files /dev/null and b/runs/fashion_trainer_20230919_125139/Training vs. Validation Loss_Training/events.out.tfevents.1695120702.msip-dell.ims.rwth-aachen.de.1032158.7 differ
diff --git a/runs/fashion_trainer_20230919_125139/Training vs. Validation Loss_Validation/events.out.tfevents.1695120702.msip-dell.ims.rwth-aachen.de.1032158.8 b/runs/fashion_trainer_20230919_125139/Training vs. Validation Loss_Validation/events.out.tfevents.1695120702.msip-dell.ims.rwth-aachen.de.1032158.8
new file mode 100644
index 0000000000000000000000000000000000000000..503ce08b8af60d09818732d66126764452c48f66
Binary files /dev/null and b/runs/fashion_trainer_20230919_125139/Training vs. Validation Loss_Validation/events.out.tfevents.1695120702.msip-dell.ims.rwth-aachen.de.1032158.8 differ
diff --git a/runs/fashion_trainer_20230919_125139/events.out.tfevents.1695120699.msip-dell.ims.rwth-aachen.de.1032158.6 b/runs/fashion_trainer_20230919_125139/events.out.tfevents.1695120699.msip-dell.ims.rwth-aachen.de.1032158.6
new file mode 100644
index 0000000000000000000000000000000000000000..e50a41d69d04103cc7d02a2e5fdd980915ea41e1
Binary files /dev/null and b/runs/fashion_trainer_20230919_125139/events.out.tfevents.1695120699.msip-dell.ims.rwth-aachen.de.1032158.6 differ
diff --git a/runs/fashion_trainer_20230919_125355/Training vs. Validation Loss_Training/events.out.tfevents.1695120837.msip-dell.ims.rwth-aachen.de.1032158.10 b/runs/fashion_trainer_20230919_125355/Training vs. Validation Loss_Training/events.out.tfevents.1695120837.msip-dell.ims.rwth-aachen.de.1032158.10
new file mode 100644
index 0000000000000000000000000000000000000000..bafcf4d83fbd06267a1aef6408c0d8947d855501
Binary files /dev/null and b/runs/fashion_trainer_20230919_125355/Training vs. Validation Loss_Training/events.out.tfevents.1695120837.msip-dell.ims.rwth-aachen.de.1032158.10 differ
diff --git a/runs/fashion_trainer_20230919_125355/Training vs. Validation Loss_Validation/events.out.tfevents.1695120837.msip-dell.ims.rwth-aachen.de.1032158.11 b/runs/fashion_trainer_20230919_125355/Training vs. Validation Loss_Validation/events.out.tfevents.1695120837.msip-dell.ims.rwth-aachen.de.1032158.11
new file mode 100644
index 0000000000000000000000000000000000000000..17b7a99368b200e64d54d1286687839a74d36d44
Binary files /dev/null and b/runs/fashion_trainer_20230919_125355/Training vs. Validation Loss_Validation/events.out.tfevents.1695120837.msip-dell.ims.rwth-aachen.de.1032158.11 differ
diff --git a/runs/fashion_trainer_20230919_125355/events.out.tfevents.1695120835.msip-dell.ims.rwth-aachen.de.1032158.9 b/runs/fashion_trainer_20230919_125355/events.out.tfevents.1695120835.msip-dell.ims.rwth-aachen.de.1032158.9
new file mode 100644
index 0000000000000000000000000000000000000000..8c358cc8abd6e2f23badd07723d4dd4cc25a7996
Binary files /dev/null and b/runs/fashion_trainer_20230919_125355/events.out.tfevents.1695120835.msip-dell.ims.rwth-aachen.de.1032158.9 differ
diff --git a/runs/fashion_trainer_20230919_125606/Training vs. Validation Loss_Training/events.out.tfevents.1695120968.msip-dell.ims.rwth-aachen.de.1032158.13 b/runs/fashion_trainer_20230919_125606/Training vs. Validation Loss_Training/events.out.tfevents.1695120968.msip-dell.ims.rwth-aachen.de.1032158.13
new file mode 100644
index 0000000000000000000000000000000000000000..09aec1924a2170088e4249608c668f735dd2e221
Binary files /dev/null and b/runs/fashion_trainer_20230919_125606/Training vs. Validation Loss_Training/events.out.tfevents.1695120968.msip-dell.ims.rwth-aachen.de.1032158.13 differ
diff --git a/runs/fashion_trainer_20230919_125606/Training vs. Validation Loss_Validation/events.out.tfevents.1695120968.msip-dell.ims.rwth-aachen.de.1032158.14 b/runs/fashion_trainer_20230919_125606/Training vs. Validation Loss_Validation/events.out.tfevents.1695120968.msip-dell.ims.rwth-aachen.de.1032158.14
new file mode 100644
index 0000000000000000000000000000000000000000..2e3915f3d3eafefc9652ad37f571693c5a61a37d
Binary files /dev/null and b/runs/fashion_trainer_20230919_125606/Training vs. Validation Loss_Validation/events.out.tfevents.1695120968.msip-dell.ims.rwth-aachen.de.1032158.14 differ
diff --git a/runs/fashion_trainer_20230919_125606/events.out.tfevents.1695120966.msip-dell.ims.rwth-aachen.de.1032158.12 b/runs/fashion_trainer_20230919_125606/events.out.tfevents.1695120966.msip-dell.ims.rwth-aachen.de.1032158.12
new file mode 100644
index 0000000000000000000000000000000000000000..379326c168b57ab64871a1c115258418a3be7501
Binary files /dev/null and b/runs/fashion_trainer_20230919_125606/events.out.tfevents.1695120966.msip-dell.ims.rwth-aachen.de.1032158.12 differ
diff --git a/runs/fashion_trainer_20230919_125818/Training vs. Validation Loss_Training/events.out.tfevents.1695121100.msip-dell.ims.rwth-aachen.de.1032158.16 b/runs/fashion_trainer_20230919_125818/Training vs. Validation Loss_Training/events.out.tfevents.1695121100.msip-dell.ims.rwth-aachen.de.1032158.16
new file mode 100644
index 0000000000000000000000000000000000000000..04a2392ee325aaae0a0198d7ea3df7db02c36f1f
Binary files /dev/null and b/runs/fashion_trainer_20230919_125818/Training vs. Validation Loss_Training/events.out.tfevents.1695121100.msip-dell.ims.rwth-aachen.de.1032158.16 differ
diff --git a/runs/fashion_trainer_20230919_125818/Training vs. Validation Loss_Validation/events.out.tfevents.1695121100.msip-dell.ims.rwth-aachen.de.1032158.17 b/runs/fashion_trainer_20230919_125818/Training vs. Validation Loss_Validation/events.out.tfevents.1695121100.msip-dell.ims.rwth-aachen.de.1032158.17
new file mode 100644
index 0000000000000000000000000000000000000000..4f108b0055af71747ea9e9cc2d747854de3a68c4
Binary files /dev/null and b/runs/fashion_trainer_20230919_125818/Training vs. Validation Loss_Validation/events.out.tfevents.1695121100.msip-dell.ims.rwth-aachen.de.1032158.17 differ
diff --git a/runs/fashion_trainer_20230919_125818/events.out.tfevents.1695121098.msip-dell.ims.rwth-aachen.de.1032158.15 b/runs/fashion_trainer_20230919_125818/events.out.tfevents.1695121098.msip-dell.ims.rwth-aachen.de.1032158.15
new file mode 100644
index 0000000000000000000000000000000000000000..c3740e0194fc943ea60a3e2ccf0da78c5f1b9a54
Binary files /dev/null and b/runs/fashion_trainer_20230919_125818/events.out.tfevents.1695121098.msip-dell.ims.rwth-aachen.de.1032158.15 differ
diff --git a/runs/fashion_trainer_20230919_130029/Training vs. Validation Loss_Training/events.out.tfevents.1695121231.msip-dell.ims.rwth-aachen.de.1032158.19 b/runs/fashion_trainer_20230919_130029/Training vs. Validation Loss_Training/events.out.tfevents.1695121231.msip-dell.ims.rwth-aachen.de.1032158.19
new file mode 100644
index 0000000000000000000000000000000000000000..ecb174aef4d04169cc33e53a0a50a84f1033c5b3
Binary files /dev/null and b/runs/fashion_trainer_20230919_130029/Training vs. Validation Loss_Training/events.out.tfevents.1695121231.msip-dell.ims.rwth-aachen.de.1032158.19 differ
diff --git a/runs/fashion_trainer_20230919_130029/Training vs. Validation Loss_Validation/events.out.tfevents.1695121231.msip-dell.ims.rwth-aachen.de.1032158.20 b/runs/fashion_trainer_20230919_130029/Training vs. Validation Loss_Validation/events.out.tfevents.1695121231.msip-dell.ims.rwth-aachen.de.1032158.20
new file mode 100644
index 0000000000000000000000000000000000000000..564b6547cadf3bba21c4b80b59fe19216c2daa08
Binary files /dev/null and b/runs/fashion_trainer_20230919_130029/Training vs. Validation Loss_Validation/events.out.tfevents.1695121231.msip-dell.ims.rwth-aachen.de.1032158.20 differ
diff --git a/runs/fashion_trainer_20230919_130029/events.out.tfevents.1695121229.msip-dell.ims.rwth-aachen.de.1032158.18 b/runs/fashion_trainer_20230919_130029/events.out.tfevents.1695121229.msip-dell.ims.rwth-aachen.de.1032158.18
new file mode 100644
index 0000000000000000000000000000000000000000..d25b8dfa991a884b0e3188cf88e9a134bac752e0
Binary files /dev/null and b/runs/fashion_trainer_20230919_130029/events.out.tfevents.1695121229.msip-dell.ims.rwth-aachen.de.1032158.18 differ
diff --git a/runs/fashion_trainer_20230919_130241/Training vs. Validation Loss_Training/events.out.tfevents.1695121363.msip-dell.ims.rwth-aachen.de.1032158.22 b/runs/fashion_trainer_20230919_130241/Training vs. Validation Loss_Training/events.out.tfevents.1695121363.msip-dell.ims.rwth-aachen.de.1032158.22
new file mode 100644
index 0000000000000000000000000000000000000000..b83b6c1ec408cdc2eacbb5908462026b847dcaab
Binary files /dev/null and b/runs/fashion_trainer_20230919_130241/Training vs. Validation Loss_Training/events.out.tfevents.1695121363.msip-dell.ims.rwth-aachen.de.1032158.22 differ
diff --git a/runs/fashion_trainer_20230919_130241/Training vs. Validation Loss_Validation/events.out.tfevents.1695121363.msip-dell.ims.rwth-aachen.de.1032158.23 b/runs/fashion_trainer_20230919_130241/Training vs. Validation Loss_Validation/events.out.tfevents.1695121363.msip-dell.ims.rwth-aachen.de.1032158.23
new file mode 100644
index 0000000000000000000000000000000000000000..2e0a7b9e858019148589c9e7c1c36715f4665e0e
Binary files /dev/null and b/runs/fashion_trainer_20230919_130241/Training vs. Validation Loss_Validation/events.out.tfevents.1695121363.msip-dell.ims.rwth-aachen.de.1032158.23 differ
diff --git a/runs/fashion_trainer_20230919_130241/events.out.tfevents.1695121361.msip-dell.ims.rwth-aachen.de.1032158.21 b/runs/fashion_trainer_20230919_130241/events.out.tfevents.1695121361.msip-dell.ims.rwth-aachen.de.1032158.21
new file mode 100644
index 0000000000000000000000000000000000000000..64da76adbefc7e44adfedfca02a768a146c09b97
Binary files /dev/null and b/runs/fashion_trainer_20230919_130241/events.out.tfevents.1695121361.msip-dell.ims.rwth-aachen.de.1032158.21 differ
diff --git a/runs/fashion_trainer_20230919_130450/Training vs. Validation Loss_Training/events.out.tfevents.1695121493.msip-dell.ims.rwth-aachen.de.1032158.25 b/runs/fashion_trainer_20230919_130450/Training vs. Validation Loss_Training/events.out.tfevents.1695121493.msip-dell.ims.rwth-aachen.de.1032158.25
new file mode 100644
index 0000000000000000000000000000000000000000..9b7cbf42f34c0a1e8d2977187478a69a3f2f99d2
Binary files /dev/null and b/runs/fashion_trainer_20230919_130450/Training vs. Validation Loss_Training/events.out.tfevents.1695121493.msip-dell.ims.rwth-aachen.de.1032158.25 differ
diff --git a/runs/fashion_trainer_20230919_130450/Training vs. Validation Loss_Validation/events.out.tfevents.1695121493.msip-dell.ims.rwth-aachen.de.1032158.26 b/runs/fashion_trainer_20230919_130450/Training vs. Validation Loss_Validation/events.out.tfevents.1695121493.msip-dell.ims.rwth-aachen.de.1032158.26
new file mode 100644
index 0000000000000000000000000000000000000000..d1ef6659d90888b1f6a3e806a59e2d8393e3fe9a
Binary files /dev/null and b/runs/fashion_trainer_20230919_130450/Training vs. Validation Loss_Validation/events.out.tfevents.1695121493.msip-dell.ims.rwth-aachen.de.1032158.26 differ
diff --git a/runs/fashion_trainer_20230919_130450/events.out.tfevents.1695121490.msip-dell.ims.rwth-aachen.de.1032158.24 b/runs/fashion_trainer_20230919_130450/events.out.tfevents.1695121490.msip-dell.ims.rwth-aachen.de.1032158.24
new file mode 100644
index 0000000000000000000000000000000000000000..0240a8c0a6735cb94668165ed1620f75bf86c81c
Binary files /dev/null and b/runs/fashion_trainer_20230919_130450/events.out.tfevents.1695121490.msip-dell.ims.rwth-aachen.de.1032158.24 differ
diff --git a/runs/fashion_trainer_20230919_130700/Training vs. Validation Loss_Training/events.out.tfevents.1695121623.msip-dell.ims.rwth-aachen.de.1032158.28 b/runs/fashion_trainer_20230919_130700/Training vs. Validation Loss_Training/events.out.tfevents.1695121623.msip-dell.ims.rwth-aachen.de.1032158.28
new file mode 100644
index 0000000000000000000000000000000000000000..7ea2f34a7306ac9c94500037e29d2e02b9825da7
Binary files /dev/null and b/runs/fashion_trainer_20230919_130700/Training vs. Validation Loss_Training/events.out.tfevents.1695121623.msip-dell.ims.rwth-aachen.de.1032158.28 differ
diff --git a/runs/fashion_trainer_20230919_130700/Training vs. Validation Loss_Validation/events.out.tfevents.1695121623.msip-dell.ims.rwth-aachen.de.1032158.29 b/runs/fashion_trainer_20230919_130700/Training vs. Validation Loss_Validation/events.out.tfevents.1695121623.msip-dell.ims.rwth-aachen.de.1032158.29
new file mode 100644
index 0000000000000000000000000000000000000000..3ff4922e15ee31ed29222523986cc6604bd29da1
Binary files /dev/null and b/runs/fashion_trainer_20230919_130700/Training vs. Validation Loss_Validation/events.out.tfevents.1695121623.msip-dell.ims.rwth-aachen.de.1032158.29 differ
diff --git a/runs/fashion_trainer_20230919_130700/events.out.tfevents.1695121620.msip-dell.ims.rwth-aachen.de.1032158.27 b/runs/fashion_trainer_20230919_130700/events.out.tfevents.1695121620.msip-dell.ims.rwth-aachen.de.1032158.27
new file mode 100644
index 0000000000000000000000000000000000000000..e57fae43be6509bb98eb643dab304a18f479a3f9
Binary files /dev/null and b/runs/fashion_trainer_20230919_130700/events.out.tfevents.1695121620.msip-dell.ims.rwth-aachen.de.1032158.27 differ
diff --git a/runs/fashion_trainer_20230919_174723/Training vs. Validation Loss_Training/events.out.tfevents.1695138446.msip-dell.ims.rwth-aachen.de.1108078.1 b/runs/fashion_trainer_20230919_174723/Training vs. Validation Loss_Training/events.out.tfevents.1695138446.msip-dell.ims.rwth-aachen.de.1108078.1
new file mode 100644
index 0000000000000000000000000000000000000000..ee3755db2e796d8a12aa1c2d0e07d716006c5c14
Binary files /dev/null and b/runs/fashion_trainer_20230919_174723/Training vs. Validation Loss_Training/events.out.tfevents.1695138446.msip-dell.ims.rwth-aachen.de.1108078.1 differ
diff --git a/runs/fashion_trainer_20230919_174723/Training vs. Validation Loss_Validation/events.out.tfevents.1695138446.msip-dell.ims.rwth-aachen.de.1108078.2 b/runs/fashion_trainer_20230919_174723/Training vs. Validation Loss_Validation/events.out.tfevents.1695138446.msip-dell.ims.rwth-aachen.de.1108078.2
new file mode 100644
index 0000000000000000000000000000000000000000..fdb810794137b21a79ee9244b788931a3420cde5
Binary files /dev/null and b/runs/fashion_trainer_20230919_174723/Training vs. Validation Loss_Validation/events.out.tfevents.1695138446.msip-dell.ims.rwth-aachen.de.1108078.2 differ
diff --git a/runs/fashion_trainer_20230919_174723/events.out.tfevents.1695138443.msip-dell.ims.rwth-aachen.de.1108078.0 b/runs/fashion_trainer_20230919_174723/events.out.tfevents.1695138443.msip-dell.ims.rwth-aachen.de.1108078.0
new file mode 100644
index 0000000000000000000000000000000000000000..3bf6123a11d10dc95a0eab556cf67bd263a4ab23
Binary files /dev/null and b/runs/fashion_trainer_20230919_174723/events.out.tfevents.1695138443.msip-dell.ims.rwth-aachen.de.1108078.0 differ
diff --git a/runs/fashion_trainer_20230919_174930/Training vs. Validation Loss_Training/events.out.tfevents.1695138572.msip-dell.ims.rwth-aachen.de.1108078.4 b/runs/fashion_trainer_20230919_174930/Training vs. Validation Loss_Training/events.out.tfevents.1695138572.msip-dell.ims.rwth-aachen.de.1108078.4
new file mode 100644
index 0000000000000000000000000000000000000000..3bc71ee03ae84a22c9f0a98d281b0423323a30d8
Binary files /dev/null and b/runs/fashion_trainer_20230919_174930/Training vs. Validation Loss_Training/events.out.tfevents.1695138572.msip-dell.ims.rwth-aachen.de.1108078.4 differ
diff --git a/runs/fashion_trainer_20230919_174930/Training vs. Validation Loss_Validation/events.out.tfevents.1695138572.msip-dell.ims.rwth-aachen.de.1108078.5 b/runs/fashion_trainer_20230919_174930/Training vs. Validation Loss_Validation/events.out.tfevents.1695138572.msip-dell.ims.rwth-aachen.de.1108078.5
new file mode 100644
index 0000000000000000000000000000000000000000..26006a0d206f09186de9b250ec2eca1a06320a90
Binary files /dev/null and b/runs/fashion_trainer_20230919_174930/Training vs. Validation Loss_Validation/events.out.tfevents.1695138572.msip-dell.ims.rwth-aachen.de.1108078.5 differ
diff --git a/runs/fashion_trainer_20230919_174930/events.out.tfevents.1695138570.msip-dell.ims.rwth-aachen.de.1108078.3 b/runs/fashion_trainer_20230919_174930/events.out.tfevents.1695138570.msip-dell.ims.rwth-aachen.de.1108078.3
new file mode 100644
index 0000000000000000000000000000000000000000..caffce637a7c74d604dd927f85b74f6a01a14ec2
Binary files /dev/null and b/runs/fashion_trainer_20230919_174930/events.out.tfevents.1695138570.msip-dell.ims.rwth-aachen.de.1108078.3 differ
diff --git a/runs/fashion_trainer_20230919_175144/Training vs. Validation Loss_Training/events.out.tfevents.1695138707.msip-dell.ims.rwth-aachen.de.1108078.7 b/runs/fashion_trainer_20230919_175144/Training vs. Validation Loss_Training/events.out.tfevents.1695138707.msip-dell.ims.rwth-aachen.de.1108078.7
new file mode 100644
index 0000000000000000000000000000000000000000..3c7fa1efd1decae136f2e18ce5bab971cf41c58f
Binary files /dev/null and b/runs/fashion_trainer_20230919_175144/Training vs. Validation Loss_Training/events.out.tfevents.1695138707.msip-dell.ims.rwth-aachen.de.1108078.7 differ
diff --git a/runs/fashion_trainer_20230919_175144/Training vs. Validation Loss_Validation/events.out.tfevents.1695138707.msip-dell.ims.rwth-aachen.de.1108078.8 b/runs/fashion_trainer_20230919_175144/Training vs. Validation Loss_Validation/events.out.tfevents.1695138707.msip-dell.ims.rwth-aachen.de.1108078.8
new file mode 100644
index 0000000000000000000000000000000000000000..caae18b40963096dbdabe5c6f59e210eb8760380
Binary files /dev/null and b/runs/fashion_trainer_20230919_175144/Training vs. Validation Loss_Validation/events.out.tfevents.1695138707.msip-dell.ims.rwth-aachen.de.1108078.8 differ
diff --git a/runs/fashion_trainer_20230919_175144/events.out.tfevents.1695138704.msip-dell.ims.rwth-aachen.de.1108078.6 b/runs/fashion_trainer_20230919_175144/events.out.tfevents.1695138704.msip-dell.ims.rwth-aachen.de.1108078.6
new file mode 100644
index 0000000000000000000000000000000000000000..1eae643df04058bb7a65800fd3647ebed12e0f53
Binary files /dev/null and b/runs/fashion_trainer_20230919_175144/events.out.tfevents.1695138704.msip-dell.ims.rwth-aachen.de.1108078.6 differ
diff --git a/runs/fashion_trainer_20230919_175358/Training vs. Validation Loss_Training/events.out.tfevents.1695138841.msip-dell.ims.rwth-aachen.de.1108078.10 b/runs/fashion_trainer_20230919_175358/Training vs. Validation Loss_Training/events.out.tfevents.1695138841.msip-dell.ims.rwth-aachen.de.1108078.10
new file mode 100644
index 0000000000000000000000000000000000000000..200e6467df754b57dc304a00d5e6a5af9db05874
Binary files /dev/null and b/runs/fashion_trainer_20230919_175358/Training vs. Validation Loss_Training/events.out.tfevents.1695138841.msip-dell.ims.rwth-aachen.de.1108078.10 differ
diff --git a/runs/fashion_trainer_20230919_175358/Training vs. Validation Loss_Validation/events.out.tfevents.1695138841.msip-dell.ims.rwth-aachen.de.1108078.11 b/runs/fashion_trainer_20230919_175358/Training vs. Validation Loss_Validation/events.out.tfevents.1695138841.msip-dell.ims.rwth-aachen.de.1108078.11
new file mode 100644
index 0000000000000000000000000000000000000000..cab2bd2b0edd36488e922f9e1c6df8478509a8dd
Binary files /dev/null and b/runs/fashion_trainer_20230919_175358/Training vs. Validation Loss_Validation/events.out.tfevents.1695138841.msip-dell.ims.rwth-aachen.de.1108078.11 differ
diff --git a/runs/fashion_trainer_20230919_175358/events.out.tfevents.1695138838.msip-dell.ims.rwth-aachen.de.1108078.9 b/runs/fashion_trainer_20230919_175358/events.out.tfevents.1695138838.msip-dell.ims.rwth-aachen.de.1108078.9
new file mode 100644
index 0000000000000000000000000000000000000000..c9561f4a9d7ff84aaeffe5c9595c9903cfb3d0c9
Binary files /dev/null and b/runs/fashion_trainer_20230919_175358/events.out.tfevents.1695138838.msip-dell.ims.rwth-aachen.de.1108078.9 differ
diff --git a/runs/fashion_trainer_20230919_175520/Training vs. Validation Loss_Training/events.out.tfevents.1695138923.msip-dell.ims.rwth-aachen.de.1110363.1 b/runs/fashion_trainer_20230919_175520/Training vs. Validation Loss_Training/events.out.tfevents.1695138923.msip-dell.ims.rwth-aachen.de.1110363.1
new file mode 100644
index 0000000000000000000000000000000000000000..d90e57fd15c89dfe67cdabcb71482c74f22c121b
Binary files /dev/null and b/runs/fashion_trainer_20230919_175520/Training vs. Validation Loss_Training/events.out.tfevents.1695138923.msip-dell.ims.rwth-aachen.de.1110363.1 differ
diff --git a/runs/fashion_trainer_20230919_175520/Training vs. Validation Loss_Validation/events.out.tfevents.1695138923.msip-dell.ims.rwth-aachen.de.1110363.2 b/runs/fashion_trainer_20230919_175520/Training vs. Validation Loss_Validation/events.out.tfevents.1695138923.msip-dell.ims.rwth-aachen.de.1110363.2
new file mode 100644
index 0000000000000000000000000000000000000000..a14af765c7b83dd5c6bad797635736b520736435
Binary files /dev/null and b/runs/fashion_trainer_20230919_175520/Training vs. Validation Loss_Validation/events.out.tfevents.1695138923.msip-dell.ims.rwth-aachen.de.1110363.2 differ
diff --git a/runs/fashion_trainer_20230919_175520/events.out.tfevents.1695138920.msip-dell.ims.rwth-aachen.de.1110363.0 b/runs/fashion_trainer_20230919_175520/events.out.tfevents.1695138920.msip-dell.ims.rwth-aachen.de.1110363.0
new file mode 100644
index 0000000000000000000000000000000000000000..0853205badc608d1b3176ae6783d4927965a97bc
Binary files /dev/null and b/runs/fashion_trainer_20230919_175520/events.out.tfevents.1695138920.msip-dell.ims.rwth-aachen.de.1110363.0 differ
diff --git a/runs/fashion_trainer_20230919_175636/Training vs. Validation Loss_Training/events.out.tfevents.1695138999.msip-dell.ims.rwth-aachen.de.1108078.13 b/runs/fashion_trainer_20230919_175636/Training vs. Validation Loss_Training/events.out.tfevents.1695138999.msip-dell.ims.rwth-aachen.de.1108078.13
new file mode 100644
index 0000000000000000000000000000000000000000..9f98fe6638fdd6b0e34c02b68c2233203ac55c46
Binary files /dev/null and b/runs/fashion_trainer_20230919_175636/Training vs. Validation Loss_Training/events.out.tfevents.1695138999.msip-dell.ims.rwth-aachen.de.1108078.13 differ
diff --git a/runs/fashion_trainer_20230919_175636/Training vs. Validation Loss_Validation/events.out.tfevents.1695138999.msip-dell.ims.rwth-aachen.de.1108078.14 b/runs/fashion_trainer_20230919_175636/Training vs. Validation Loss_Validation/events.out.tfevents.1695138999.msip-dell.ims.rwth-aachen.de.1108078.14
new file mode 100644
index 0000000000000000000000000000000000000000..f54872dfebd1b96aabc5e5661b912b7d6fe92af7
Binary files /dev/null and b/runs/fashion_trainer_20230919_175636/Training vs. Validation Loss_Validation/events.out.tfevents.1695138999.msip-dell.ims.rwth-aachen.de.1108078.14 differ
diff --git a/runs/fashion_trainer_20230919_175636/events.out.tfevents.1695138996.msip-dell.ims.rwth-aachen.de.1108078.12 b/runs/fashion_trainer_20230919_175636/events.out.tfevents.1695138996.msip-dell.ims.rwth-aachen.de.1108078.12
new file mode 100644
index 0000000000000000000000000000000000000000..7531bb555c8a14a6db86a74ab8438b84a85f471f
Binary files /dev/null and b/runs/fashion_trainer_20230919_175636/events.out.tfevents.1695138996.msip-dell.ims.rwth-aachen.de.1108078.12 differ
diff --git a/runs/fashion_trainer_20230919_175822/Training vs. Validation Loss_Training/events.out.tfevents.1695139106.msip-dell.ims.rwth-aachen.de.1110363.4 b/runs/fashion_trainer_20230919_175822/Training vs. Validation Loss_Training/events.out.tfevents.1695139106.msip-dell.ims.rwth-aachen.de.1110363.4
new file mode 100644
index 0000000000000000000000000000000000000000..74da414c6659d9342e62552adaf40171808c5b24
Binary files /dev/null and b/runs/fashion_trainer_20230919_175822/Training vs. Validation Loss_Training/events.out.tfevents.1695139106.msip-dell.ims.rwth-aachen.de.1110363.4 differ
diff --git a/runs/fashion_trainer_20230919_175822/Training vs. Validation Loss_Validation/events.out.tfevents.1695139106.msip-dell.ims.rwth-aachen.de.1110363.5 b/runs/fashion_trainer_20230919_175822/Training vs. Validation Loss_Validation/events.out.tfevents.1695139106.msip-dell.ims.rwth-aachen.de.1110363.5
new file mode 100644
index 0000000000000000000000000000000000000000..117280e3f38efb1dd4a8eb6433eedd1f4e1f4d19
Binary files /dev/null and b/runs/fashion_trainer_20230919_175822/Training vs. Validation Loss_Validation/events.out.tfevents.1695139106.msip-dell.ims.rwth-aachen.de.1110363.5 differ
diff --git a/runs/fashion_trainer_20230919_175822/events.out.tfevents.1695139102.msip-dell.ims.rwth-aachen.de.1110363.3 b/runs/fashion_trainer_20230919_175822/events.out.tfevents.1695139102.msip-dell.ims.rwth-aachen.de.1110363.3
new file mode 100644
index 0000000000000000000000000000000000000000..6aa810edffe6c410705b5a71721d7c46cb160021
Binary files /dev/null and b/runs/fashion_trainer_20230919_175822/events.out.tfevents.1695139102.msip-dell.ims.rwth-aachen.de.1110363.3 differ
diff --git a/runs/fashion_trainer_20230919_175943/Training vs. Validation Loss_Training/events.out.tfevents.1695139186.msip-dell.ims.rwth-aachen.de.1108078.16 b/runs/fashion_trainer_20230919_175943/Training vs. Validation Loss_Training/events.out.tfevents.1695139186.msip-dell.ims.rwth-aachen.de.1108078.16
new file mode 100644
index 0000000000000000000000000000000000000000..ad84ea579ecd1f13c4308d809f6a77fc2e533b29
Binary files /dev/null and b/runs/fashion_trainer_20230919_175943/Training vs. Validation Loss_Training/events.out.tfevents.1695139186.msip-dell.ims.rwth-aachen.de.1108078.16 differ
diff --git a/runs/fashion_trainer_20230919_175943/Training vs. Validation Loss_Validation/events.out.tfevents.1695139186.msip-dell.ims.rwth-aachen.de.1108078.17 b/runs/fashion_trainer_20230919_175943/Training vs. Validation Loss_Validation/events.out.tfevents.1695139186.msip-dell.ims.rwth-aachen.de.1108078.17
new file mode 100644
index 0000000000000000000000000000000000000000..b7b8a36a433789718454b77c2b04e9ef2c0ef814
Binary files /dev/null and b/runs/fashion_trainer_20230919_175943/Training vs. Validation Loss_Validation/events.out.tfevents.1695139186.msip-dell.ims.rwth-aachen.de.1108078.17 differ
diff --git a/runs/fashion_trainer_20230919_175943/events.out.tfevents.1695139183.msip-dell.ims.rwth-aachen.de.1108078.15 b/runs/fashion_trainer_20230919_175943/events.out.tfevents.1695139183.msip-dell.ims.rwth-aachen.de.1108078.15
new file mode 100644
index 0000000000000000000000000000000000000000..9f8f86c1ff8795fabb5b1ed51ff9bd406f3b3321
Binary files /dev/null and b/runs/fashion_trainer_20230919_175943/events.out.tfevents.1695139183.msip-dell.ims.rwth-aachen.de.1108078.15 differ
diff --git a/runs/fashion_trainer_20230919_180130/Training vs. Validation Loss_Training/events.out.tfevents.1695139293.msip-dell.ims.rwth-aachen.de.1110363.7 b/runs/fashion_trainer_20230919_180130/Training vs. Validation Loss_Training/events.out.tfevents.1695139293.msip-dell.ims.rwth-aachen.de.1110363.7
new file mode 100644
index 0000000000000000000000000000000000000000..5017f791f81e996c6a99d66134360bf4b615fb6c
Binary files /dev/null and b/runs/fashion_trainer_20230919_180130/Training vs. Validation Loss_Training/events.out.tfevents.1695139293.msip-dell.ims.rwth-aachen.de.1110363.7 differ
diff --git a/runs/fashion_trainer_20230919_180130/Training vs. Validation Loss_Validation/events.out.tfevents.1695139293.msip-dell.ims.rwth-aachen.de.1110363.8 b/runs/fashion_trainer_20230919_180130/Training vs. Validation Loss_Validation/events.out.tfevents.1695139293.msip-dell.ims.rwth-aachen.de.1110363.8
new file mode 100644
index 0000000000000000000000000000000000000000..56ca21cb9d87c498a338b7e78da8d364a77e4b01
Binary files /dev/null and b/runs/fashion_trainer_20230919_180130/Training vs. Validation Loss_Validation/events.out.tfevents.1695139293.msip-dell.ims.rwth-aachen.de.1110363.8 differ
diff --git a/runs/fashion_trainer_20230919_180130/events.out.tfevents.1695139290.msip-dell.ims.rwth-aachen.de.1110363.6 b/runs/fashion_trainer_20230919_180130/events.out.tfevents.1695139290.msip-dell.ims.rwth-aachen.de.1110363.6
new file mode 100644
index 0000000000000000000000000000000000000000..8f146f474c3109fbc23a11ab19823f5b858b1005
Binary files /dev/null and b/runs/fashion_trainer_20230919_180130/events.out.tfevents.1695139290.msip-dell.ims.rwth-aachen.de.1110363.6 differ
diff --git a/runs/fashion_trainer_20230919_180249/Training vs. Validation Loss_Training/events.out.tfevents.1695139372.msip-dell.ims.rwth-aachen.de.1108078.19 b/runs/fashion_trainer_20230919_180249/Training vs. Validation Loss_Training/events.out.tfevents.1695139372.msip-dell.ims.rwth-aachen.de.1108078.19
new file mode 100644
index 0000000000000000000000000000000000000000..b24e7467ffc4cdc56fa80ff10d8fcf110acaa858
Binary files /dev/null and b/runs/fashion_trainer_20230919_180249/Training vs. Validation Loss_Training/events.out.tfevents.1695139372.msip-dell.ims.rwth-aachen.de.1108078.19 differ
diff --git a/runs/fashion_trainer_20230919_180249/Training vs. Validation Loss_Validation/events.out.tfevents.1695139372.msip-dell.ims.rwth-aachen.de.1108078.20 b/runs/fashion_trainer_20230919_180249/Training vs. Validation Loss_Validation/events.out.tfevents.1695139372.msip-dell.ims.rwth-aachen.de.1108078.20
new file mode 100644
index 0000000000000000000000000000000000000000..51f6e714e060c01c623f97526cc1dd1a22c76716
Binary files /dev/null and b/runs/fashion_trainer_20230919_180249/Training vs. Validation Loss_Validation/events.out.tfevents.1695139372.msip-dell.ims.rwth-aachen.de.1108078.20 differ
diff --git a/runs/fashion_trainer_20230919_180249/events.out.tfevents.1695139369.msip-dell.ims.rwth-aachen.de.1108078.18 b/runs/fashion_trainer_20230919_180249/events.out.tfevents.1695139369.msip-dell.ims.rwth-aachen.de.1108078.18
new file mode 100644
index 0000000000000000000000000000000000000000..1ae0698949c30ddee023dd9c4cde240de70d8ba4
Binary files /dev/null and b/runs/fashion_trainer_20230919_180249/events.out.tfevents.1695139369.msip-dell.ims.rwth-aachen.de.1108078.18 differ
diff --git a/runs/fashion_trainer_20230919_180437/Training vs. Validation Loss_Training/events.out.tfevents.1695139481.msip-dell.ims.rwth-aachen.de.1110363.10 b/runs/fashion_trainer_20230919_180437/Training vs. Validation Loss_Training/events.out.tfevents.1695139481.msip-dell.ims.rwth-aachen.de.1110363.10
new file mode 100644
index 0000000000000000000000000000000000000000..cddea7d86612f9405b9a2dec0a971305cff64122
Binary files /dev/null and b/runs/fashion_trainer_20230919_180437/Training vs. Validation Loss_Training/events.out.tfevents.1695139481.msip-dell.ims.rwth-aachen.de.1110363.10 differ
diff --git a/runs/fashion_trainer_20230919_180437/Training vs. Validation Loss_Validation/events.out.tfevents.1695139481.msip-dell.ims.rwth-aachen.de.1110363.11 b/runs/fashion_trainer_20230919_180437/Training vs. Validation Loss_Validation/events.out.tfevents.1695139481.msip-dell.ims.rwth-aachen.de.1110363.11
new file mode 100644
index 0000000000000000000000000000000000000000..73a33ae5354ca5a6a1abb6801aed81823841fc16
Binary files /dev/null and b/runs/fashion_trainer_20230919_180437/Training vs. Validation Loss_Validation/events.out.tfevents.1695139481.msip-dell.ims.rwth-aachen.de.1110363.11 differ
diff --git a/runs/fashion_trainer_20230919_180437/events.out.tfevents.1695139477.msip-dell.ims.rwth-aachen.de.1110363.9 b/runs/fashion_trainer_20230919_180437/events.out.tfevents.1695139477.msip-dell.ims.rwth-aachen.de.1110363.9
new file mode 100644
index 0000000000000000000000000000000000000000..c32c170afe7a72484710c84d4f721105d1107b41
Binary files /dev/null and b/runs/fashion_trainer_20230919_180437/events.out.tfevents.1695139477.msip-dell.ims.rwth-aachen.de.1110363.9 differ
diff --git a/runs/fashion_trainer_20230919_180555/Training vs. Validation Loss_Training/events.out.tfevents.1695139559.msip-dell.ims.rwth-aachen.de.1108078.22 b/runs/fashion_trainer_20230919_180555/Training vs. Validation Loss_Training/events.out.tfevents.1695139559.msip-dell.ims.rwth-aachen.de.1108078.22
new file mode 100644
index 0000000000000000000000000000000000000000..9590841af0a5e08cfa6c34669da116f33db03399
Binary files /dev/null and b/runs/fashion_trainer_20230919_180555/Training vs. Validation Loss_Training/events.out.tfevents.1695139559.msip-dell.ims.rwth-aachen.de.1108078.22 differ
diff --git a/runs/fashion_trainer_20230919_180555/Training vs. Validation Loss_Validation/events.out.tfevents.1695139559.msip-dell.ims.rwth-aachen.de.1108078.23 b/runs/fashion_trainer_20230919_180555/Training vs. Validation Loss_Validation/events.out.tfevents.1695139559.msip-dell.ims.rwth-aachen.de.1108078.23
new file mode 100644
index 0000000000000000000000000000000000000000..9eb475ec638e021ef144d2054b7ac6174835a347
Binary files /dev/null and b/runs/fashion_trainer_20230919_180555/Training vs. Validation Loss_Validation/events.out.tfevents.1695139559.msip-dell.ims.rwth-aachen.de.1108078.23 differ
diff --git a/runs/fashion_trainer_20230919_180555/events.out.tfevents.1695139555.msip-dell.ims.rwth-aachen.de.1108078.21 b/runs/fashion_trainer_20230919_180555/events.out.tfevents.1695139555.msip-dell.ims.rwth-aachen.de.1108078.21
new file mode 100644
index 0000000000000000000000000000000000000000..f94eb8665d5239c79b25a706aed2b35a46e2c95b
Binary files /dev/null and b/runs/fashion_trainer_20230919_180555/events.out.tfevents.1695139555.msip-dell.ims.rwth-aachen.de.1108078.21 differ
diff --git a/runs/fashion_trainer_20230919_180746/Training vs. Validation Loss_Training/events.out.tfevents.1695139670.msip-dell.ims.rwth-aachen.de.1110363.13 b/runs/fashion_trainer_20230919_180746/Training vs. Validation Loss_Training/events.out.tfevents.1695139670.msip-dell.ims.rwth-aachen.de.1110363.13
new file mode 100644
index 0000000000000000000000000000000000000000..fdbb3808d7ca215244e6a947081eb0a9d8e1f048
Binary files /dev/null and b/runs/fashion_trainer_20230919_180746/Training vs. Validation Loss_Training/events.out.tfevents.1695139670.msip-dell.ims.rwth-aachen.de.1110363.13 differ
diff --git a/runs/fashion_trainer_20230919_180746/Training vs. Validation Loss_Validation/events.out.tfevents.1695139670.msip-dell.ims.rwth-aachen.de.1110363.14 b/runs/fashion_trainer_20230919_180746/Training vs. Validation Loss_Validation/events.out.tfevents.1695139670.msip-dell.ims.rwth-aachen.de.1110363.14
new file mode 100644
index 0000000000000000000000000000000000000000..63af43f92c559f5bdc90fc0af9c6765ad59efd7a
Binary files /dev/null and b/runs/fashion_trainer_20230919_180746/Training vs. Validation Loss_Validation/events.out.tfevents.1695139670.msip-dell.ims.rwth-aachen.de.1110363.14 differ
diff --git a/runs/fashion_trainer_20230919_180746/events.out.tfevents.1695139666.msip-dell.ims.rwth-aachen.de.1110363.12 b/runs/fashion_trainer_20230919_180746/events.out.tfevents.1695139666.msip-dell.ims.rwth-aachen.de.1110363.12
new file mode 100644
index 0000000000000000000000000000000000000000..fb91ba827931922cdffbc887a1c1c342fa233c85
Binary files /dev/null and b/runs/fashion_trainer_20230919_180746/events.out.tfevents.1695139666.msip-dell.ims.rwth-aachen.de.1110363.12 differ
diff --git a/runs/fashion_trainer_20230919_180906/Training vs. Validation Loss_Training/events.out.tfevents.1695139750.msip-dell.ims.rwth-aachen.de.1108078.25 b/runs/fashion_trainer_20230919_180906/Training vs. Validation Loss_Training/events.out.tfevents.1695139750.msip-dell.ims.rwth-aachen.de.1108078.25
new file mode 100644
index 0000000000000000000000000000000000000000..b1badb3e08cd3cb05bdfcc60754bc6af199331ad
Binary files /dev/null and b/runs/fashion_trainer_20230919_180906/Training vs. Validation Loss_Training/events.out.tfevents.1695139750.msip-dell.ims.rwth-aachen.de.1108078.25 differ
diff --git a/runs/fashion_trainer_20230919_180906/Training vs. Validation Loss_Validation/events.out.tfevents.1695139750.msip-dell.ims.rwth-aachen.de.1108078.26 b/runs/fashion_trainer_20230919_180906/Training vs. Validation Loss_Validation/events.out.tfevents.1695139750.msip-dell.ims.rwth-aachen.de.1108078.26
new file mode 100644
index 0000000000000000000000000000000000000000..abc66e8204ae7471df0bca24195af535af85772d
Binary files /dev/null and b/runs/fashion_trainer_20230919_180906/Training vs. Validation Loss_Validation/events.out.tfevents.1695139750.msip-dell.ims.rwth-aachen.de.1108078.26 differ
diff --git a/runs/fashion_trainer_20230919_180906/events.out.tfevents.1695139746.msip-dell.ims.rwth-aachen.de.1108078.24 b/runs/fashion_trainer_20230919_180906/events.out.tfevents.1695139746.msip-dell.ims.rwth-aachen.de.1108078.24
new file mode 100644
index 0000000000000000000000000000000000000000..a644f46a5297dc1d62d3220b86c6526c89cfa3f0
Binary files /dev/null and b/runs/fashion_trainer_20230919_180906/events.out.tfevents.1695139746.msip-dell.ims.rwth-aachen.de.1108078.24 differ
diff --git a/runs/fashion_trainer_20230919_181053/Training vs. Validation Loss_Training/events.out.tfevents.1695139857.msip-dell.ims.rwth-aachen.de.1110363.16 b/runs/fashion_trainer_20230919_181053/Training vs. Validation Loss_Training/events.out.tfevents.1695139857.msip-dell.ims.rwth-aachen.de.1110363.16
new file mode 100644
index 0000000000000000000000000000000000000000..f82f6e22638379abd32cf34179d5382f70f75096
Binary files /dev/null and b/runs/fashion_trainer_20230919_181053/Training vs. Validation Loss_Training/events.out.tfevents.1695139857.msip-dell.ims.rwth-aachen.de.1110363.16 differ
diff --git a/runs/fashion_trainer_20230919_181053/Training vs. Validation Loss_Validation/events.out.tfevents.1695139857.msip-dell.ims.rwth-aachen.de.1110363.17 b/runs/fashion_trainer_20230919_181053/Training vs. Validation Loss_Validation/events.out.tfevents.1695139857.msip-dell.ims.rwth-aachen.de.1110363.17
new file mode 100644
index 0000000000000000000000000000000000000000..dba8440dac8be37d97ede9d1c5f072ab63ea7d32
Binary files /dev/null and b/runs/fashion_trainer_20230919_181053/Training vs. Validation Loss_Validation/events.out.tfevents.1695139857.msip-dell.ims.rwth-aachen.de.1110363.17 differ
diff --git a/runs/fashion_trainer_20230919_181053/events.out.tfevents.1695139853.msip-dell.ims.rwth-aachen.de.1110363.15 b/runs/fashion_trainer_20230919_181053/events.out.tfevents.1695139853.msip-dell.ims.rwth-aachen.de.1110363.15
new file mode 100644
index 0000000000000000000000000000000000000000..b53c46cfe7876d0a1bad21d83c532319602810e9
Binary files /dev/null and b/runs/fashion_trainer_20230919_181053/events.out.tfevents.1695139853.msip-dell.ims.rwth-aachen.de.1110363.15 differ
diff --git a/runs/fashion_trainer_20230919_181212/Training vs. Validation Loss_Training/events.out.tfevents.1695139936.msip-dell.ims.rwth-aachen.de.1108078.28 b/runs/fashion_trainer_20230919_181212/Training vs. Validation Loss_Training/events.out.tfevents.1695139936.msip-dell.ims.rwth-aachen.de.1108078.28
new file mode 100644
index 0000000000000000000000000000000000000000..cd7af4cab1e74252cae061b39e456c8985c82676
Binary files /dev/null and b/runs/fashion_trainer_20230919_181212/Training vs. Validation Loss_Training/events.out.tfevents.1695139936.msip-dell.ims.rwth-aachen.de.1108078.28 differ
diff --git a/runs/fashion_trainer_20230919_181212/Training vs. Validation Loss_Validation/events.out.tfevents.1695139936.msip-dell.ims.rwth-aachen.de.1108078.29 b/runs/fashion_trainer_20230919_181212/Training vs. Validation Loss_Validation/events.out.tfevents.1695139936.msip-dell.ims.rwth-aachen.de.1108078.29
new file mode 100644
index 0000000000000000000000000000000000000000..043656decb52e3bda87f7ddab1453568e426c881
Binary files /dev/null and b/runs/fashion_trainer_20230919_181212/Training vs. Validation Loss_Validation/events.out.tfevents.1695139936.msip-dell.ims.rwth-aachen.de.1108078.29 differ
diff --git a/runs/fashion_trainer_20230919_181212/events.out.tfevents.1695139932.msip-dell.ims.rwth-aachen.de.1108078.27 b/runs/fashion_trainer_20230919_181212/events.out.tfevents.1695139932.msip-dell.ims.rwth-aachen.de.1108078.27
new file mode 100644
index 0000000000000000000000000000000000000000..27af32777df38d540af14f69e852ca765160ff03
Binary files /dev/null and b/runs/fashion_trainer_20230919_181212/events.out.tfevents.1695139932.msip-dell.ims.rwth-aachen.de.1108078.27 differ
diff --git a/runs/fashion_trainer_20230919_181401/Training vs. Validation Loss_Training/events.out.tfevents.1695140045.msip-dell.ims.rwth-aachen.de.1110363.19 b/runs/fashion_trainer_20230919_181401/Training vs. Validation Loss_Training/events.out.tfevents.1695140045.msip-dell.ims.rwth-aachen.de.1110363.19
new file mode 100644
index 0000000000000000000000000000000000000000..f34048501face8632713f62bbadae6f9d3267731
Binary files /dev/null and b/runs/fashion_trainer_20230919_181401/Training vs. Validation Loss_Training/events.out.tfevents.1695140045.msip-dell.ims.rwth-aachen.de.1110363.19 differ
diff --git a/runs/fashion_trainer_20230919_181401/Training vs. Validation Loss_Validation/events.out.tfevents.1695140045.msip-dell.ims.rwth-aachen.de.1110363.20 b/runs/fashion_trainer_20230919_181401/Training vs. Validation Loss_Validation/events.out.tfevents.1695140045.msip-dell.ims.rwth-aachen.de.1110363.20
new file mode 100644
index 0000000000000000000000000000000000000000..271e914779f30bf3c9004c54834c04ae1fe053ec
Binary files /dev/null and b/runs/fashion_trainer_20230919_181401/Training vs. Validation Loss_Validation/events.out.tfevents.1695140045.msip-dell.ims.rwth-aachen.de.1110363.20 differ
diff --git a/runs/fashion_trainer_20230919_181401/events.out.tfevents.1695140041.msip-dell.ims.rwth-aachen.de.1110363.18 b/runs/fashion_trainer_20230919_181401/events.out.tfevents.1695140041.msip-dell.ims.rwth-aachen.de.1110363.18
new file mode 100644
index 0000000000000000000000000000000000000000..c7978a32fa791cc4688390f4ddaa27334d05431c
Binary files /dev/null and b/runs/fashion_trainer_20230919_181401/events.out.tfevents.1695140041.msip-dell.ims.rwth-aachen.de.1110363.18 differ
diff --git a/runs/fashion_trainer_20230919_181630/Training vs. Validation Loss_Training/events.out.tfevents.1695140192.msip-dell.ims.rwth-aachen.de.1110363.22 b/runs/fashion_trainer_20230919_181630/Training vs. Validation Loss_Training/events.out.tfevents.1695140192.msip-dell.ims.rwth-aachen.de.1110363.22
new file mode 100644
index 0000000000000000000000000000000000000000..359ffbcbfddbbed282aaacfad020841c79b75fb8
Binary files /dev/null and b/runs/fashion_trainer_20230919_181630/Training vs. Validation Loss_Training/events.out.tfevents.1695140192.msip-dell.ims.rwth-aachen.de.1110363.22 differ
diff --git a/runs/fashion_trainer_20230919_181630/Training vs. Validation Loss_Validation/events.out.tfevents.1695140192.msip-dell.ims.rwth-aachen.de.1110363.23 b/runs/fashion_trainer_20230919_181630/Training vs. Validation Loss_Validation/events.out.tfevents.1695140192.msip-dell.ims.rwth-aachen.de.1110363.23
new file mode 100644
index 0000000000000000000000000000000000000000..5de5d921b31e2510026416d4bd67dacb35faeb05
Binary files /dev/null and b/runs/fashion_trainer_20230919_181630/Training vs. Validation Loss_Validation/events.out.tfevents.1695140192.msip-dell.ims.rwth-aachen.de.1110363.23 differ
diff --git a/runs/fashion_trainer_20230919_181630/events.out.tfevents.1695140190.msip-dell.ims.rwth-aachen.de.1110363.21 b/runs/fashion_trainer_20230919_181630/events.out.tfevents.1695140190.msip-dell.ims.rwth-aachen.de.1110363.21
new file mode 100644
index 0000000000000000000000000000000000000000..ff1b6027a7ed4f7e49076b17ab93e02fd4bdc471
Binary files /dev/null and b/runs/fashion_trainer_20230919_181630/events.out.tfevents.1695140190.msip-dell.ims.rwth-aachen.de.1110363.21 differ
diff --git a/runs/fashion_trainer_20230919_181841/Training vs. Validation Loss_Training/events.out.tfevents.1695140323.msip-dell.ims.rwth-aachen.de.1110363.25 b/runs/fashion_trainer_20230919_181841/Training vs. Validation Loss_Training/events.out.tfevents.1695140323.msip-dell.ims.rwth-aachen.de.1110363.25
new file mode 100644
index 0000000000000000000000000000000000000000..e72bbc27390f22231f818fc10e1db0522e735142
Binary files /dev/null and b/runs/fashion_trainer_20230919_181841/Training vs. Validation Loss_Training/events.out.tfevents.1695140323.msip-dell.ims.rwth-aachen.de.1110363.25 differ
diff --git a/runs/fashion_trainer_20230919_181841/Training vs. Validation Loss_Validation/events.out.tfevents.1695140323.msip-dell.ims.rwth-aachen.de.1110363.26 b/runs/fashion_trainer_20230919_181841/Training vs. Validation Loss_Validation/events.out.tfevents.1695140323.msip-dell.ims.rwth-aachen.de.1110363.26
new file mode 100644
index 0000000000000000000000000000000000000000..317042ed57cc37b971c3039d228c74e4eee63407
Binary files /dev/null and b/runs/fashion_trainer_20230919_181841/Training vs. Validation Loss_Validation/events.out.tfevents.1695140323.msip-dell.ims.rwth-aachen.de.1110363.26 differ
diff --git a/runs/fashion_trainer_20230919_181841/events.out.tfevents.1695140321.msip-dell.ims.rwth-aachen.de.1110363.24 b/runs/fashion_trainer_20230919_181841/events.out.tfevents.1695140321.msip-dell.ims.rwth-aachen.de.1110363.24
new file mode 100644
index 0000000000000000000000000000000000000000..c469b7dbeb9958928cb35241acfd885a0b949b13
Binary files /dev/null and b/runs/fashion_trainer_20230919_181841/events.out.tfevents.1695140321.msip-dell.ims.rwth-aachen.de.1110363.24 differ
diff --git a/runs/fashion_trainer_20230919_182053/Training vs. Validation Loss_Training/events.out.tfevents.1695140455.msip-dell.ims.rwth-aachen.de.1110363.28 b/runs/fashion_trainer_20230919_182053/Training vs. Validation Loss_Training/events.out.tfevents.1695140455.msip-dell.ims.rwth-aachen.de.1110363.28
new file mode 100644
index 0000000000000000000000000000000000000000..300d5e1dd333dec0d3743263f82c972de9aa0853
Binary files /dev/null and b/runs/fashion_trainer_20230919_182053/Training vs. Validation Loss_Training/events.out.tfevents.1695140455.msip-dell.ims.rwth-aachen.de.1110363.28 differ
diff --git a/runs/fashion_trainer_20230919_182053/Training vs. Validation Loss_Validation/events.out.tfevents.1695140455.msip-dell.ims.rwth-aachen.de.1110363.29 b/runs/fashion_trainer_20230919_182053/Training vs. Validation Loss_Validation/events.out.tfevents.1695140455.msip-dell.ims.rwth-aachen.de.1110363.29
new file mode 100644
index 0000000000000000000000000000000000000000..94e367dba55d3c25a3b454c94077307e10e533f8
Binary files /dev/null and b/runs/fashion_trainer_20230919_182053/Training vs. Validation Loss_Validation/events.out.tfevents.1695140455.msip-dell.ims.rwth-aachen.de.1110363.29 differ
diff --git a/runs/fashion_trainer_20230919_182053/events.out.tfevents.1695140453.msip-dell.ims.rwth-aachen.de.1110363.27 b/runs/fashion_trainer_20230919_182053/events.out.tfevents.1695140453.msip-dell.ims.rwth-aachen.de.1110363.27
new file mode 100644
index 0000000000000000000000000000000000000000..7101586d534927fb78d954fb277c65c4dff49e2d
Binary files /dev/null and b/runs/fashion_trainer_20230919_182053/events.out.tfevents.1695140453.msip-dell.ims.rwth-aachen.de.1110363.27 differ
diff --git a/runs/fashion_trainer_20230919_183307/Training vs. Validation Loss_Training/events.out.tfevents.1695141190.msip-dell.ims.rwth-aachen.de.1121135.1 b/runs/fashion_trainer_20230919_183307/Training vs. Validation Loss_Training/events.out.tfevents.1695141190.msip-dell.ims.rwth-aachen.de.1121135.1
new file mode 100644
index 0000000000000000000000000000000000000000..78f83ff1fc340b3bf4bf4fd3e6ab1476b397f643
Binary files /dev/null and b/runs/fashion_trainer_20230919_183307/Training vs. Validation Loss_Training/events.out.tfevents.1695141190.msip-dell.ims.rwth-aachen.de.1121135.1 differ
diff --git a/runs/fashion_trainer_20230919_183307/Training vs. Validation Loss_Validation/events.out.tfevents.1695141190.msip-dell.ims.rwth-aachen.de.1121135.2 b/runs/fashion_trainer_20230919_183307/Training vs. Validation Loss_Validation/events.out.tfevents.1695141190.msip-dell.ims.rwth-aachen.de.1121135.2
new file mode 100644
index 0000000000000000000000000000000000000000..b1b48c1d42e34ad64ee58a59eda7e2c6179eaf4a
Binary files /dev/null and b/runs/fashion_trainer_20230919_183307/Training vs. Validation Loss_Validation/events.out.tfevents.1695141190.msip-dell.ims.rwth-aachen.de.1121135.2 differ
diff --git a/runs/fashion_trainer_20230919_183307/events.out.tfevents.1695141187.msip-dell.ims.rwth-aachen.de.1121135.0 b/runs/fashion_trainer_20230919_183307/events.out.tfevents.1695141187.msip-dell.ims.rwth-aachen.de.1121135.0
new file mode 100644
index 0000000000000000000000000000000000000000..b9f57fbb71be00665365af2faf6e1f0925e97544
Binary files /dev/null and b/runs/fashion_trainer_20230919_183307/events.out.tfevents.1695141187.msip-dell.ims.rwth-aachen.de.1121135.0 differ
diff --git a/runs/fashion_trainer_20230919_183517/Training vs. Validation Loss_Training/events.out.tfevents.1695141319.msip-dell.ims.rwth-aachen.de.1121135.4 b/runs/fashion_trainer_20230919_183517/Training vs. Validation Loss_Training/events.out.tfevents.1695141319.msip-dell.ims.rwth-aachen.de.1121135.4
new file mode 100644
index 0000000000000000000000000000000000000000..8e476ad927ba89e8d1482dbb936d2a125692b80f
Binary files /dev/null and b/runs/fashion_trainer_20230919_183517/Training vs. Validation Loss_Training/events.out.tfevents.1695141319.msip-dell.ims.rwth-aachen.de.1121135.4 differ
diff --git a/runs/fashion_trainer_20230919_183517/Training vs. Validation Loss_Validation/events.out.tfevents.1695141319.msip-dell.ims.rwth-aachen.de.1121135.5 b/runs/fashion_trainer_20230919_183517/Training vs. Validation Loss_Validation/events.out.tfevents.1695141319.msip-dell.ims.rwth-aachen.de.1121135.5
new file mode 100644
index 0000000000000000000000000000000000000000..fca841dd8323fe8b16ff20317e9f69aaf9cbe1de
Binary files /dev/null and b/runs/fashion_trainer_20230919_183517/Training vs. Validation Loss_Validation/events.out.tfevents.1695141319.msip-dell.ims.rwth-aachen.de.1121135.5 differ
diff --git a/runs/fashion_trainer_20230919_183517/events.out.tfevents.1695141317.msip-dell.ims.rwth-aachen.de.1121135.3 b/runs/fashion_trainer_20230919_183517/events.out.tfevents.1695141317.msip-dell.ims.rwth-aachen.de.1121135.3
new file mode 100644
index 0000000000000000000000000000000000000000..870d01aae00750f9721253b3f0b7c4be167c2e5a
Binary files /dev/null and b/runs/fashion_trainer_20230919_183517/events.out.tfevents.1695141317.msip-dell.ims.rwth-aachen.de.1121135.3 differ
diff --git a/runs/fashion_trainer_20230919_183732/Training vs. Validation Loss_Training/events.out.tfevents.1695141454.msip-dell.ims.rwth-aachen.de.1121135.7 b/runs/fashion_trainer_20230919_183732/Training vs. Validation Loss_Training/events.out.tfevents.1695141454.msip-dell.ims.rwth-aachen.de.1121135.7
new file mode 100644
index 0000000000000000000000000000000000000000..0e381ff274a182c2fcf692f6f2a509a67bd4761a
Binary files /dev/null and b/runs/fashion_trainer_20230919_183732/Training vs. Validation Loss_Training/events.out.tfevents.1695141454.msip-dell.ims.rwth-aachen.de.1121135.7 differ
diff --git a/runs/fashion_trainer_20230919_183732/Training vs. Validation Loss_Validation/events.out.tfevents.1695141454.msip-dell.ims.rwth-aachen.de.1121135.8 b/runs/fashion_trainer_20230919_183732/Training vs. Validation Loss_Validation/events.out.tfevents.1695141454.msip-dell.ims.rwth-aachen.de.1121135.8
new file mode 100644
index 0000000000000000000000000000000000000000..67ca1c8b3b173888ab516291be93b80351268974
Binary files /dev/null and b/runs/fashion_trainer_20230919_183732/Training vs. Validation Loss_Validation/events.out.tfevents.1695141454.msip-dell.ims.rwth-aachen.de.1121135.8 differ
diff --git a/runs/fashion_trainer_20230919_183732/events.out.tfevents.1695141452.msip-dell.ims.rwth-aachen.de.1121135.6 b/runs/fashion_trainer_20230919_183732/events.out.tfevents.1695141452.msip-dell.ims.rwth-aachen.de.1121135.6
new file mode 100644
index 0000000000000000000000000000000000000000..dc461d7df20a5e57589247c367abc5c468e13b93
Binary files /dev/null and b/runs/fashion_trainer_20230919_183732/events.out.tfevents.1695141452.msip-dell.ims.rwth-aachen.de.1121135.6 differ
diff --git a/runs/fashion_trainer_20230919_183948/Training vs. Validation Loss_Training/events.out.tfevents.1695141590.msip-dell.ims.rwth-aachen.de.1121135.10 b/runs/fashion_trainer_20230919_183948/Training vs. Validation Loss_Training/events.out.tfevents.1695141590.msip-dell.ims.rwth-aachen.de.1121135.10
new file mode 100644
index 0000000000000000000000000000000000000000..baee4d55be3f41ca641d44baf84b8642705218eb
Binary files /dev/null and b/runs/fashion_trainer_20230919_183948/Training vs. Validation Loss_Training/events.out.tfevents.1695141590.msip-dell.ims.rwth-aachen.de.1121135.10 differ
diff --git a/runs/fashion_trainer_20230919_183948/Training vs. Validation Loss_Validation/events.out.tfevents.1695141590.msip-dell.ims.rwth-aachen.de.1121135.11 b/runs/fashion_trainer_20230919_183948/Training vs. Validation Loss_Validation/events.out.tfevents.1695141590.msip-dell.ims.rwth-aachen.de.1121135.11
new file mode 100644
index 0000000000000000000000000000000000000000..14f3999307405d949bbbcec9d6095382a9afa6f5
Binary files /dev/null and b/runs/fashion_trainer_20230919_183948/Training vs. Validation Loss_Validation/events.out.tfevents.1695141590.msip-dell.ims.rwth-aachen.de.1121135.11 differ
diff --git a/runs/fashion_trainer_20230919_183948/events.out.tfevents.1695141588.msip-dell.ims.rwth-aachen.de.1121135.9 b/runs/fashion_trainer_20230919_183948/events.out.tfevents.1695141588.msip-dell.ims.rwth-aachen.de.1121135.9
new file mode 100644
index 0000000000000000000000000000000000000000..538ac45d6a1a292c972728019a0f9080ef58cccc
Binary files /dev/null and b/runs/fashion_trainer_20230919_183948/events.out.tfevents.1695141588.msip-dell.ims.rwth-aachen.de.1121135.9 differ
diff --git a/runs/fashion_trainer_20230919_184204/Training vs. Validation Loss_Training/events.out.tfevents.1695141727.msip-dell.ims.rwth-aachen.de.1121135.13 b/runs/fashion_trainer_20230919_184204/Training vs. Validation Loss_Training/events.out.tfevents.1695141727.msip-dell.ims.rwth-aachen.de.1121135.13
new file mode 100644
index 0000000000000000000000000000000000000000..cc54b756d9e3a7f97e32ef254f2a330cfb0b8d9b
Binary files /dev/null and b/runs/fashion_trainer_20230919_184204/Training vs. Validation Loss_Training/events.out.tfevents.1695141727.msip-dell.ims.rwth-aachen.de.1121135.13 differ
diff --git a/runs/fashion_trainer_20230919_184204/Training vs. Validation Loss_Validation/events.out.tfevents.1695141727.msip-dell.ims.rwth-aachen.de.1121135.14 b/runs/fashion_trainer_20230919_184204/Training vs. Validation Loss_Validation/events.out.tfevents.1695141727.msip-dell.ims.rwth-aachen.de.1121135.14
new file mode 100644
index 0000000000000000000000000000000000000000..4550f68cfc57fbde64b93d8e4c83c29f07bdfb4a
Binary files /dev/null and b/runs/fashion_trainer_20230919_184204/Training vs. Validation Loss_Validation/events.out.tfevents.1695141727.msip-dell.ims.rwth-aachen.de.1121135.14 differ
diff --git a/runs/fashion_trainer_20230919_184204/events.out.tfevents.1695141724.msip-dell.ims.rwth-aachen.de.1121135.12 b/runs/fashion_trainer_20230919_184204/events.out.tfevents.1695141724.msip-dell.ims.rwth-aachen.de.1121135.12
new file mode 100644
index 0000000000000000000000000000000000000000..20b88cfd4bdbf56dbf4acd7d77ee44fed595c2cd
Binary files /dev/null and b/runs/fashion_trainer_20230919_184204/events.out.tfevents.1695141724.msip-dell.ims.rwth-aachen.de.1121135.12 differ
diff --git a/runs/fashion_trainer_20230919_184417/Training vs. Validation Loss_Training/events.out.tfevents.1695141860.msip-dell.ims.rwth-aachen.de.1121135.16 b/runs/fashion_trainer_20230919_184417/Training vs. Validation Loss_Training/events.out.tfevents.1695141860.msip-dell.ims.rwth-aachen.de.1121135.16
new file mode 100644
index 0000000000000000000000000000000000000000..c154963f2d328995cb1a65f899748a87f1db4297
Binary files /dev/null and b/runs/fashion_trainer_20230919_184417/Training vs. Validation Loss_Training/events.out.tfevents.1695141860.msip-dell.ims.rwth-aachen.de.1121135.16 differ
diff --git a/runs/fashion_trainer_20230919_184417/Training vs. Validation Loss_Validation/events.out.tfevents.1695141860.msip-dell.ims.rwth-aachen.de.1121135.17 b/runs/fashion_trainer_20230919_184417/Training vs. Validation Loss_Validation/events.out.tfevents.1695141860.msip-dell.ims.rwth-aachen.de.1121135.17
new file mode 100644
index 0000000000000000000000000000000000000000..b09dac1e65f2e0ffc88149c87db311335c353dde
Binary files /dev/null and b/runs/fashion_trainer_20230919_184417/Training vs. Validation Loss_Validation/events.out.tfevents.1695141860.msip-dell.ims.rwth-aachen.de.1121135.17 differ
diff --git a/runs/fashion_trainer_20230919_184417/events.out.tfevents.1695141857.msip-dell.ims.rwth-aachen.de.1121135.15 b/runs/fashion_trainer_20230919_184417/events.out.tfevents.1695141857.msip-dell.ims.rwth-aachen.de.1121135.15
new file mode 100644
index 0000000000000000000000000000000000000000..dcec00c773184385ec880d1a70548f5066618f0a
Binary files /dev/null and b/runs/fashion_trainer_20230919_184417/events.out.tfevents.1695141857.msip-dell.ims.rwth-aachen.de.1121135.15 differ
diff --git a/runs/fashion_trainer_20230919_184629/Training vs. Validation Loss_Training/events.out.tfevents.1695141992.msip-dell.ims.rwth-aachen.de.1121135.19 b/runs/fashion_trainer_20230919_184629/Training vs. Validation Loss_Training/events.out.tfevents.1695141992.msip-dell.ims.rwth-aachen.de.1121135.19
new file mode 100644
index 0000000000000000000000000000000000000000..160d28b29a2af2028bf5ad4aedf9308b43e71729
Binary files /dev/null and b/runs/fashion_trainer_20230919_184629/Training vs. Validation Loss_Training/events.out.tfevents.1695141992.msip-dell.ims.rwth-aachen.de.1121135.19 differ
diff --git a/runs/fashion_trainer_20230919_184629/Training vs. Validation Loss_Validation/events.out.tfevents.1695141992.msip-dell.ims.rwth-aachen.de.1121135.20 b/runs/fashion_trainer_20230919_184629/Training vs. Validation Loss_Validation/events.out.tfevents.1695141992.msip-dell.ims.rwth-aachen.de.1121135.20
new file mode 100644
index 0000000000000000000000000000000000000000..10d0515f3c20f526f16cacc68b78ed6a5741b23b
Binary files /dev/null and b/runs/fashion_trainer_20230919_184629/Training vs. Validation Loss_Validation/events.out.tfevents.1695141992.msip-dell.ims.rwth-aachen.de.1121135.20 differ
diff --git a/runs/fashion_trainer_20230919_184629/events.out.tfevents.1695141989.msip-dell.ims.rwth-aachen.de.1121135.18 b/runs/fashion_trainer_20230919_184629/events.out.tfevents.1695141989.msip-dell.ims.rwth-aachen.de.1121135.18
new file mode 100644
index 0000000000000000000000000000000000000000..91b5611554b53c8598d3371a94b220faac2ed442
Binary files /dev/null and b/runs/fashion_trainer_20230919_184629/events.out.tfevents.1695141989.msip-dell.ims.rwth-aachen.de.1121135.18 differ
diff --git a/runs/fashion_trainer_20230919_184843/Training vs. Validation Loss_Training/events.out.tfevents.1695142125.msip-dell.ims.rwth-aachen.de.1121135.22 b/runs/fashion_trainer_20230919_184843/Training vs. Validation Loss_Training/events.out.tfevents.1695142125.msip-dell.ims.rwth-aachen.de.1121135.22
new file mode 100644
index 0000000000000000000000000000000000000000..ed1e4658ee8808db343bb9d372f4a004f4af7091
Binary files /dev/null and b/runs/fashion_trainer_20230919_184843/Training vs. Validation Loss_Training/events.out.tfevents.1695142125.msip-dell.ims.rwth-aachen.de.1121135.22 differ
diff --git a/runs/fashion_trainer_20230919_184843/Training vs. Validation Loss_Validation/events.out.tfevents.1695142125.msip-dell.ims.rwth-aachen.de.1121135.23 b/runs/fashion_trainer_20230919_184843/Training vs. Validation Loss_Validation/events.out.tfevents.1695142125.msip-dell.ims.rwth-aachen.de.1121135.23
new file mode 100644
index 0000000000000000000000000000000000000000..47da2081c8b6b819df2e2898638ccff5459db2bb
Binary files /dev/null and b/runs/fashion_trainer_20230919_184843/Training vs. Validation Loss_Validation/events.out.tfevents.1695142125.msip-dell.ims.rwth-aachen.de.1121135.23 differ
diff --git a/runs/fashion_trainer_20230919_184843/events.out.tfevents.1695142123.msip-dell.ims.rwth-aachen.de.1121135.21 b/runs/fashion_trainer_20230919_184843/events.out.tfevents.1695142123.msip-dell.ims.rwth-aachen.de.1121135.21
new file mode 100644
index 0000000000000000000000000000000000000000..2ca5f7d4773ecf34fac18e69db36b837faca14fa
Binary files /dev/null and b/runs/fashion_trainer_20230919_184843/events.out.tfevents.1695142123.msip-dell.ims.rwth-aachen.de.1121135.21 differ
diff --git a/runs/fashion_trainer_20230919_185055/Training vs. Validation Loss_Training/events.out.tfevents.1695142257.msip-dell.ims.rwth-aachen.de.1121135.25 b/runs/fashion_trainer_20230919_185055/Training vs. Validation Loss_Training/events.out.tfevents.1695142257.msip-dell.ims.rwth-aachen.de.1121135.25
new file mode 100644
index 0000000000000000000000000000000000000000..e80eca15bd82cb89d25c6817708b290c495d0784
Binary files /dev/null and b/runs/fashion_trainer_20230919_185055/Training vs. Validation Loss_Training/events.out.tfevents.1695142257.msip-dell.ims.rwth-aachen.de.1121135.25 differ
diff --git a/runs/fashion_trainer_20230919_185055/Training vs. Validation Loss_Validation/events.out.tfevents.1695142257.msip-dell.ims.rwth-aachen.de.1121135.26 b/runs/fashion_trainer_20230919_185055/Training vs. Validation Loss_Validation/events.out.tfevents.1695142257.msip-dell.ims.rwth-aachen.de.1121135.26
new file mode 100644
index 0000000000000000000000000000000000000000..cfe13dea7888e865c732e4e92ef78a0fe6b5267d
Binary files /dev/null and b/runs/fashion_trainer_20230919_185055/Training vs. Validation Loss_Validation/events.out.tfevents.1695142257.msip-dell.ims.rwth-aachen.de.1121135.26 differ
diff --git a/runs/fashion_trainer_20230919_185055/events.out.tfevents.1695142255.msip-dell.ims.rwth-aachen.de.1121135.24 b/runs/fashion_trainer_20230919_185055/events.out.tfevents.1695142255.msip-dell.ims.rwth-aachen.de.1121135.24
new file mode 100644
index 0000000000000000000000000000000000000000..5cada1e7afb33b3338d5df88df07558e2466b49c
Binary files /dev/null and b/runs/fashion_trainer_20230919_185055/events.out.tfevents.1695142255.msip-dell.ims.rwth-aachen.de.1121135.24 differ
diff --git a/runs/fashion_trainer_20230919_185309/Training vs. Validation Loss_Training/events.out.tfevents.1695142392.msip-dell.ims.rwth-aachen.de.1121135.28 b/runs/fashion_trainer_20230919_185309/Training vs. Validation Loss_Training/events.out.tfevents.1695142392.msip-dell.ims.rwth-aachen.de.1121135.28
new file mode 100644
index 0000000000000000000000000000000000000000..4834dd1d1e6fd46fb234ec46c01fd4b6c92ff171
Binary files /dev/null and b/runs/fashion_trainer_20230919_185309/Training vs. Validation Loss_Training/events.out.tfevents.1695142392.msip-dell.ims.rwth-aachen.de.1121135.28 differ
diff --git a/runs/fashion_trainer_20230919_185309/Training vs. Validation Loss_Validation/events.out.tfevents.1695142392.msip-dell.ims.rwth-aachen.de.1121135.29 b/runs/fashion_trainer_20230919_185309/Training vs. Validation Loss_Validation/events.out.tfevents.1695142392.msip-dell.ims.rwth-aachen.de.1121135.29
new file mode 100644
index 0000000000000000000000000000000000000000..cb8a688189576cb4ab5bc81d36e2b6f045ab5dc6
Binary files /dev/null and b/runs/fashion_trainer_20230919_185309/Training vs. Validation Loss_Validation/events.out.tfevents.1695142392.msip-dell.ims.rwth-aachen.de.1121135.29 differ
diff --git a/runs/fashion_trainer_20230919_185309/events.out.tfevents.1695142389.msip-dell.ims.rwth-aachen.de.1121135.27 b/runs/fashion_trainer_20230919_185309/events.out.tfevents.1695142389.msip-dell.ims.rwth-aachen.de.1121135.27
new file mode 100644
index 0000000000000000000000000000000000000000..82667d3a70350dfd5c9a400e315498a0f8366c80
Binary files /dev/null and b/runs/fashion_trainer_20230919_185309/events.out.tfevents.1695142389.msip-dell.ims.rwth-aachen.de.1121135.27 differ
diff --git a/runs/fashion_trainer_20230920_074419/Training vs. Validation Loss_Training/events.out.tfevents.1695188662.msip-dell.ims.rwth-aachen.de.1216262.1 b/runs/fashion_trainer_20230920_074419/Training vs. Validation Loss_Training/events.out.tfevents.1695188662.msip-dell.ims.rwth-aachen.de.1216262.1
new file mode 100644
index 0000000000000000000000000000000000000000..cd29d45bdf4a6c81b3ceb494575e9db3acd1c91f
Binary files /dev/null and b/runs/fashion_trainer_20230920_074419/Training vs. Validation Loss_Training/events.out.tfevents.1695188662.msip-dell.ims.rwth-aachen.de.1216262.1 differ
diff --git a/runs/fashion_trainer_20230920_074419/Training vs. Validation Loss_Validation/events.out.tfevents.1695188662.msip-dell.ims.rwth-aachen.de.1216262.2 b/runs/fashion_trainer_20230920_074419/Training vs. Validation Loss_Validation/events.out.tfevents.1695188662.msip-dell.ims.rwth-aachen.de.1216262.2
new file mode 100644
index 0000000000000000000000000000000000000000..a98dc53a9135339e54aa804044eace61f3b7fd06
Binary files /dev/null and b/runs/fashion_trainer_20230920_074419/Training vs. Validation Loss_Validation/events.out.tfevents.1695188662.msip-dell.ims.rwth-aachen.de.1216262.2 differ
diff --git a/runs/fashion_trainer_20230920_074419/events.out.tfevents.1695188659.msip-dell.ims.rwth-aachen.de.1216262.0 b/runs/fashion_trainer_20230920_074419/events.out.tfevents.1695188659.msip-dell.ims.rwth-aachen.de.1216262.0
new file mode 100644
index 0000000000000000000000000000000000000000..11005e45a4d3c5a274bce51aab5771f4eae1f561
Binary files /dev/null and b/runs/fashion_trainer_20230920_074419/events.out.tfevents.1695188659.msip-dell.ims.rwth-aachen.de.1216262.0 differ
diff --git a/runs/fashion_trainer_20230920_074448/Training vs. Validation Loss_Training/events.out.tfevents.1695188690.msip-dell.ims.rwth-aachen.de.1216521.1 b/runs/fashion_trainer_20230920_074448/Training vs. Validation Loss_Training/events.out.tfevents.1695188690.msip-dell.ims.rwth-aachen.de.1216521.1
new file mode 100644
index 0000000000000000000000000000000000000000..453e1ca57e1924cda5c9d6b11727888eac9b71d7
Binary files /dev/null and b/runs/fashion_trainer_20230920_074448/Training vs. Validation Loss_Training/events.out.tfevents.1695188690.msip-dell.ims.rwth-aachen.de.1216521.1 differ
diff --git a/runs/fashion_trainer_20230920_074448/Training vs. Validation Loss_Validation/events.out.tfevents.1695188690.msip-dell.ims.rwth-aachen.de.1216521.2 b/runs/fashion_trainer_20230920_074448/Training vs. Validation Loss_Validation/events.out.tfevents.1695188690.msip-dell.ims.rwth-aachen.de.1216521.2
new file mode 100644
index 0000000000000000000000000000000000000000..87708acd6866a7a557acca8a7e8ac1013b36ade5
Binary files /dev/null and b/runs/fashion_trainer_20230920_074448/Training vs. Validation Loss_Validation/events.out.tfevents.1695188690.msip-dell.ims.rwth-aachen.de.1216521.2 differ
diff --git a/runs/fashion_trainer_20230920_074448/events.out.tfevents.1695188688.msip-dell.ims.rwth-aachen.de.1216521.0 b/runs/fashion_trainer_20230920_074448/events.out.tfevents.1695188688.msip-dell.ims.rwth-aachen.de.1216521.0
new file mode 100644
index 0000000000000000000000000000000000000000..f11b1b3dcfbfa54e6e0543d1b127e5ec23ae4e00
Binary files /dev/null and b/runs/fashion_trainer_20230920_074448/events.out.tfevents.1695188688.msip-dell.ims.rwth-aachen.de.1216521.0 differ
diff --git a/runs/fashion_trainer_20230920_074937/Training vs. Validation Loss_Training/events.out.tfevents.1695188980.msip-dell.ims.rwth-aachen.de.1217196.1 b/runs/fashion_trainer_20230920_074937/Training vs. Validation Loss_Training/events.out.tfevents.1695188980.msip-dell.ims.rwth-aachen.de.1217196.1
new file mode 100644
index 0000000000000000000000000000000000000000..95392671b98478f59178c573052892c3dbf53056
Binary files /dev/null and b/runs/fashion_trainer_20230920_074937/Training vs. Validation Loss_Training/events.out.tfevents.1695188980.msip-dell.ims.rwth-aachen.de.1217196.1 differ
diff --git a/runs/fashion_trainer_20230920_074937/Training vs. Validation Loss_Training/events.out.tfevents.1695188980.msip-dell.ims.rwth-aachen.de.1217197.1 b/runs/fashion_trainer_20230920_074937/Training vs. Validation Loss_Training/events.out.tfevents.1695188980.msip-dell.ims.rwth-aachen.de.1217197.1
new file mode 100644
index 0000000000000000000000000000000000000000..9873715b9b9ad93d2392c230d63582dca067561d
Binary files /dev/null and b/runs/fashion_trainer_20230920_074937/Training vs. Validation Loss_Training/events.out.tfevents.1695188980.msip-dell.ims.rwth-aachen.de.1217197.1 differ
diff --git a/runs/fashion_trainer_20230920_074937/Training vs. Validation Loss_Validation/events.out.tfevents.1695188980.msip-dell.ims.rwth-aachen.de.1217196.2 b/runs/fashion_trainer_20230920_074937/Training vs. Validation Loss_Validation/events.out.tfevents.1695188980.msip-dell.ims.rwth-aachen.de.1217196.2
new file mode 100644
index 0000000000000000000000000000000000000000..f386200ee4fa6ffd345e9f79b57ff4c11c00b70d
Binary files /dev/null and b/runs/fashion_trainer_20230920_074937/Training vs. Validation Loss_Validation/events.out.tfevents.1695188980.msip-dell.ims.rwth-aachen.de.1217196.2 differ
diff --git a/runs/fashion_trainer_20230920_074937/Training vs. Validation Loss_Validation/events.out.tfevents.1695188980.msip-dell.ims.rwth-aachen.de.1217197.2 b/runs/fashion_trainer_20230920_074937/Training vs. Validation Loss_Validation/events.out.tfevents.1695188980.msip-dell.ims.rwth-aachen.de.1217197.2
new file mode 100644
index 0000000000000000000000000000000000000000..d3cf089c0e3d37f2a1b6f0a98cedee83bbb02348
Binary files /dev/null and b/runs/fashion_trainer_20230920_074937/Training vs. Validation Loss_Validation/events.out.tfevents.1695188980.msip-dell.ims.rwth-aachen.de.1217197.2 differ
diff --git a/runs/fashion_trainer_20230920_074937/events.out.tfevents.1695188977.msip-dell.ims.rwth-aachen.de.1217196.0 b/runs/fashion_trainer_20230920_074937/events.out.tfevents.1695188977.msip-dell.ims.rwth-aachen.de.1217196.0
new file mode 100644
index 0000000000000000000000000000000000000000..866581401bc93f2a99c9b0b88a83ebb8fd469e5d
Binary files /dev/null and b/runs/fashion_trainer_20230920_074937/events.out.tfevents.1695188977.msip-dell.ims.rwth-aachen.de.1217196.0 differ
diff --git a/runs/fashion_trainer_20230920_074937/events.out.tfevents.1695188977.msip-dell.ims.rwth-aachen.de.1217197.0 b/runs/fashion_trainer_20230920_074937/events.out.tfevents.1695188977.msip-dell.ims.rwth-aachen.de.1217197.0
new file mode 100644
index 0000000000000000000000000000000000000000..758107cc7f66368a29c43752094b6e1f41ef047f
Binary files /dev/null and b/runs/fashion_trainer_20230920_074937/events.out.tfevents.1695188977.msip-dell.ims.rwth-aachen.de.1217197.0 differ
diff --git a/runs/fashion_trainer_20230920_075159/Training vs. Validation Loss_Training/events.out.tfevents.1695189121.msip-dell.ims.rwth-aachen.de.1217196.4 b/runs/fashion_trainer_20230920_075159/Training vs. Validation Loss_Training/events.out.tfevents.1695189121.msip-dell.ims.rwth-aachen.de.1217196.4
new file mode 100644
index 0000000000000000000000000000000000000000..8131d9c2b5db09a94ad3fa56a000098eb2c4be27
Binary files /dev/null and b/runs/fashion_trainer_20230920_075159/Training vs. Validation Loss_Training/events.out.tfevents.1695189121.msip-dell.ims.rwth-aachen.de.1217196.4 differ
diff --git a/runs/fashion_trainer_20230920_075159/Training vs. Validation Loss_Validation/events.out.tfevents.1695189121.msip-dell.ims.rwth-aachen.de.1217196.5 b/runs/fashion_trainer_20230920_075159/Training vs. Validation Loss_Validation/events.out.tfevents.1695189121.msip-dell.ims.rwth-aachen.de.1217196.5
new file mode 100644
index 0000000000000000000000000000000000000000..e3f8f02c5cde7c4018117afcb8070399fa3cefaf
Binary files /dev/null and b/runs/fashion_trainer_20230920_075159/Training vs. Validation Loss_Validation/events.out.tfevents.1695189121.msip-dell.ims.rwth-aachen.de.1217196.5 differ
diff --git a/runs/fashion_trainer_20230920_075159/events.out.tfevents.1695189119.msip-dell.ims.rwth-aachen.de.1217196.3 b/runs/fashion_trainer_20230920_075159/events.out.tfevents.1695189119.msip-dell.ims.rwth-aachen.de.1217196.3
new file mode 100644
index 0000000000000000000000000000000000000000..4eba0c7c6dd57e90eff305b7139b19d1d6d19b10
Binary files /dev/null and b/runs/fashion_trainer_20230920_075159/events.out.tfevents.1695189119.msip-dell.ims.rwth-aachen.de.1217196.3 differ
diff --git a/runs/fashion_trainer_20230920_075202/Training vs. Validation Loss_Training/events.out.tfevents.1695189124.msip-dell.ims.rwth-aachen.de.1217197.4 b/runs/fashion_trainer_20230920_075202/Training vs. Validation Loss_Training/events.out.tfevents.1695189124.msip-dell.ims.rwth-aachen.de.1217197.4
new file mode 100644
index 0000000000000000000000000000000000000000..dfab6329b39ad75c7de8af0ba93f71dd31d0328d
Binary files /dev/null and b/runs/fashion_trainer_20230920_075202/Training vs. Validation Loss_Training/events.out.tfevents.1695189124.msip-dell.ims.rwth-aachen.de.1217197.4 differ
diff --git a/runs/fashion_trainer_20230920_075202/Training vs. Validation Loss_Validation/events.out.tfevents.1695189124.msip-dell.ims.rwth-aachen.de.1217197.5 b/runs/fashion_trainer_20230920_075202/Training vs. Validation Loss_Validation/events.out.tfevents.1695189124.msip-dell.ims.rwth-aachen.de.1217197.5
new file mode 100644
index 0000000000000000000000000000000000000000..042ea613b9e946350bd8ef5a53fbe0bc4c16ef33
Binary files /dev/null and b/runs/fashion_trainer_20230920_075202/Training vs. Validation Loss_Validation/events.out.tfevents.1695189124.msip-dell.ims.rwth-aachen.de.1217197.5 differ
diff --git a/runs/fashion_trainer_20230920_075202/events.out.tfevents.1695189122.msip-dell.ims.rwth-aachen.de.1217197.3 b/runs/fashion_trainer_20230920_075202/events.out.tfevents.1695189122.msip-dell.ims.rwth-aachen.de.1217197.3
new file mode 100644
index 0000000000000000000000000000000000000000..18acd445bba0c77b3efbddfeeaab24069827ec8b
Binary files /dev/null and b/runs/fashion_trainer_20230920_075202/events.out.tfevents.1695189122.msip-dell.ims.rwth-aachen.de.1217197.3 differ
diff --git a/runs/fashion_trainer_20230920_075422/Training vs. Validation Loss_Training/events.out.tfevents.1695189265.msip-dell.ims.rwth-aachen.de.1217197.7 b/runs/fashion_trainer_20230920_075422/Training vs. Validation Loss_Training/events.out.tfevents.1695189265.msip-dell.ims.rwth-aachen.de.1217197.7
new file mode 100644
index 0000000000000000000000000000000000000000..ffc9c6e0dd9fef4e5dac4d8b7a4b6b666c2e9c37
Binary files /dev/null and b/runs/fashion_trainer_20230920_075422/Training vs. Validation Loss_Training/events.out.tfevents.1695189265.msip-dell.ims.rwth-aachen.de.1217197.7 differ
diff --git a/runs/fashion_trainer_20230920_075422/Training vs. Validation Loss_Validation/events.out.tfevents.1695189265.msip-dell.ims.rwth-aachen.de.1217197.8 b/runs/fashion_trainer_20230920_075422/Training vs. Validation Loss_Validation/events.out.tfevents.1695189265.msip-dell.ims.rwth-aachen.de.1217197.8
new file mode 100644
index 0000000000000000000000000000000000000000..f6f8132e30cb7b39b773720af4ee018801f7006a
Binary files /dev/null and b/runs/fashion_trainer_20230920_075422/Training vs. Validation Loss_Validation/events.out.tfevents.1695189265.msip-dell.ims.rwth-aachen.de.1217197.8 differ
diff --git a/runs/fashion_trainer_20230920_075422/events.out.tfevents.1695189262.msip-dell.ims.rwth-aachen.de.1217197.6 b/runs/fashion_trainer_20230920_075422/events.out.tfevents.1695189262.msip-dell.ims.rwth-aachen.de.1217197.6
new file mode 100644
index 0000000000000000000000000000000000000000..e8b80f2915b60ebd191afefd205df9ef4530cb7b
Binary files /dev/null and b/runs/fashion_trainer_20230920_075422/events.out.tfevents.1695189262.msip-dell.ims.rwth-aachen.de.1217197.6 differ
diff --git a/runs/fashion_trainer_20230920_075425/Training vs. Validation Loss_Training/events.out.tfevents.1695189268.msip-dell.ims.rwth-aachen.de.1217196.7 b/runs/fashion_trainer_20230920_075425/Training vs. Validation Loss_Training/events.out.tfevents.1695189268.msip-dell.ims.rwth-aachen.de.1217196.7
new file mode 100644
index 0000000000000000000000000000000000000000..f96f219aae21d3c638938695c1457a5d6b8a73c2
Binary files /dev/null and b/runs/fashion_trainer_20230920_075425/Training vs. Validation Loss_Training/events.out.tfevents.1695189268.msip-dell.ims.rwth-aachen.de.1217196.7 differ
diff --git a/runs/fashion_trainer_20230920_075425/Training vs. Validation Loss_Validation/events.out.tfevents.1695189268.msip-dell.ims.rwth-aachen.de.1217196.8 b/runs/fashion_trainer_20230920_075425/Training vs. Validation Loss_Validation/events.out.tfevents.1695189268.msip-dell.ims.rwth-aachen.de.1217196.8
new file mode 100644
index 0000000000000000000000000000000000000000..0a68a0bffecd6f29123a14c699d8ad05344dcd98
Binary files /dev/null and b/runs/fashion_trainer_20230920_075425/Training vs. Validation Loss_Validation/events.out.tfevents.1695189268.msip-dell.ims.rwth-aachen.de.1217196.8 differ
diff --git a/runs/fashion_trainer_20230920_075425/events.out.tfevents.1695189265.msip-dell.ims.rwth-aachen.de.1217196.6 b/runs/fashion_trainer_20230920_075425/events.out.tfevents.1695189265.msip-dell.ims.rwth-aachen.de.1217196.6
new file mode 100644
index 0000000000000000000000000000000000000000..a3c4f00467ab3024c28c8c4fba0a77297fed422f
Binary files /dev/null and b/runs/fashion_trainer_20230920_075425/events.out.tfevents.1695189265.msip-dell.ims.rwth-aachen.de.1217196.6 differ
diff --git a/runs/fashion_trainer_20230920_075647/Training vs. Validation Loss_Training/events.out.tfevents.1695189410.msip-dell.ims.rwth-aachen.de.1217197.10 b/runs/fashion_trainer_20230920_075647/Training vs. Validation Loss_Training/events.out.tfevents.1695189410.msip-dell.ims.rwth-aachen.de.1217197.10
new file mode 100644
index 0000000000000000000000000000000000000000..2953d44ce5770e84d2de5b03eb0a4de2d0d50a21
Binary files /dev/null and b/runs/fashion_trainer_20230920_075647/Training vs. Validation Loss_Training/events.out.tfevents.1695189410.msip-dell.ims.rwth-aachen.de.1217197.10 differ
diff --git a/runs/fashion_trainer_20230920_075647/Training vs. Validation Loss_Validation/events.out.tfevents.1695189410.msip-dell.ims.rwth-aachen.de.1217197.11 b/runs/fashion_trainer_20230920_075647/Training vs. Validation Loss_Validation/events.out.tfevents.1695189410.msip-dell.ims.rwth-aachen.de.1217197.11
new file mode 100644
index 0000000000000000000000000000000000000000..0a0dbd374affd7d27ae3b22fd4583fc7b1213a75
Binary files /dev/null and b/runs/fashion_trainer_20230920_075647/Training vs. Validation Loss_Validation/events.out.tfevents.1695189410.msip-dell.ims.rwth-aachen.de.1217197.11 differ
diff --git a/runs/fashion_trainer_20230920_075647/events.out.tfevents.1695189407.msip-dell.ims.rwth-aachen.de.1217197.9 b/runs/fashion_trainer_20230920_075647/events.out.tfevents.1695189407.msip-dell.ims.rwth-aachen.de.1217197.9
new file mode 100644
index 0000000000000000000000000000000000000000..ca7ac43a886116b5bda621d6f5e5377815f826c0
Binary files /dev/null and b/runs/fashion_trainer_20230920_075647/events.out.tfevents.1695189407.msip-dell.ims.rwth-aachen.de.1217197.9 differ
diff --git a/runs/fashion_trainer_20230920_075655/Training vs. Validation Loss_Training/events.out.tfevents.1695189417.msip-dell.ims.rwth-aachen.de.1217196.10 b/runs/fashion_trainer_20230920_075655/Training vs. Validation Loss_Training/events.out.tfevents.1695189417.msip-dell.ims.rwth-aachen.de.1217196.10
new file mode 100644
index 0000000000000000000000000000000000000000..686f5a8a102b8826cabd1538f1aa2ec7625b3420
Binary files /dev/null and b/runs/fashion_trainer_20230920_075655/Training vs. Validation Loss_Training/events.out.tfevents.1695189417.msip-dell.ims.rwth-aachen.de.1217196.10 differ
diff --git a/runs/fashion_trainer_20230920_075655/Training vs. Validation Loss_Validation/events.out.tfevents.1695189417.msip-dell.ims.rwth-aachen.de.1217196.11 b/runs/fashion_trainer_20230920_075655/Training vs. Validation Loss_Validation/events.out.tfevents.1695189417.msip-dell.ims.rwth-aachen.de.1217196.11
new file mode 100644
index 0000000000000000000000000000000000000000..dfb6ebc02580687b93e5baf1cb201f9e81c580a4
Binary files /dev/null and b/runs/fashion_trainer_20230920_075655/Training vs. Validation Loss_Validation/events.out.tfevents.1695189417.msip-dell.ims.rwth-aachen.de.1217196.11 differ
diff --git a/runs/fashion_trainer_20230920_075655/events.out.tfevents.1695189415.msip-dell.ims.rwth-aachen.de.1217196.9 b/runs/fashion_trainer_20230920_075655/events.out.tfevents.1695189415.msip-dell.ims.rwth-aachen.de.1217196.9
new file mode 100644
index 0000000000000000000000000000000000000000..0fdb5a837c952bf2d52f35785882ea44b796a3d0
Binary files /dev/null and b/runs/fashion_trainer_20230920_075655/events.out.tfevents.1695189415.msip-dell.ims.rwth-aachen.de.1217196.9 differ
diff --git a/runs/fashion_trainer_20230920_075912/Training vs. Validation Loss_Training/events.out.tfevents.1695189555.msip-dell.ims.rwth-aachen.de.1217197.13 b/runs/fashion_trainer_20230920_075912/Training vs. Validation Loss_Training/events.out.tfevents.1695189555.msip-dell.ims.rwth-aachen.de.1217197.13
new file mode 100644
index 0000000000000000000000000000000000000000..2cfefda8f882990b6aa913d3f10a825bcbd59648
Binary files /dev/null and b/runs/fashion_trainer_20230920_075912/Training vs. Validation Loss_Training/events.out.tfevents.1695189555.msip-dell.ims.rwth-aachen.de.1217197.13 differ
diff --git a/runs/fashion_trainer_20230920_075912/Training vs. Validation Loss_Validation/events.out.tfevents.1695189555.msip-dell.ims.rwth-aachen.de.1217197.14 b/runs/fashion_trainer_20230920_075912/Training vs. Validation Loss_Validation/events.out.tfevents.1695189555.msip-dell.ims.rwth-aachen.de.1217197.14
new file mode 100644
index 0000000000000000000000000000000000000000..36044b933b440d6f00dc1ccdf995982a29a296ed
Binary files /dev/null and b/runs/fashion_trainer_20230920_075912/Training vs. Validation Loss_Validation/events.out.tfevents.1695189555.msip-dell.ims.rwth-aachen.de.1217197.14 differ
diff --git a/runs/fashion_trainer_20230920_075912/events.out.tfevents.1695189552.msip-dell.ims.rwth-aachen.de.1217197.12 b/runs/fashion_trainer_20230920_075912/events.out.tfevents.1695189552.msip-dell.ims.rwth-aachen.de.1217197.12
new file mode 100644
index 0000000000000000000000000000000000000000..ff1b82edb28c454abd78e9e93bb6e1c670071e41
Binary files /dev/null and b/runs/fashion_trainer_20230920_075912/events.out.tfevents.1695189552.msip-dell.ims.rwth-aachen.de.1217197.12 differ
diff --git a/runs/fashion_trainer_20230920_075923/Training vs. Validation Loss_Training/events.out.tfevents.1695189566.msip-dell.ims.rwth-aachen.de.1217196.13 b/runs/fashion_trainer_20230920_075923/Training vs. Validation Loss_Training/events.out.tfevents.1695189566.msip-dell.ims.rwth-aachen.de.1217196.13
new file mode 100644
index 0000000000000000000000000000000000000000..43c65cb5e05a0c42cd3fc4be98c2260b779ac5c1
Binary files /dev/null and b/runs/fashion_trainer_20230920_075923/Training vs. Validation Loss_Training/events.out.tfevents.1695189566.msip-dell.ims.rwth-aachen.de.1217196.13 differ
diff --git a/runs/fashion_trainer_20230920_075923/Training vs. Validation Loss_Validation/events.out.tfevents.1695189566.msip-dell.ims.rwth-aachen.de.1217196.14 b/runs/fashion_trainer_20230920_075923/Training vs. Validation Loss_Validation/events.out.tfevents.1695189566.msip-dell.ims.rwth-aachen.de.1217196.14
new file mode 100644
index 0000000000000000000000000000000000000000..91fed8b26b6cc23425e4c2bdffaf6ecfd236e8db
Binary files /dev/null and b/runs/fashion_trainer_20230920_075923/Training vs. Validation Loss_Validation/events.out.tfevents.1695189566.msip-dell.ims.rwth-aachen.de.1217196.14 differ
diff --git a/runs/fashion_trainer_20230920_075923/events.out.tfevents.1695189563.msip-dell.ims.rwth-aachen.de.1217196.12 b/runs/fashion_trainer_20230920_075923/events.out.tfevents.1695189563.msip-dell.ims.rwth-aachen.de.1217196.12
new file mode 100644
index 0000000000000000000000000000000000000000..0d93066a882e9ec4a810efeb63d14d053931b0ca
Binary files /dev/null and b/runs/fashion_trainer_20230920_075923/events.out.tfevents.1695189563.msip-dell.ims.rwth-aachen.de.1217196.12 differ
diff --git a/runs/fashion_trainer_20230920_080135/Training vs. Validation Loss_Training/events.out.tfevents.1695189698.msip-dell.ims.rwth-aachen.de.1217197.16 b/runs/fashion_trainer_20230920_080135/Training vs. Validation Loss_Training/events.out.tfevents.1695189698.msip-dell.ims.rwth-aachen.de.1217197.16
new file mode 100644
index 0000000000000000000000000000000000000000..ba7f3fe15b07a33dfcbfdd6d2a78512f406a5b1a
Binary files /dev/null and b/runs/fashion_trainer_20230920_080135/Training vs. Validation Loss_Training/events.out.tfevents.1695189698.msip-dell.ims.rwth-aachen.de.1217197.16 differ
diff --git a/runs/fashion_trainer_20230920_080135/Training vs. Validation Loss_Validation/events.out.tfevents.1695189698.msip-dell.ims.rwth-aachen.de.1217197.17 b/runs/fashion_trainer_20230920_080135/Training vs. Validation Loss_Validation/events.out.tfevents.1695189698.msip-dell.ims.rwth-aachen.de.1217197.17
new file mode 100644
index 0000000000000000000000000000000000000000..b9e5122c9c2aa5b8a72bcd7cfb3c7d2cf707e0b9
Binary files /dev/null and b/runs/fashion_trainer_20230920_080135/Training vs. Validation Loss_Validation/events.out.tfevents.1695189698.msip-dell.ims.rwth-aachen.de.1217197.17 differ
diff --git a/runs/fashion_trainer_20230920_080135/events.out.tfevents.1695189695.msip-dell.ims.rwth-aachen.de.1217197.15 b/runs/fashion_trainer_20230920_080135/events.out.tfevents.1695189695.msip-dell.ims.rwth-aachen.de.1217197.15
new file mode 100644
index 0000000000000000000000000000000000000000..35e849737bd4288ab98e6e984aa4d42922b6c081
Binary files /dev/null and b/runs/fashion_trainer_20230920_080135/events.out.tfevents.1695189695.msip-dell.ims.rwth-aachen.de.1217197.15 differ
diff --git a/runs/fashion_trainer_20230920_080149/Training vs. Validation Loss_Training/events.out.tfevents.1695189711.msip-dell.ims.rwth-aachen.de.1217196.16 b/runs/fashion_trainer_20230920_080149/Training vs. Validation Loss_Training/events.out.tfevents.1695189711.msip-dell.ims.rwth-aachen.de.1217196.16
new file mode 100644
index 0000000000000000000000000000000000000000..8ed4cbc24071a5b148a4adeda8cdf7d26032ec4e
Binary files /dev/null and b/runs/fashion_trainer_20230920_080149/Training vs. Validation Loss_Training/events.out.tfevents.1695189711.msip-dell.ims.rwth-aachen.de.1217196.16 differ
diff --git a/runs/fashion_trainer_20230920_080149/Training vs. Validation Loss_Validation/events.out.tfevents.1695189711.msip-dell.ims.rwth-aachen.de.1217196.17 b/runs/fashion_trainer_20230920_080149/Training vs. Validation Loss_Validation/events.out.tfevents.1695189711.msip-dell.ims.rwth-aachen.de.1217196.17
new file mode 100644
index 0000000000000000000000000000000000000000..475d7cada9873ba81317ef71d90e2e106503aac8
Binary files /dev/null and b/runs/fashion_trainer_20230920_080149/Training vs. Validation Loss_Validation/events.out.tfevents.1695189711.msip-dell.ims.rwth-aachen.de.1217196.17 differ
diff --git a/runs/fashion_trainer_20230920_080149/events.out.tfevents.1695189709.msip-dell.ims.rwth-aachen.de.1217196.15 b/runs/fashion_trainer_20230920_080149/events.out.tfevents.1695189709.msip-dell.ims.rwth-aachen.de.1217196.15
new file mode 100644
index 0000000000000000000000000000000000000000..311f8071a0680df9e3c0a59e1a23cf13f71e0dae
Binary files /dev/null and b/runs/fashion_trainer_20230920_080149/events.out.tfevents.1695189709.msip-dell.ims.rwth-aachen.de.1217196.15 differ
diff --git a/runs/fashion_trainer_20230920_080403/Training vs. Validation Loss_Training/events.out.tfevents.1695189845.msip-dell.ims.rwth-aachen.de.1217197.19 b/runs/fashion_trainer_20230920_080403/Training vs. Validation Loss_Training/events.out.tfevents.1695189845.msip-dell.ims.rwth-aachen.de.1217197.19
new file mode 100644
index 0000000000000000000000000000000000000000..7a861e21cb72cc81c68a48a705b6731a4554ac70
Binary files /dev/null and b/runs/fashion_trainer_20230920_080403/Training vs. Validation Loss_Training/events.out.tfevents.1695189845.msip-dell.ims.rwth-aachen.de.1217197.19 differ
diff --git a/runs/fashion_trainer_20230920_080403/Training vs. Validation Loss_Validation/events.out.tfevents.1695189845.msip-dell.ims.rwth-aachen.de.1217197.20 b/runs/fashion_trainer_20230920_080403/Training vs. Validation Loss_Validation/events.out.tfevents.1695189845.msip-dell.ims.rwth-aachen.de.1217197.20
new file mode 100644
index 0000000000000000000000000000000000000000..86c0eda566e4a0098ca356629c5fc16a6a8d5836
Binary files /dev/null and b/runs/fashion_trainer_20230920_080403/Training vs. Validation Loss_Validation/events.out.tfevents.1695189845.msip-dell.ims.rwth-aachen.de.1217197.20 differ
diff --git a/runs/fashion_trainer_20230920_080403/events.out.tfevents.1695189843.msip-dell.ims.rwth-aachen.de.1217197.18 b/runs/fashion_trainer_20230920_080403/events.out.tfevents.1695189843.msip-dell.ims.rwth-aachen.de.1217197.18
new file mode 100644
index 0000000000000000000000000000000000000000..1db3e04c1fbf99a2e1651404fa6bbc82715a0321
Binary files /dev/null and b/runs/fashion_trainer_20230920_080403/events.out.tfevents.1695189843.msip-dell.ims.rwth-aachen.de.1217197.18 differ
diff --git a/runs/fashion_trainer_20230920_080410/Training vs. Validation Loss_Training/events.out.tfevents.1695189853.msip-dell.ims.rwth-aachen.de.1217196.19 b/runs/fashion_trainer_20230920_080410/Training vs. Validation Loss_Training/events.out.tfevents.1695189853.msip-dell.ims.rwth-aachen.de.1217196.19
new file mode 100644
index 0000000000000000000000000000000000000000..84ab77ce81248a54a536664cec0c341588003575
Binary files /dev/null and b/runs/fashion_trainer_20230920_080410/Training vs. Validation Loss_Training/events.out.tfevents.1695189853.msip-dell.ims.rwth-aachen.de.1217196.19 differ
diff --git a/runs/fashion_trainer_20230920_080410/Training vs. Validation Loss_Validation/events.out.tfevents.1695189853.msip-dell.ims.rwth-aachen.de.1217196.20 b/runs/fashion_trainer_20230920_080410/Training vs. Validation Loss_Validation/events.out.tfevents.1695189853.msip-dell.ims.rwth-aachen.de.1217196.20
new file mode 100644
index 0000000000000000000000000000000000000000..3cd54f0c4d0b57e1f96e300cfcae8c8ba6ace937
Binary files /dev/null and b/runs/fashion_trainer_20230920_080410/Training vs. Validation Loss_Validation/events.out.tfevents.1695189853.msip-dell.ims.rwth-aachen.de.1217196.20 differ
diff --git a/runs/fashion_trainer_20230920_080410/events.out.tfevents.1695189850.msip-dell.ims.rwth-aachen.de.1217196.18 b/runs/fashion_trainer_20230920_080410/events.out.tfevents.1695189850.msip-dell.ims.rwth-aachen.de.1217196.18
new file mode 100644
index 0000000000000000000000000000000000000000..67adeceadd3d6f3c29943b4ee5f5c99b86f7965a
Binary files /dev/null and b/runs/fashion_trainer_20230920_080410/events.out.tfevents.1695189850.msip-dell.ims.rwth-aachen.de.1217196.18 differ
diff --git a/runs/fashion_trainer_20230920_080627/Training vs. Validation Loss_Training/events.out.tfevents.1695189990.msip-dell.ims.rwth-aachen.de.1217197.22 b/runs/fashion_trainer_20230920_080627/Training vs. Validation Loss_Training/events.out.tfevents.1695189990.msip-dell.ims.rwth-aachen.de.1217197.22
new file mode 100644
index 0000000000000000000000000000000000000000..87b89e414f7acc745324fdbe2fda41102aa30166
Binary files /dev/null and b/runs/fashion_trainer_20230920_080627/Training vs. Validation Loss_Training/events.out.tfevents.1695189990.msip-dell.ims.rwth-aachen.de.1217197.22 differ
diff --git a/runs/fashion_trainer_20230920_080627/Training vs. Validation Loss_Validation/events.out.tfevents.1695189990.msip-dell.ims.rwth-aachen.de.1217197.23 b/runs/fashion_trainer_20230920_080627/Training vs. Validation Loss_Validation/events.out.tfevents.1695189990.msip-dell.ims.rwth-aachen.de.1217197.23
new file mode 100644
index 0000000000000000000000000000000000000000..e086319829123ab3c216c52edcb0dab16a8c4cfa
Binary files /dev/null and b/runs/fashion_trainer_20230920_080627/Training vs. Validation Loss_Validation/events.out.tfevents.1695189990.msip-dell.ims.rwth-aachen.de.1217197.23 differ
diff --git a/runs/fashion_trainer_20230920_080627/events.out.tfevents.1695189987.msip-dell.ims.rwth-aachen.de.1217197.21 b/runs/fashion_trainer_20230920_080627/events.out.tfevents.1695189987.msip-dell.ims.rwth-aachen.de.1217197.21
new file mode 100644
index 0000000000000000000000000000000000000000..b930b38d9068c450533ae16622231b0a51a4fc1a
Binary files /dev/null and b/runs/fashion_trainer_20230920_080627/events.out.tfevents.1695189987.msip-dell.ims.rwth-aachen.de.1217197.21 differ
diff --git a/runs/fashion_trainer_20230920_080635/Training vs. Validation Loss_Training/events.out.tfevents.1695189998.msip-dell.ims.rwth-aachen.de.1217196.22 b/runs/fashion_trainer_20230920_080635/Training vs. Validation Loss_Training/events.out.tfevents.1695189998.msip-dell.ims.rwth-aachen.de.1217196.22
new file mode 100644
index 0000000000000000000000000000000000000000..d4cc310c918730391008f9ce82c9d5d29c65fc68
Binary files /dev/null and b/runs/fashion_trainer_20230920_080635/Training vs. Validation Loss_Training/events.out.tfevents.1695189998.msip-dell.ims.rwth-aachen.de.1217196.22 differ
diff --git a/runs/fashion_trainer_20230920_080635/Training vs. Validation Loss_Validation/events.out.tfevents.1695189998.msip-dell.ims.rwth-aachen.de.1217196.23 b/runs/fashion_trainer_20230920_080635/Training vs. Validation Loss_Validation/events.out.tfevents.1695189998.msip-dell.ims.rwth-aachen.de.1217196.23
new file mode 100644
index 0000000000000000000000000000000000000000..7afa38b0790aa5c51cc8876835cd266a8dcf4061
Binary files /dev/null and b/runs/fashion_trainer_20230920_080635/Training vs. Validation Loss_Validation/events.out.tfevents.1695189998.msip-dell.ims.rwth-aachen.de.1217196.23 differ
diff --git a/runs/fashion_trainer_20230920_080635/events.out.tfevents.1695189995.msip-dell.ims.rwth-aachen.de.1217196.21 b/runs/fashion_trainer_20230920_080635/events.out.tfevents.1695189995.msip-dell.ims.rwth-aachen.de.1217196.21
new file mode 100644
index 0000000000000000000000000000000000000000..19ac1041fab161a4b949688c3e85e3a509dc2e03
Binary files /dev/null and b/runs/fashion_trainer_20230920_080635/events.out.tfevents.1695189995.msip-dell.ims.rwth-aachen.de.1217196.21 differ
diff --git a/runs/fashion_trainer_20230920_080852/Training vs. Validation Loss_Training/events.out.tfevents.1695190135.msip-dell.ims.rwth-aachen.de.1217197.25 b/runs/fashion_trainer_20230920_080852/Training vs. Validation Loss_Training/events.out.tfevents.1695190135.msip-dell.ims.rwth-aachen.de.1217197.25
new file mode 100644
index 0000000000000000000000000000000000000000..fef28d552902371777ebd0f196ad8f86d9f0f0f0
Binary files /dev/null and b/runs/fashion_trainer_20230920_080852/Training vs. Validation Loss_Training/events.out.tfevents.1695190135.msip-dell.ims.rwth-aachen.de.1217197.25 differ
diff --git a/runs/fashion_trainer_20230920_080852/Training vs. Validation Loss_Validation/events.out.tfevents.1695190135.msip-dell.ims.rwth-aachen.de.1217197.26 b/runs/fashion_trainer_20230920_080852/Training vs. Validation Loss_Validation/events.out.tfevents.1695190135.msip-dell.ims.rwth-aachen.de.1217197.26
new file mode 100644
index 0000000000000000000000000000000000000000..65ea22815df86b63ad34d393829acc3dde24e3a5
Binary files /dev/null and b/runs/fashion_trainer_20230920_080852/Training vs. Validation Loss_Validation/events.out.tfevents.1695190135.msip-dell.ims.rwth-aachen.de.1217197.26 differ
diff --git a/runs/fashion_trainer_20230920_080852/events.out.tfevents.1695190132.msip-dell.ims.rwth-aachen.de.1217197.24 b/runs/fashion_trainer_20230920_080852/events.out.tfevents.1695190132.msip-dell.ims.rwth-aachen.de.1217197.24
new file mode 100644
index 0000000000000000000000000000000000000000..a82e92bf0d3bcad53c5cdc55077687369a489dd6
Binary files /dev/null and b/runs/fashion_trainer_20230920_080852/events.out.tfevents.1695190132.msip-dell.ims.rwth-aachen.de.1217197.24 differ
diff --git a/runs/fashion_trainer_20230920_080903/Training vs. Validation Loss_Training/events.out.tfevents.1695190146.msip-dell.ims.rwth-aachen.de.1217196.25 b/runs/fashion_trainer_20230920_080903/Training vs. Validation Loss_Training/events.out.tfevents.1695190146.msip-dell.ims.rwth-aachen.de.1217196.25
new file mode 100644
index 0000000000000000000000000000000000000000..7e2070de1e1f93fbe0a71a4f7dadaff95c31598d
Binary files /dev/null and b/runs/fashion_trainer_20230920_080903/Training vs. Validation Loss_Training/events.out.tfevents.1695190146.msip-dell.ims.rwth-aachen.de.1217196.25 differ
diff --git a/runs/fashion_trainer_20230920_080903/Training vs. Validation Loss_Validation/events.out.tfevents.1695190146.msip-dell.ims.rwth-aachen.de.1217196.26 b/runs/fashion_trainer_20230920_080903/Training vs. Validation Loss_Validation/events.out.tfevents.1695190146.msip-dell.ims.rwth-aachen.de.1217196.26
new file mode 100644
index 0000000000000000000000000000000000000000..5b87d14b439d257e7db91f12eee71d5e8fc1f4fa
Binary files /dev/null and b/runs/fashion_trainer_20230920_080903/Training vs. Validation Loss_Validation/events.out.tfevents.1695190146.msip-dell.ims.rwth-aachen.de.1217196.26 differ
diff --git a/runs/fashion_trainer_20230920_080903/events.out.tfevents.1695190143.msip-dell.ims.rwth-aachen.de.1217196.24 b/runs/fashion_trainer_20230920_080903/events.out.tfevents.1695190143.msip-dell.ims.rwth-aachen.de.1217196.24
new file mode 100644
index 0000000000000000000000000000000000000000..ef02ae74c17cf662c11a7a15ce68977fde669413
Binary files /dev/null and b/runs/fashion_trainer_20230920_080903/events.out.tfevents.1695190143.msip-dell.ims.rwth-aachen.de.1217196.24 differ
diff --git a/runs/fashion_trainer_20230920_081118/Training vs. Validation Loss_Training/events.out.tfevents.1695190281.msip-dell.ims.rwth-aachen.de.1217197.28 b/runs/fashion_trainer_20230920_081118/Training vs. Validation Loss_Training/events.out.tfevents.1695190281.msip-dell.ims.rwth-aachen.de.1217197.28
new file mode 100644
index 0000000000000000000000000000000000000000..a2b886457a6e2efb7babc7f0caf03309c60c1a49
Binary files /dev/null and b/runs/fashion_trainer_20230920_081118/Training vs. Validation Loss_Training/events.out.tfevents.1695190281.msip-dell.ims.rwth-aachen.de.1217197.28 differ
diff --git a/runs/fashion_trainer_20230920_081118/Training vs. Validation Loss_Validation/events.out.tfevents.1695190281.msip-dell.ims.rwth-aachen.de.1217197.29 b/runs/fashion_trainer_20230920_081118/Training vs. Validation Loss_Validation/events.out.tfevents.1695190281.msip-dell.ims.rwth-aachen.de.1217197.29
new file mode 100644
index 0000000000000000000000000000000000000000..9ec79e69a704f1343c873997e4324e87bf626d9b
Binary files /dev/null and b/runs/fashion_trainer_20230920_081118/Training vs. Validation Loss_Validation/events.out.tfevents.1695190281.msip-dell.ims.rwth-aachen.de.1217197.29 differ
diff --git a/runs/fashion_trainer_20230920_081118/events.out.tfevents.1695190278.msip-dell.ims.rwth-aachen.de.1217197.27 b/runs/fashion_trainer_20230920_081118/events.out.tfevents.1695190278.msip-dell.ims.rwth-aachen.de.1217197.27
new file mode 100644
index 0000000000000000000000000000000000000000..3b0aa0c6eccadecc878ba0a57584ecb7f276698e
Binary files /dev/null and b/runs/fashion_trainer_20230920_081118/events.out.tfevents.1695190278.msip-dell.ims.rwth-aachen.de.1217197.27 differ
diff --git a/runs/fashion_trainer_20230920_081139/Training vs. Validation Loss_Training/events.out.tfevents.1695190302.msip-dell.ims.rwth-aachen.de.1217196.28 b/runs/fashion_trainer_20230920_081139/Training vs. Validation Loss_Training/events.out.tfevents.1695190302.msip-dell.ims.rwth-aachen.de.1217196.28
new file mode 100644
index 0000000000000000000000000000000000000000..a86eb1c6b800501e909e4c321c3d55eac9a83b52
Binary files /dev/null and b/runs/fashion_trainer_20230920_081139/Training vs. Validation Loss_Training/events.out.tfevents.1695190302.msip-dell.ims.rwth-aachen.de.1217196.28 differ
diff --git a/runs/fashion_trainer_20230920_081139/Training vs. Validation Loss_Validation/events.out.tfevents.1695190302.msip-dell.ims.rwth-aachen.de.1217196.29 b/runs/fashion_trainer_20230920_081139/Training vs. Validation Loss_Validation/events.out.tfevents.1695190302.msip-dell.ims.rwth-aachen.de.1217196.29
new file mode 100644
index 0000000000000000000000000000000000000000..1ebaf9ce5ada60b70f35b11d471875d9fd297c80
Binary files /dev/null and b/runs/fashion_trainer_20230920_081139/Training vs. Validation Loss_Validation/events.out.tfevents.1695190302.msip-dell.ims.rwth-aachen.de.1217196.29 differ
diff --git a/runs/fashion_trainer_20230920_081139/events.out.tfevents.1695190299.msip-dell.ims.rwth-aachen.de.1217196.27 b/runs/fashion_trainer_20230920_081139/events.out.tfevents.1695190299.msip-dell.ims.rwth-aachen.de.1217196.27
new file mode 100644
index 0000000000000000000000000000000000000000..5b2304505f636e7fcca82432bfa0b1b8478399cc
Binary files /dev/null and b/runs/fashion_trainer_20230920_081139/events.out.tfevents.1695190299.msip-dell.ims.rwth-aachen.de.1217196.27 differ
diff --git a/runs/fashion_trainer_20230920_081945/Training vs. Validation Loss_Training/events.out.tfevents.1695190788.msip-dell.ims.rwth-aachen.de.1218875.1 b/runs/fashion_trainer_20230920_081945/Training vs. Validation Loss_Training/events.out.tfevents.1695190788.msip-dell.ims.rwth-aachen.de.1218875.1
new file mode 100644
index 0000000000000000000000000000000000000000..6024111a2e91c895ea192f3bddc9ddeb83e3f3ce
Binary files /dev/null and b/runs/fashion_trainer_20230920_081945/Training vs. Validation Loss_Training/events.out.tfevents.1695190788.msip-dell.ims.rwth-aachen.de.1218875.1 differ
diff --git a/runs/fashion_trainer_20230920_081945/Training vs. Validation Loss_Training/events.out.tfevents.1695190788.msip-dell.ims.rwth-aachen.de.1218876.1 b/runs/fashion_trainer_20230920_081945/Training vs. Validation Loss_Training/events.out.tfevents.1695190788.msip-dell.ims.rwth-aachen.de.1218876.1
new file mode 100644
index 0000000000000000000000000000000000000000..d5f28af731bef7486e624037cdcdee1540abc884
Binary files /dev/null and b/runs/fashion_trainer_20230920_081945/Training vs. Validation Loss_Training/events.out.tfevents.1695190788.msip-dell.ims.rwth-aachen.de.1218876.1 differ
diff --git a/runs/fashion_trainer_20230920_081945/Training vs. Validation Loss_Validation/events.out.tfevents.1695190788.msip-dell.ims.rwth-aachen.de.1218875.2 b/runs/fashion_trainer_20230920_081945/Training vs. Validation Loss_Validation/events.out.tfevents.1695190788.msip-dell.ims.rwth-aachen.de.1218875.2
new file mode 100644
index 0000000000000000000000000000000000000000..4d0c988d15f0f3d0a4c6228c875aab53aa1d7602
Binary files /dev/null and b/runs/fashion_trainer_20230920_081945/Training vs. Validation Loss_Validation/events.out.tfevents.1695190788.msip-dell.ims.rwth-aachen.de.1218875.2 differ
diff --git a/runs/fashion_trainer_20230920_081945/Training vs. Validation Loss_Validation/events.out.tfevents.1695190788.msip-dell.ims.rwth-aachen.de.1218876.2 b/runs/fashion_trainer_20230920_081945/Training vs. Validation Loss_Validation/events.out.tfevents.1695190788.msip-dell.ims.rwth-aachen.de.1218876.2
new file mode 100644
index 0000000000000000000000000000000000000000..0f498d82f8457b904e2b52c098d66fef983c983f
Binary files /dev/null and b/runs/fashion_trainer_20230920_081945/Training vs. Validation Loss_Validation/events.out.tfevents.1695190788.msip-dell.ims.rwth-aachen.de.1218876.2 differ
diff --git a/runs/fashion_trainer_20230920_081945/events.out.tfevents.1695190785.msip-dell.ims.rwth-aachen.de.1218875.0 b/runs/fashion_trainer_20230920_081945/events.out.tfevents.1695190785.msip-dell.ims.rwth-aachen.de.1218875.0
new file mode 100644
index 0000000000000000000000000000000000000000..09183c52d80d0d420b7ea4335cc70d7d230839bb
Binary files /dev/null and b/runs/fashion_trainer_20230920_081945/events.out.tfevents.1695190785.msip-dell.ims.rwth-aachen.de.1218875.0 differ
diff --git a/runs/fashion_trainer_20230920_081945/events.out.tfevents.1695190785.msip-dell.ims.rwth-aachen.de.1218876.0 b/runs/fashion_trainer_20230920_081945/events.out.tfevents.1695190785.msip-dell.ims.rwth-aachen.de.1218876.0
new file mode 100644
index 0000000000000000000000000000000000000000..2b602718d8d554c8650fcc0a6a2aad7bbdd2cc8f
Binary files /dev/null and b/runs/fashion_trainer_20230920_081945/events.out.tfevents.1695190785.msip-dell.ims.rwth-aachen.de.1218876.0 differ
diff --git a/runs/fashion_trainer_20230920_082158/Training vs. Validation Loss_Training/events.out.tfevents.1695190921.msip-dell.ims.rwth-aachen.de.1218876.4 b/runs/fashion_trainer_20230920_082158/Training vs. Validation Loss_Training/events.out.tfevents.1695190921.msip-dell.ims.rwth-aachen.de.1218876.4
new file mode 100644
index 0000000000000000000000000000000000000000..0ebfcc981d90515cc8ad68be6aacae92e21d6361
Binary files /dev/null and b/runs/fashion_trainer_20230920_082158/Training vs. Validation Loss_Training/events.out.tfevents.1695190921.msip-dell.ims.rwth-aachen.de.1218876.4 differ
diff --git a/runs/fashion_trainer_20230920_082158/Training vs. Validation Loss_Validation/events.out.tfevents.1695190921.msip-dell.ims.rwth-aachen.de.1218876.5 b/runs/fashion_trainer_20230920_082158/Training vs. Validation Loss_Validation/events.out.tfevents.1695190921.msip-dell.ims.rwth-aachen.de.1218876.5
new file mode 100644
index 0000000000000000000000000000000000000000..1d6a4bac7b1351150b402095d9d3615f27571ba2
Binary files /dev/null and b/runs/fashion_trainer_20230920_082158/Training vs. Validation Loss_Validation/events.out.tfevents.1695190921.msip-dell.ims.rwth-aachen.de.1218876.5 differ
diff --git a/runs/fashion_trainer_20230920_082158/events.out.tfevents.1695190918.msip-dell.ims.rwth-aachen.de.1218876.3 b/runs/fashion_trainer_20230920_082158/events.out.tfevents.1695190918.msip-dell.ims.rwth-aachen.de.1218876.3
new file mode 100644
index 0000000000000000000000000000000000000000..b4ee6c693da7b75deca79a94b603b71529041836
Binary files /dev/null and b/runs/fashion_trainer_20230920_082158/events.out.tfevents.1695190918.msip-dell.ims.rwth-aachen.de.1218876.3 differ
diff --git a/runs/fashion_trainer_20230920_082212/Training vs. Validation Loss_Training/events.out.tfevents.1695190935.msip-dell.ims.rwth-aachen.de.1218875.4 b/runs/fashion_trainer_20230920_082212/Training vs. Validation Loss_Training/events.out.tfevents.1695190935.msip-dell.ims.rwth-aachen.de.1218875.4
new file mode 100644
index 0000000000000000000000000000000000000000..e148fb00bdb21314c44293aedc191fdef976e456
Binary files /dev/null and b/runs/fashion_trainer_20230920_082212/Training vs. Validation Loss_Training/events.out.tfevents.1695190935.msip-dell.ims.rwth-aachen.de.1218875.4 differ
diff --git a/runs/fashion_trainer_20230920_082212/Training vs. Validation Loss_Validation/events.out.tfevents.1695190935.msip-dell.ims.rwth-aachen.de.1218875.5 b/runs/fashion_trainer_20230920_082212/Training vs. Validation Loss_Validation/events.out.tfevents.1695190935.msip-dell.ims.rwth-aachen.de.1218875.5
new file mode 100644
index 0000000000000000000000000000000000000000..ea55c43cc21bb723cbeba4c547f313650a11864d
Binary files /dev/null and b/runs/fashion_trainer_20230920_082212/Training vs. Validation Loss_Validation/events.out.tfevents.1695190935.msip-dell.ims.rwth-aachen.de.1218875.5 differ
diff --git a/runs/fashion_trainer_20230920_082212/events.out.tfevents.1695190932.msip-dell.ims.rwth-aachen.de.1218875.3 b/runs/fashion_trainer_20230920_082212/events.out.tfevents.1695190932.msip-dell.ims.rwth-aachen.de.1218875.3
new file mode 100644
index 0000000000000000000000000000000000000000..ddea2e9e7261ec4643b0c4b2df535f781090fedc
Binary files /dev/null and b/runs/fashion_trainer_20230920_082212/events.out.tfevents.1695190932.msip-dell.ims.rwth-aachen.de.1218875.3 differ
diff --git a/runs/fashion_trainer_20230920_082421/Training vs. Validation Loss_Training/events.out.tfevents.1695191064.msip-dell.ims.rwth-aachen.de.1218876.7 b/runs/fashion_trainer_20230920_082421/Training vs. Validation Loss_Training/events.out.tfevents.1695191064.msip-dell.ims.rwth-aachen.de.1218876.7
new file mode 100644
index 0000000000000000000000000000000000000000..dc0d34a99d2a8ea70ddf78de55196bd9ce025a9d
Binary files /dev/null and b/runs/fashion_trainer_20230920_082421/Training vs. Validation Loss_Training/events.out.tfevents.1695191064.msip-dell.ims.rwth-aachen.de.1218876.7 differ
diff --git a/runs/fashion_trainer_20230920_082421/Training vs. Validation Loss_Validation/events.out.tfevents.1695191064.msip-dell.ims.rwth-aachen.de.1218876.8 b/runs/fashion_trainer_20230920_082421/Training vs. Validation Loss_Validation/events.out.tfevents.1695191064.msip-dell.ims.rwth-aachen.de.1218876.8
new file mode 100644
index 0000000000000000000000000000000000000000..d29dba8b3c95f827165db79365cf8df7faf83af4
Binary files /dev/null and b/runs/fashion_trainer_20230920_082421/Training vs. Validation Loss_Validation/events.out.tfevents.1695191064.msip-dell.ims.rwth-aachen.de.1218876.8 differ
diff --git a/runs/fashion_trainer_20230920_082421/events.out.tfevents.1695191061.msip-dell.ims.rwth-aachen.de.1218876.6 b/runs/fashion_trainer_20230920_082421/events.out.tfevents.1695191061.msip-dell.ims.rwth-aachen.de.1218876.6
new file mode 100644
index 0000000000000000000000000000000000000000..f468c70aab9671f2b63eddace9a3bf579083f370
Binary files /dev/null and b/runs/fashion_trainer_20230920_082421/events.out.tfevents.1695191061.msip-dell.ims.rwth-aachen.de.1218876.6 differ
diff --git a/runs/fashion_trainer_20230920_082438/Training vs. Validation Loss_Training/events.out.tfevents.1695191080.msip-dell.ims.rwth-aachen.de.1218875.7 b/runs/fashion_trainer_20230920_082438/Training vs. Validation Loss_Training/events.out.tfevents.1695191080.msip-dell.ims.rwth-aachen.de.1218875.7
new file mode 100644
index 0000000000000000000000000000000000000000..038d6213f8ca69f713302987354ab164aebf088f
Binary files /dev/null and b/runs/fashion_trainer_20230920_082438/Training vs. Validation Loss_Training/events.out.tfevents.1695191080.msip-dell.ims.rwth-aachen.de.1218875.7 differ
diff --git a/runs/fashion_trainer_20230920_082438/Training vs. Validation Loss_Validation/events.out.tfevents.1695191080.msip-dell.ims.rwth-aachen.de.1218875.8 b/runs/fashion_trainer_20230920_082438/Training vs. Validation Loss_Validation/events.out.tfevents.1695191080.msip-dell.ims.rwth-aachen.de.1218875.8
new file mode 100644
index 0000000000000000000000000000000000000000..cae6821839c719080fb08f2c810ef438d4bbc503
Binary files /dev/null and b/runs/fashion_trainer_20230920_082438/Training vs. Validation Loss_Validation/events.out.tfevents.1695191080.msip-dell.ims.rwth-aachen.de.1218875.8 differ
diff --git a/runs/fashion_trainer_20230920_082438/events.out.tfevents.1695191078.msip-dell.ims.rwth-aachen.de.1218875.6 b/runs/fashion_trainer_20230920_082438/events.out.tfevents.1695191078.msip-dell.ims.rwth-aachen.de.1218875.6
new file mode 100644
index 0000000000000000000000000000000000000000..5b171c72769be692c046b02e0f74489a4fbc3120
Binary files /dev/null and b/runs/fashion_trainer_20230920_082438/events.out.tfevents.1695191078.msip-dell.ims.rwth-aachen.de.1218875.6 differ
diff --git a/runs/fashion_trainer_20230920_082649/Training vs. Validation Loss_Training/events.out.tfevents.1695191211.msip-dell.ims.rwth-aachen.de.1218876.10 b/runs/fashion_trainer_20230920_082649/Training vs. Validation Loss_Training/events.out.tfevents.1695191211.msip-dell.ims.rwth-aachen.de.1218876.10
new file mode 100644
index 0000000000000000000000000000000000000000..4a9d1709889be34fc91533b1a8a72552713e4b3d
Binary files /dev/null and b/runs/fashion_trainer_20230920_082649/Training vs. Validation Loss_Training/events.out.tfevents.1695191211.msip-dell.ims.rwth-aachen.de.1218876.10 differ
diff --git a/runs/fashion_trainer_20230920_082649/Training vs. Validation Loss_Validation/events.out.tfevents.1695191211.msip-dell.ims.rwth-aachen.de.1218876.11 b/runs/fashion_trainer_20230920_082649/Training vs. Validation Loss_Validation/events.out.tfevents.1695191211.msip-dell.ims.rwth-aachen.de.1218876.11
new file mode 100644
index 0000000000000000000000000000000000000000..14f1db2a801393a7895b2648a0b07df8203a7ea7
Binary files /dev/null and b/runs/fashion_trainer_20230920_082649/Training vs. Validation Loss_Validation/events.out.tfevents.1695191211.msip-dell.ims.rwth-aachen.de.1218876.11 differ
diff --git a/runs/fashion_trainer_20230920_082649/events.out.tfevents.1695191209.msip-dell.ims.rwth-aachen.de.1218876.9 b/runs/fashion_trainer_20230920_082649/events.out.tfevents.1695191209.msip-dell.ims.rwth-aachen.de.1218876.9
new file mode 100644
index 0000000000000000000000000000000000000000..2d664a5edae0803a229098b831afcc00cad6ef6a
Binary files /dev/null and b/runs/fashion_trainer_20230920_082649/events.out.tfevents.1695191209.msip-dell.ims.rwth-aachen.de.1218876.9 differ
diff --git a/runs/fashion_trainer_20230920_082702/Training vs. Validation Loss_Training/events.out.tfevents.1695191225.msip-dell.ims.rwth-aachen.de.1218875.10 b/runs/fashion_trainer_20230920_082702/Training vs. Validation Loss_Training/events.out.tfevents.1695191225.msip-dell.ims.rwth-aachen.de.1218875.10
new file mode 100644
index 0000000000000000000000000000000000000000..c6cf24371ccf007b2fdf572afbb677dead188ed5
Binary files /dev/null and b/runs/fashion_trainer_20230920_082702/Training vs. Validation Loss_Training/events.out.tfevents.1695191225.msip-dell.ims.rwth-aachen.de.1218875.10 differ
diff --git a/runs/fashion_trainer_20230920_082702/Training vs. Validation Loss_Validation/events.out.tfevents.1695191225.msip-dell.ims.rwth-aachen.de.1218875.11 b/runs/fashion_trainer_20230920_082702/Training vs. Validation Loss_Validation/events.out.tfevents.1695191225.msip-dell.ims.rwth-aachen.de.1218875.11
new file mode 100644
index 0000000000000000000000000000000000000000..69a5db01f34fc535221fdc3978d86d49a80b483b
Binary files /dev/null and b/runs/fashion_trainer_20230920_082702/Training vs. Validation Loss_Validation/events.out.tfevents.1695191225.msip-dell.ims.rwth-aachen.de.1218875.11 differ
diff --git a/runs/fashion_trainer_20230920_082702/events.out.tfevents.1695191222.msip-dell.ims.rwth-aachen.de.1218875.9 b/runs/fashion_trainer_20230920_082702/events.out.tfevents.1695191222.msip-dell.ims.rwth-aachen.de.1218875.9
new file mode 100644
index 0000000000000000000000000000000000000000..5ff1c60f052bcd3db913e0e85b05624965277ce0
Binary files /dev/null and b/runs/fashion_trainer_20230920_082702/events.out.tfevents.1695191222.msip-dell.ims.rwth-aachen.de.1218875.9 differ
diff --git a/runs/fashion_trainer_20230920_082916/Training vs. Validation Loss_Training/events.out.tfevents.1695191359.msip-dell.ims.rwth-aachen.de.1218876.13 b/runs/fashion_trainer_20230920_082916/Training vs. Validation Loss_Training/events.out.tfevents.1695191359.msip-dell.ims.rwth-aachen.de.1218876.13
new file mode 100644
index 0000000000000000000000000000000000000000..370280e6d2c32041dcdef79ba44bece0abeb327e
Binary files /dev/null and b/runs/fashion_trainer_20230920_082916/Training vs. Validation Loss_Training/events.out.tfevents.1695191359.msip-dell.ims.rwth-aachen.de.1218876.13 differ
diff --git a/runs/fashion_trainer_20230920_082916/Training vs. Validation Loss_Validation/events.out.tfevents.1695191359.msip-dell.ims.rwth-aachen.de.1218876.14 b/runs/fashion_trainer_20230920_082916/Training vs. Validation Loss_Validation/events.out.tfevents.1695191359.msip-dell.ims.rwth-aachen.de.1218876.14
new file mode 100644
index 0000000000000000000000000000000000000000..d6a6c05b1ae07d59a6339ed4ea31e5ae91897f8d
Binary files /dev/null and b/runs/fashion_trainer_20230920_082916/Training vs. Validation Loss_Validation/events.out.tfevents.1695191359.msip-dell.ims.rwth-aachen.de.1218876.14 differ
diff --git a/runs/fashion_trainer_20230920_082916/events.out.tfevents.1695191356.msip-dell.ims.rwth-aachen.de.1218876.12 b/runs/fashion_trainer_20230920_082916/events.out.tfevents.1695191356.msip-dell.ims.rwth-aachen.de.1218876.12
new file mode 100644
index 0000000000000000000000000000000000000000..0f66d5a6bd217c3b5222f02f1c7a2d32bf0099ca
Binary files /dev/null and b/runs/fashion_trainer_20230920_082916/events.out.tfevents.1695191356.msip-dell.ims.rwth-aachen.de.1218876.12 differ
diff --git a/runs/fashion_trainer_20230920_082929/Training vs. Validation Loss_Training/events.out.tfevents.1695191372.msip-dell.ims.rwth-aachen.de.1218875.13 b/runs/fashion_trainer_20230920_082929/Training vs. Validation Loss_Training/events.out.tfevents.1695191372.msip-dell.ims.rwth-aachen.de.1218875.13
new file mode 100644
index 0000000000000000000000000000000000000000..d5636c3afa2f5589b8deb77d54982825e07c47b5
Binary files /dev/null and b/runs/fashion_trainer_20230920_082929/Training vs. Validation Loss_Training/events.out.tfevents.1695191372.msip-dell.ims.rwth-aachen.de.1218875.13 differ
diff --git a/runs/fashion_trainer_20230920_082929/Training vs. Validation Loss_Validation/events.out.tfevents.1695191372.msip-dell.ims.rwth-aachen.de.1218875.14 b/runs/fashion_trainer_20230920_082929/Training vs. Validation Loss_Validation/events.out.tfevents.1695191372.msip-dell.ims.rwth-aachen.de.1218875.14
new file mode 100644
index 0000000000000000000000000000000000000000..519d503ffb67d7c42d7407137a3963f959c6fae7
Binary files /dev/null and b/runs/fashion_trainer_20230920_082929/Training vs. Validation Loss_Validation/events.out.tfevents.1695191372.msip-dell.ims.rwth-aachen.de.1218875.14 differ
diff --git a/runs/fashion_trainer_20230920_082929/events.out.tfevents.1695191369.msip-dell.ims.rwth-aachen.de.1218875.12 b/runs/fashion_trainer_20230920_082929/events.out.tfevents.1695191369.msip-dell.ims.rwth-aachen.de.1218875.12
new file mode 100644
index 0000000000000000000000000000000000000000..e1ede793ca282a75d261559004014fdf79c46507
Binary files /dev/null and b/runs/fashion_trainer_20230920_082929/events.out.tfevents.1695191369.msip-dell.ims.rwth-aachen.de.1218875.12 differ
diff --git a/runs/fashion_trainer_20230920_083143/Training vs. Validation Loss_Training/events.out.tfevents.1695191506.msip-dell.ims.rwth-aachen.de.1218876.16 b/runs/fashion_trainer_20230920_083143/Training vs. Validation Loss_Training/events.out.tfevents.1695191506.msip-dell.ims.rwth-aachen.de.1218876.16
new file mode 100644
index 0000000000000000000000000000000000000000..81b7cbd5057d3c84dfe6784287ff927f63747dbe
Binary files /dev/null and b/runs/fashion_trainer_20230920_083143/Training vs. Validation Loss_Training/events.out.tfevents.1695191506.msip-dell.ims.rwth-aachen.de.1218876.16 differ
diff --git a/runs/fashion_trainer_20230920_083143/Training vs. Validation Loss_Validation/events.out.tfevents.1695191506.msip-dell.ims.rwth-aachen.de.1218876.17 b/runs/fashion_trainer_20230920_083143/Training vs. Validation Loss_Validation/events.out.tfevents.1695191506.msip-dell.ims.rwth-aachen.de.1218876.17
new file mode 100644
index 0000000000000000000000000000000000000000..1377ac65719f7c679fd7eda8c0d0be54d1d9a759
Binary files /dev/null and b/runs/fashion_trainer_20230920_083143/Training vs. Validation Loss_Validation/events.out.tfevents.1695191506.msip-dell.ims.rwth-aachen.de.1218876.17 differ
diff --git a/runs/fashion_trainer_20230920_083143/events.out.tfevents.1695191503.msip-dell.ims.rwth-aachen.de.1218876.15 b/runs/fashion_trainer_20230920_083143/events.out.tfevents.1695191503.msip-dell.ims.rwth-aachen.de.1218876.15
new file mode 100644
index 0000000000000000000000000000000000000000..d43a0cd658f330c22231aa42b847c9a97f39f03c
Binary files /dev/null and b/runs/fashion_trainer_20230920_083143/events.out.tfevents.1695191503.msip-dell.ims.rwth-aachen.de.1218876.15 differ
diff --git a/runs/fashion_trainer_20230920_083149/Training vs. Validation Loss_Training/events.out.tfevents.1695191512.msip-dell.ims.rwth-aachen.de.1218875.16 b/runs/fashion_trainer_20230920_083149/Training vs. Validation Loss_Training/events.out.tfevents.1695191512.msip-dell.ims.rwth-aachen.de.1218875.16
new file mode 100644
index 0000000000000000000000000000000000000000..45d71c8ae8069060668070774d053e5b594c36ac
Binary files /dev/null and b/runs/fashion_trainer_20230920_083149/Training vs. Validation Loss_Training/events.out.tfevents.1695191512.msip-dell.ims.rwth-aachen.de.1218875.16 differ
diff --git a/runs/fashion_trainer_20230920_083149/Training vs. Validation Loss_Validation/events.out.tfevents.1695191512.msip-dell.ims.rwth-aachen.de.1218875.17 b/runs/fashion_trainer_20230920_083149/Training vs. Validation Loss_Validation/events.out.tfevents.1695191512.msip-dell.ims.rwth-aachen.de.1218875.17
new file mode 100644
index 0000000000000000000000000000000000000000..5a5847fa6afbb89853669ec340a2f0f62d0ce46d
Binary files /dev/null and b/runs/fashion_trainer_20230920_083149/Training vs. Validation Loss_Validation/events.out.tfevents.1695191512.msip-dell.ims.rwth-aachen.de.1218875.17 differ
diff --git a/runs/fashion_trainer_20230920_083149/events.out.tfevents.1695191509.msip-dell.ims.rwth-aachen.de.1218875.15 b/runs/fashion_trainer_20230920_083149/events.out.tfevents.1695191509.msip-dell.ims.rwth-aachen.de.1218875.15
new file mode 100644
index 0000000000000000000000000000000000000000..6e0419ede2c7c9c777dfb14cea8b7865f168736c
Binary files /dev/null and b/runs/fashion_trainer_20230920_083149/events.out.tfevents.1695191509.msip-dell.ims.rwth-aachen.de.1218875.15 differ
diff --git a/runs/fashion_trainer_20230920_083358/Training vs. Validation Loss_Training/events.out.tfevents.1695191641.msip-dell.ims.rwth-aachen.de.1218876.19 b/runs/fashion_trainer_20230920_083358/Training vs. Validation Loss_Training/events.out.tfevents.1695191641.msip-dell.ims.rwth-aachen.de.1218876.19
new file mode 100644
index 0000000000000000000000000000000000000000..8dfe76e4a7afc0cde2daccb9f6b2e9d525a20676
Binary files /dev/null and b/runs/fashion_trainer_20230920_083358/Training vs. Validation Loss_Training/events.out.tfevents.1695191641.msip-dell.ims.rwth-aachen.de.1218876.19 differ
diff --git a/runs/fashion_trainer_20230920_083358/Training vs. Validation Loss_Validation/events.out.tfevents.1695191641.msip-dell.ims.rwth-aachen.de.1218876.20 b/runs/fashion_trainer_20230920_083358/Training vs. Validation Loss_Validation/events.out.tfevents.1695191641.msip-dell.ims.rwth-aachen.de.1218876.20
new file mode 100644
index 0000000000000000000000000000000000000000..32bc2640d99ea6d0dec8bead0a3206d37a30a14b
Binary files /dev/null and b/runs/fashion_trainer_20230920_083358/Training vs. Validation Loss_Validation/events.out.tfevents.1695191641.msip-dell.ims.rwth-aachen.de.1218876.20 differ
diff --git a/runs/fashion_trainer_20230920_083358/events.out.tfevents.1695191638.msip-dell.ims.rwth-aachen.de.1218876.18 b/runs/fashion_trainer_20230920_083358/events.out.tfevents.1695191638.msip-dell.ims.rwth-aachen.de.1218876.18
new file mode 100644
index 0000000000000000000000000000000000000000..64463cf282647af4bc2038867355547073d22662
Binary files /dev/null and b/runs/fashion_trainer_20230920_083358/events.out.tfevents.1695191638.msip-dell.ims.rwth-aachen.de.1218876.18 differ
diff --git a/runs/fashion_trainer_20230920_083416/Training vs. Validation Loss_Training/events.out.tfevents.1695191659.msip-dell.ims.rwth-aachen.de.1218875.19 b/runs/fashion_trainer_20230920_083416/Training vs. Validation Loss_Training/events.out.tfevents.1695191659.msip-dell.ims.rwth-aachen.de.1218875.19
new file mode 100644
index 0000000000000000000000000000000000000000..1961651970feb47b86549b9b43ccd50d16e59428
Binary files /dev/null and b/runs/fashion_trainer_20230920_083416/Training vs. Validation Loss_Training/events.out.tfevents.1695191659.msip-dell.ims.rwth-aachen.de.1218875.19 differ
diff --git a/runs/fashion_trainer_20230920_083416/Training vs. Validation Loss_Validation/events.out.tfevents.1695191659.msip-dell.ims.rwth-aachen.de.1218875.20 b/runs/fashion_trainer_20230920_083416/Training vs. Validation Loss_Validation/events.out.tfevents.1695191659.msip-dell.ims.rwth-aachen.de.1218875.20
new file mode 100644
index 0000000000000000000000000000000000000000..91e62716d0ea15171a30f9bd7de01a2d2c24e029
Binary files /dev/null and b/runs/fashion_trainer_20230920_083416/Training vs. Validation Loss_Validation/events.out.tfevents.1695191659.msip-dell.ims.rwth-aachen.de.1218875.20 differ
diff --git a/runs/fashion_trainer_20230920_083416/events.out.tfevents.1695191656.msip-dell.ims.rwth-aachen.de.1218875.18 b/runs/fashion_trainer_20230920_083416/events.out.tfevents.1695191656.msip-dell.ims.rwth-aachen.de.1218875.18
new file mode 100644
index 0000000000000000000000000000000000000000..dabf5e370ebf83d6c6546bbe7d25e843b9ff5b43
Binary files /dev/null and b/runs/fashion_trainer_20230920_083416/events.out.tfevents.1695191656.msip-dell.ims.rwth-aachen.de.1218875.18 differ
diff --git a/runs/fashion_trainer_20230920_083626/Training vs. Validation Loss_Training/events.out.tfevents.1695191789.msip-dell.ims.rwth-aachen.de.1218876.22 b/runs/fashion_trainer_20230920_083626/Training vs. Validation Loss_Training/events.out.tfevents.1695191789.msip-dell.ims.rwth-aachen.de.1218876.22
new file mode 100644
index 0000000000000000000000000000000000000000..f30ab6dbb3eb9cd8a248b4c43cc7e7c3dfa39611
Binary files /dev/null and b/runs/fashion_trainer_20230920_083626/Training vs. Validation Loss_Training/events.out.tfevents.1695191789.msip-dell.ims.rwth-aachen.de.1218876.22 differ
diff --git a/runs/fashion_trainer_20230920_083626/Training vs. Validation Loss_Validation/events.out.tfevents.1695191789.msip-dell.ims.rwth-aachen.de.1218876.23 b/runs/fashion_trainer_20230920_083626/Training vs. Validation Loss_Validation/events.out.tfevents.1695191789.msip-dell.ims.rwth-aachen.de.1218876.23
new file mode 100644
index 0000000000000000000000000000000000000000..64954300af36e624502bb3494fefd0e7e6a5ac20
Binary files /dev/null and b/runs/fashion_trainer_20230920_083626/Training vs. Validation Loss_Validation/events.out.tfevents.1695191789.msip-dell.ims.rwth-aachen.de.1218876.23 differ
diff --git a/runs/fashion_trainer_20230920_083626/events.out.tfevents.1695191786.msip-dell.ims.rwth-aachen.de.1218876.21 b/runs/fashion_trainer_20230920_083626/events.out.tfevents.1695191786.msip-dell.ims.rwth-aachen.de.1218876.21
new file mode 100644
index 0000000000000000000000000000000000000000..4fb1ea0ea87347a74f450e62d9d7e6069b9efee9
Binary files /dev/null and b/runs/fashion_trainer_20230920_083626/events.out.tfevents.1695191786.msip-dell.ims.rwth-aachen.de.1218876.21 differ
diff --git a/runs/fashion_trainer_20230920_083645/Training vs. Validation Loss_Training/events.out.tfevents.1695191808.msip-dell.ims.rwth-aachen.de.1218875.22 b/runs/fashion_trainer_20230920_083645/Training vs. Validation Loss_Training/events.out.tfevents.1695191808.msip-dell.ims.rwth-aachen.de.1218875.22
new file mode 100644
index 0000000000000000000000000000000000000000..cd8dd73f10e12cf58937133cfa9ab9e3156259a9
Binary files /dev/null and b/runs/fashion_trainer_20230920_083645/Training vs. Validation Loss_Training/events.out.tfevents.1695191808.msip-dell.ims.rwth-aachen.de.1218875.22 differ
diff --git a/runs/fashion_trainer_20230920_083645/Training vs. Validation Loss_Validation/events.out.tfevents.1695191808.msip-dell.ims.rwth-aachen.de.1218875.23 b/runs/fashion_trainer_20230920_083645/Training vs. Validation Loss_Validation/events.out.tfevents.1695191808.msip-dell.ims.rwth-aachen.de.1218875.23
new file mode 100644
index 0000000000000000000000000000000000000000..30b7bbf409131f22e7e703dcab743eef5d74389e
Binary files /dev/null and b/runs/fashion_trainer_20230920_083645/Training vs. Validation Loss_Validation/events.out.tfevents.1695191808.msip-dell.ims.rwth-aachen.de.1218875.23 differ
diff --git a/runs/fashion_trainer_20230920_083645/events.out.tfevents.1695191805.msip-dell.ims.rwth-aachen.de.1218875.21 b/runs/fashion_trainer_20230920_083645/events.out.tfevents.1695191805.msip-dell.ims.rwth-aachen.de.1218875.21
new file mode 100644
index 0000000000000000000000000000000000000000..202367318daf4f71a239d48f719c9229df40b092
Binary files /dev/null and b/runs/fashion_trainer_20230920_083645/events.out.tfevents.1695191805.msip-dell.ims.rwth-aachen.de.1218875.21 differ
diff --git a/runs/fashion_trainer_20230920_083851/Training vs. Validation Loss_Training/events.out.tfevents.1695191934.msip-dell.ims.rwth-aachen.de.1218876.25 b/runs/fashion_trainer_20230920_083851/Training vs. Validation Loss_Training/events.out.tfevents.1695191934.msip-dell.ims.rwth-aachen.de.1218876.25
new file mode 100644
index 0000000000000000000000000000000000000000..f2923fad53d006b93f591c3192265b44bfcaa26e
Binary files /dev/null and b/runs/fashion_trainer_20230920_083851/Training vs. Validation Loss_Training/events.out.tfevents.1695191934.msip-dell.ims.rwth-aachen.de.1218876.25 differ
diff --git a/runs/fashion_trainer_20230920_083851/Training vs. Validation Loss_Validation/events.out.tfevents.1695191934.msip-dell.ims.rwth-aachen.de.1218876.26 b/runs/fashion_trainer_20230920_083851/Training vs. Validation Loss_Validation/events.out.tfevents.1695191934.msip-dell.ims.rwth-aachen.de.1218876.26
new file mode 100644
index 0000000000000000000000000000000000000000..90a55eb20141c3d7177451f65bc5a59481d2d067
Binary files /dev/null and b/runs/fashion_trainer_20230920_083851/Training vs. Validation Loss_Validation/events.out.tfevents.1695191934.msip-dell.ims.rwth-aachen.de.1218876.26 differ
diff --git a/runs/fashion_trainer_20230920_083851/events.out.tfevents.1695191931.msip-dell.ims.rwth-aachen.de.1218876.24 b/runs/fashion_trainer_20230920_083851/events.out.tfevents.1695191931.msip-dell.ims.rwth-aachen.de.1218876.24
new file mode 100644
index 0000000000000000000000000000000000000000..e647f28a60da741977c2550a06963b9c8d7f6356
Binary files /dev/null and b/runs/fashion_trainer_20230920_083851/events.out.tfevents.1695191931.msip-dell.ims.rwth-aachen.de.1218876.24 differ
diff --git a/runs/fashion_trainer_20230920_083913/Training vs. Validation Loss_Training/events.out.tfevents.1695191956.msip-dell.ims.rwth-aachen.de.1218875.25 b/runs/fashion_trainer_20230920_083913/Training vs. Validation Loss_Training/events.out.tfevents.1695191956.msip-dell.ims.rwth-aachen.de.1218875.25
new file mode 100644
index 0000000000000000000000000000000000000000..1ea499eae0b8da001d51f23455e9bc9caa63c7de
Binary files /dev/null and b/runs/fashion_trainer_20230920_083913/Training vs. Validation Loss_Training/events.out.tfevents.1695191956.msip-dell.ims.rwth-aachen.de.1218875.25 differ
diff --git a/runs/fashion_trainer_20230920_083913/Training vs. Validation Loss_Validation/events.out.tfevents.1695191956.msip-dell.ims.rwth-aachen.de.1218875.26 b/runs/fashion_trainer_20230920_083913/Training vs. Validation Loss_Validation/events.out.tfevents.1695191956.msip-dell.ims.rwth-aachen.de.1218875.26
new file mode 100644
index 0000000000000000000000000000000000000000..76c672ba5b6e0dbe68452a74d82a22fc6717f383
Binary files /dev/null and b/runs/fashion_trainer_20230920_083913/Training vs. Validation Loss_Validation/events.out.tfevents.1695191956.msip-dell.ims.rwth-aachen.de.1218875.26 differ
diff --git a/runs/fashion_trainer_20230920_083913/events.out.tfevents.1695191953.msip-dell.ims.rwth-aachen.de.1218875.24 b/runs/fashion_trainer_20230920_083913/events.out.tfevents.1695191953.msip-dell.ims.rwth-aachen.de.1218875.24
new file mode 100644
index 0000000000000000000000000000000000000000..817d1ec7424e67cbbf8ccdff41b2bd39ade72511
Binary files /dev/null and b/runs/fashion_trainer_20230920_083913/events.out.tfevents.1695191953.msip-dell.ims.rwth-aachen.de.1218875.24 differ
diff --git a/runs/fashion_trainer_20230920_084116/Training vs. Validation Loss_Training/events.out.tfevents.1695192079.msip-dell.ims.rwth-aachen.de.1218876.28 b/runs/fashion_trainer_20230920_084116/Training vs. Validation Loss_Training/events.out.tfevents.1695192079.msip-dell.ims.rwth-aachen.de.1218876.28
new file mode 100644
index 0000000000000000000000000000000000000000..331af5c83beb09bff10ba67beb42b95d2d491b52
Binary files /dev/null and b/runs/fashion_trainer_20230920_084116/Training vs. Validation Loss_Training/events.out.tfevents.1695192079.msip-dell.ims.rwth-aachen.de.1218876.28 differ
diff --git a/runs/fashion_trainer_20230920_084116/Training vs. Validation Loss_Validation/events.out.tfevents.1695192079.msip-dell.ims.rwth-aachen.de.1218876.29 b/runs/fashion_trainer_20230920_084116/Training vs. Validation Loss_Validation/events.out.tfevents.1695192079.msip-dell.ims.rwth-aachen.de.1218876.29
new file mode 100644
index 0000000000000000000000000000000000000000..8b1e35b3925c583b25afeb9735e08f9bf870896e
Binary files /dev/null and b/runs/fashion_trainer_20230920_084116/Training vs. Validation Loss_Validation/events.out.tfevents.1695192079.msip-dell.ims.rwth-aachen.de.1218876.29 differ
diff --git a/runs/fashion_trainer_20230920_084116/events.out.tfevents.1695192076.msip-dell.ims.rwth-aachen.de.1218876.27 b/runs/fashion_trainer_20230920_084116/events.out.tfevents.1695192076.msip-dell.ims.rwth-aachen.de.1218876.27
new file mode 100644
index 0000000000000000000000000000000000000000..22b9497733043c58800dcbd2c36a4c55e0807bd1
Binary files /dev/null and b/runs/fashion_trainer_20230920_084116/events.out.tfevents.1695192076.msip-dell.ims.rwth-aachen.de.1218876.27 differ
diff --git a/runs/fashion_trainer_20230920_084142/Training vs. Validation Loss_Training/events.out.tfevents.1695192104.msip-dell.ims.rwth-aachen.de.1218875.28 b/runs/fashion_trainer_20230920_084142/Training vs. Validation Loss_Training/events.out.tfevents.1695192104.msip-dell.ims.rwth-aachen.de.1218875.28
new file mode 100644
index 0000000000000000000000000000000000000000..ce44991c36e48b932fe1ef99704a926e36891f2a
Binary files /dev/null and b/runs/fashion_trainer_20230920_084142/Training vs. Validation Loss_Training/events.out.tfevents.1695192104.msip-dell.ims.rwth-aachen.de.1218875.28 differ
diff --git a/runs/fashion_trainer_20230920_084142/Training vs. Validation Loss_Validation/events.out.tfevents.1695192104.msip-dell.ims.rwth-aachen.de.1218875.29 b/runs/fashion_trainer_20230920_084142/Training vs. Validation Loss_Validation/events.out.tfevents.1695192104.msip-dell.ims.rwth-aachen.de.1218875.29
new file mode 100644
index 0000000000000000000000000000000000000000..7e20f5b50f82dbd3170030f0d7bf557a44a922d5
Binary files /dev/null and b/runs/fashion_trainer_20230920_084142/Training vs. Validation Loss_Validation/events.out.tfevents.1695192104.msip-dell.ims.rwth-aachen.de.1218875.29 differ
diff --git a/runs/fashion_trainer_20230920_084142/events.out.tfevents.1695192102.msip-dell.ims.rwth-aachen.de.1218875.27 b/runs/fashion_trainer_20230920_084142/events.out.tfevents.1695192102.msip-dell.ims.rwth-aachen.de.1218875.27
new file mode 100644
index 0000000000000000000000000000000000000000..1afb3dfd1fde9c94e3f64627fe497c26d63f4bca
Binary files /dev/null and b/runs/fashion_trainer_20230920_084142/events.out.tfevents.1695192102.msip-dell.ims.rwth-aachen.de.1218875.27 differ
diff --git a/runs/fashion_trainer_20230920_084342/Training vs. Validation Loss_Training/events.out.tfevents.1695192225.msip-dell.ims.rwth-aachen.de.1218876.31 b/runs/fashion_trainer_20230920_084342/Training vs. Validation Loss_Training/events.out.tfevents.1695192225.msip-dell.ims.rwth-aachen.de.1218876.31
new file mode 100644
index 0000000000000000000000000000000000000000..bc5ea577e9e29d3bf4a7bde8f461499ab3cc0ffb
Binary files /dev/null and b/runs/fashion_trainer_20230920_084342/Training vs. Validation Loss_Training/events.out.tfevents.1695192225.msip-dell.ims.rwth-aachen.de.1218876.31 differ
diff --git a/runs/fashion_trainer_20230920_084342/Training vs. Validation Loss_Validation/events.out.tfevents.1695192225.msip-dell.ims.rwth-aachen.de.1218876.32 b/runs/fashion_trainer_20230920_084342/Training vs. Validation Loss_Validation/events.out.tfevents.1695192225.msip-dell.ims.rwth-aachen.de.1218876.32
new file mode 100644
index 0000000000000000000000000000000000000000..5b9a77f7d6c7852ea01b23c223b5ce33986f9e4b
Binary files /dev/null and b/runs/fashion_trainer_20230920_084342/Training vs. Validation Loss_Validation/events.out.tfevents.1695192225.msip-dell.ims.rwth-aachen.de.1218876.32 differ
diff --git a/runs/fashion_trainer_20230920_084342/events.out.tfevents.1695192222.msip-dell.ims.rwth-aachen.de.1218876.30 b/runs/fashion_trainer_20230920_084342/events.out.tfevents.1695192222.msip-dell.ims.rwth-aachen.de.1218876.30
new file mode 100644
index 0000000000000000000000000000000000000000..708335dba20cbd29e415a83272b41d6498136bb5
Binary files /dev/null and b/runs/fashion_trainer_20230920_084342/events.out.tfevents.1695192222.msip-dell.ims.rwth-aachen.de.1218876.30 differ
diff --git a/runs/fashion_trainer_20230920_084410/Training vs. Validation Loss_Training/events.out.tfevents.1695192253.msip-dell.ims.rwth-aachen.de.1218875.31 b/runs/fashion_trainer_20230920_084410/Training vs. Validation Loss_Training/events.out.tfevents.1695192253.msip-dell.ims.rwth-aachen.de.1218875.31
new file mode 100644
index 0000000000000000000000000000000000000000..5a064ce2053b37985b06494d7b8cfab9a5095617
Binary files /dev/null and b/runs/fashion_trainer_20230920_084410/Training vs. Validation Loss_Training/events.out.tfevents.1695192253.msip-dell.ims.rwth-aachen.de.1218875.31 differ
diff --git a/runs/fashion_trainer_20230920_084410/Training vs. Validation Loss_Validation/events.out.tfevents.1695192253.msip-dell.ims.rwth-aachen.de.1218875.32 b/runs/fashion_trainer_20230920_084410/Training vs. Validation Loss_Validation/events.out.tfevents.1695192253.msip-dell.ims.rwth-aachen.de.1218875.32
new file mode 100644
index 0000000000000000000000000000000000000000..ad28b390768c0df3afb3bfad33ad898f6efab39f
Binary files /dev/null and b/runs/fashion_trainer_20230920_084410/Training vs. Validation Loss_Validation/events.out.tfevents.1695192253.msip-dell.ims.rwth-aachen.de.1218875.32 differ
diff --git a/runs/fashion_trainer_20230920_084410/events.out.tfevents.1695192250.msip-dell.ims.rwth-aachen.de.1218875.30 b/runs/fashion_trainer_20230920_084410/events.out.tfevents.1695192250.msip-dell.ims.rwth-aachen.de.1218875.30
new file mode 100644
index 0000000000000000000000000000000000000000..ac8b9143f280970728d5a0458cad1583c524cf36
Binary files /dev/null and b/runs/fashion_trainer_20230920_084410/events.out.tfevents.1695192250.msip-dell.ims.rwth-aachen.de.1218875.30 differ
diff --git a/runs/fashion_trainer_20230920_084611/Training vs. Validation Loss_Training/events.out.tfevents.1695192374.msip-dell.ims.rwth-aachen.de.1218876.34 b/runs/fashion_trainer_20230920_084611/Training vs. Validation Loss_Training/events.out.tfevents.1695192374.msip-dell.ims.rwth-aachen.de.1218876.34
new file mode 100644
index 0000000000000000000000000000000000000000..02a408b8a49e11e5cca3f55ff306e9d24bfa17ea
Binary files /dev/null and b/runs/fashion_trainer_20230920_084611/Training vs. Validation Loss_Training/events.out.tfevents.1695192374.msip-dell.ims.rwth-aachen.de.1218876.34 differ
diff --git a/runs/fashion_trainer_20230920_084611/Training vs. Validation Loss_Validation/events.out.tfevents.1695192374.msip-dell.ims.rwth-aachen.de.1218876.35 b/runs/fashion_trainer_20230920_084611/Training vs. Validation Loss_Validation/events.out.tfevents.1695192374.msip-dell.ims.rwth-aachen.de.1218876.35
new file mode 100644
index 0000000000000000000000000000000000000000..72dad02678fe3d980999f3068116cf7b04f352be
Binary files /dev/null and b/runs/fashion_trainer_20230920_084611/Training vs. Validation Loss_Validation/events.out.tfevents.1695192374.msip-dell.ims.rwth-aachen.de.1218876.35 differ
diff --git a/runs/fashion_trainer_20230920_084611/events.out.tfevents.1695192371.msip-dell.ims.rwth-aachen.de.1218876.33 b/runs/fashion_trainer_20230920_084611/events.out.tfevents.1695192371.msip-dell.ims.rwth-aachen.de.1218876.33
new file mode 100644
index 0000000000000000000000000000000000000000..108f82dcc4261ec29c6f1d05310820344c665370
Binary files /dev/null and b/runs/fashion_trainer_20230920_084611/events.out.tfevents.1695192371.msip-dell.ims.rwth-aachen.de.1218876.33 differ
diff --git a/runs/fashion_trainer_20230920_084633/Training vs. Validation Loss_Training/events.out.tfevents.1695192396.msip-dell.ims.rwth-aachen.de.1218875.34 b/runs/fashion_trainer_20230920_084633/Training vs. Validation Loss_Training/events.out.tfevents.1695192396.msip-dell.ims.rwth-aachen.de.1218875.34
new file mode 100644
index 0000000000000000000000000000000000000000..4c47e0ff58a8ea9673acb544c39a269fdc919af1
Binary files /dev/null and b/runs/fashion_trainer_20230920_084633/Training vs. Validation Loss_Training/events.out.tfevents.1695192396.msip-dell.ims.rwth-aachen.de.1218875.34 differ
diff --git a/runs/fashion_trainer_20230920_084633/Training vs. Validation Loss_Validation/events.out.tfevents.1695192396.msip-dell.ims.rwth-aachen.de.1218875.35 b/runs/fashion_trainer_20230920_084633/Training vs. Validation Loss_Validation/events.out.tfevents.1695192396.msip-dell.ims.rwth-aachen.de.1218875.35
new file mode 100644
index 0000000000000000000000000000000000000000..1427682b82ad76898972033e74d46883b7cd904f
Binary files /dev/null and b/runs/fashion_trainer_20230920_084633/Training vs. Validation Loss_Validation/events.out.tfevents.1695192396.msip-dell.ims.rwth-aachen.de.1218875.35 differ
diff --git a/runs/fashion_trainer_20230920_084633/events.out.tfevents.1695192393.msip-dell.ims.rwth-aachen.de.1218875.33 b/runs/fashion_trainer_20230920_084633/events.out.tfevents.1695192393.msip-dell.ims.rwth-aachen.de.1218875.33
new file mode 100644
index 0000000000000000000000000000000000000000..858a044a73509048955dc1768bb1ea49d8f330fc
Binary files /dev/null and b/runs/fashion_trainer_20230920_084633/events.out.tfevents.1695192393.msip-dell.ims.rwth-aachen.de.1218875.33 differ
diff --git a/runs/fashion_trainer_20230920_084834/Training vs. Validation Loss_Training/events.out.tfevents.1695192517.msip-dell.ims.rwth-aachen.de.1218876.37 b/runs/fashion_trainer_20230920_084834/Training vs. Validation Loss_Training/events.out.tfevents.1695192517.msip-dell.ims.rwth-aachen.de.1218876.37
new file mode 100644
index 0000000000000000000000000000000000000000..cd3a678e581b9e12363b741508cbd95465785ee2
Binary files /dev/null and b/runs/fashion_trainer_20230920_084834/Training vs. Validation Loss_Training/events.out.tfevents.1695192517.msip-dell.ims.rwth-aachen.de.1218876.37 differ
diff --git a/runs/fashion_trainer_20230920_084834/Training vs. Validation Loss_Validation/events.out.tfevents.1695192517.msip-dell.ims.rwth-aachen.de.1218876.38 b/runs/fashion_trainer_20230920_084834/Training vs. Validation Loss_Validation/events.out.tfevents.1695192517.msip-dell.ims.rwth-aachen.de.1218876.38
new file mode 100644
index 0000000000000000000000000000000000000000..6aab0b0e32ace527ba07b22c56aec6fb50ff7d5d
Binary files /dev/null and b/runs/fashion_trainer_20230920_084834/Training vs. Validation Loss_Validation/events.out.tfevents.1695192517.msip-dell.ims.rwth-aachen.de.1218876.38 differ
diff --git a/runs/fashion_trainer_20230920_084834/events.out.tfevents.1695192514.msip-dell.ims.rwth-aachen.de.1218876.36 b/runs/fashion_trainer_20230920_084834/events.out.tfevents.1695192514.msip-dell.ims.rwth-aachen.de.1218876.36
new file mode 100644
index 0000000000000000000000000000000000000000..10d6254b1c46bbfa9f4efa08f68c6ab9af0d6b00
Binary files /dev/null and b/runs/fashion_trainer_20230920_084834/events.out.tfevents.1695192514.msip-dell.ims.rwth-aachen.de.1218876.36 differ
diff --git a/runs/fashion_trainer_20230920_084857/Training vs. Validation Loss_Training/events.out.tfevents.1695192540.msip-dell.ims.rwth-aachen.de.1218875.37 b/runs/fashion_trainer_20230920_084857/Training vs. Validation Loss_Training/events.out.tfevents.1695192540.msip-dell.ims.rwth-aachen.de.1218875.37
new file mode 100644
index 0000000000000000000000000000000000000000..f545494a10f3f8dd31fd4f4898467a9919b8f531
Binary files /dev/null and b/runs/fashion_trainer_20230920_084857/Training vs. Validation Loss_Training/events.out.tfevents.1695192540.msip-dell.ims.rwth-aachen.de.1218875.37 differ
diff --git a/runs/fashion_trainer_20230920_084857/Training vs. Validation Loss_Validation/events.out.tfevents.1695192540.msip-dell.ims.rwth-aachen.de.1218875.38 b/runs/fashion_trainer_20230920_084857/Training vs. Validation Loss_Validation/events.out.tfevents.1695192540.msip-dell.ims.rwth-aachen.de.1218875.38
new file mode 100644
index 0000000000000000000000000000000000000000..87352d6d4b662ea2ee1a4a9a34c341d8ec61c302
Binary files /dev/null and b/runs/fashion_trainer_20230920_084857/Training vs. Validation Loss_Validation/events.out.tfevents.1695192540.msip-dell.ims.rwth-aachen.de.1218875.38 differ
diff --git a/runs/fashion_trainer_20230920_084857/events.out.tfevents.1695192537.msip-dell.ims.rwth-aachen.de.1218875.36 b/runs/fashion_trainer_20230920_084857/events.out.tfevents.1695192537.msip-dell.ims.rwth-aachen.de.1218875.36
new file mode 100644
index 0000000000000000000000000000000000000000..2898c933fc340e7801859981d3bab7f697d7523e
Binary files /dev/null and b/runs/fashion_trainer_20230920_084857/events.out.tfevents.1695192537.msip-dell.ims.rwth-aachen.de.1218875.36 differ
diff --git a/runs/fashion_trainer_20230920_085057/Training vs. Validation Loss_Training/events.out.tfevents.1695192659.msip-dell.ims.rwth-aachen.de.1218876.40 b/runs/fashion_trainer_20230920_085057/Training vs. Validation Loss_Training/events.out.tfevents.1695192659.msip-dell.ims.rwth-aachen.de.1218876.40
new file mode 100644
index 0000000000000000000000000000000000000000..4bcde25ce5dda4d72c2e8be8840de1841016a820
Binary files /dev/null and b/runs/fashion_trainer_20230920_085057/Training vs. Validation Loss_Training/events.out.tfevents.1695192659.msip-dell.ims.rwth-aachen.de.1218876.40 differ
diff --git a/runs/fashion_trainer_20230920_085057/Training vs. Validation Loss_Validation/events.out.tfevents.1695192659.msip-dell.ims.rwth-aachen.de.1218876.41 b/runs/fashion_trainer_20230920_085057/Training vs. Validation Loss_Validation/events.out.tfevents.1695192659.msip-dell.ims.rwth-aachen.de.1218876.41
new file mode 100644
index 0000000000000000000000000000000000000000..7a1b364f09ff51a04fa113e1b9bada101b658658
Binary files /dev/null and b/runs/fashion_trainer_20230920_085057/Training vs. Validation Loss_Validation/events.out.tfevents.1695192659.msip-dell.ims.rwth-aachen.de.1218876.41 differ
diff --git a/runs/fashion_trainer_20230920_085057/events.out.tfevents.1695192657.msip-dell.ims.rwth-aachen.de.1218876.39 b/runs/fashion_trainer_20230920_085057/events.out.tfevents.1695192657.msip-dell.ims.rwth-aachen.de.1218876.39
new file mode 100644
index 0000000000000000000000000000000000000000..04d2330febc461cbc7e60c50095503619ef8c824
Binary files /dev/null and b/runs/fashion_trainer_20230920_085057/events.out.tfevents.1695192657.msip-dell.ims.rwth-aachen.de.1218876.39 differ
diff --git a/runs/fashion_trainer_20230920_085126/Training vs. Validation Loss_Training/events.out.tfevents.1695192688.msip-dell.ims.rwth-aachen.de.1218875.40 b/runs/fashion_trainer_20230920_085126/Training vs. Validation Loss_Training/events.out.tfevents.1695192688.msip-dell.ims.rwth-aachen.de.1218875.40
new file mode 100644
index 0000000000000000000000000000000000000000..31075a8e1cfb1a3c4a1442e4c8ea9b6f34dfd1af
Binary files /dev/null and b/runs/fashion_trainer_20230920_085126/Training vs. Validation Loss_Training/events.out.tfevents.1695192688.msip-dell.ims.rwth-aachen.de.1218875.40 differ
diff --git a/runs/fashion_trainer_20230920_085126/Training vs. Validation Loss_Validation/events.out.tfevents.1695192688.msip-dell.ims.rwth-aachen.de.1218875.41 b/runs/fashion_trainer_20230920_085126/Training vs. Validation Loss_Validation/events.out.tfevents.1695192688.msip-dell.ims.rwth-aachen.de.1218875.41
new file mode 100644
index 0000000000000000000000000000000000000000..21e17f30ef66de093d3ac08b1e32f1fd1b6a0c8a
Binary files /dev/null and b/runs/fashion_trainer_20230920_085126/Training vs. Validation Loss_Validation/events.out.tfevents.1695192688.msip-dell.ims.rwth-aachen.de.1218875.41 differ
diff --git a/runs/fashion_trainer_20230920_085126/events.out.tfevents.1695192686.msip-dell.ims.rwth-aachen.de.1218875.39 b/runs/fashion_trainer_20230920_085126/events.out.tfevents.1695192686.msip-dell.ims.rwth-aachen.de.1218875.39
new file mode 100644
index 0000000000000000000000000000000000000000..396f29e2693239d55ec38c17aad689fcd01a4728
Binary files /dev/null and b/runs/fashion_trainer_20230920_085126/events.out.tfevents.1695192686.msip-dell.ims.rwth-aachen.de.1218875.39 differ
diff --git a/runs/fashion_trainer_20230920_085324/Training vs. Validation Loss_Training/events.out.tfevents.1695192806.msip-dell.ims.rwth-aachen.de.1218876.43 b/runs/fashion_trainer_20230920_085324/Training vs. Validation Loss_Training/events.out.tfevents.1695192806.msip-dell.ims.rwth-aachen.de.1218876.43
new file mode 100644
index 0000000000000000000000000000000000000000..924112352359395fbbc6a8113b9f6aad73e9c5cd
Binary files /dev/null and b/runs/fashion_trainer_20230920_085324/Training vs. Validation Loss_Training/events.out.tfevents.1695192806.msip-dell.ims.rwth-aachen.de.1218876.43 differ
diff --git a/runs/fashion_trainer_20230920_085324/Training vs. Validation Loss_Validation/events.out.tfevents.1695192806.msip-dell.ims.rwth-aachen.de.1218876.44 b/runs/fashion_trainer_20230920_085324/Training vs. Validation Loss_Validation/events.out.tfevents.1695192806.msip-dell.ims.rwth-aachen.de.1218876.44
new file mode 100644
index 0000000000000000000000000000000000000000..e781c343e1fab56661ad3c81a8e3a0eab4b5a6f1
Binary files /dev/null and b/runs/fashion_trainer_20230920_085324/Training vs. Validation Loss_Validation/events.out.tfevents.1695192806.msip-dell.ims.rwth-aachen.de.1218876.44 differ
diff --git a/runs/fashion_trainer_20230920_085324/events.out.tfevents.1695192804.msip-dell.ims.rwth-aachen.de.1218876.42 b/runs/fashion_trainer_20230920_085324/events.out.tfevents.1695192804.msip-dell.ims.rwth-aachen.de.1218876.42
new file mode 100644
index 0000000000000000000000000000000000000000..29d68c738b560f0958dd327ddc8c1d55fd05989f
Binary files /dev/null and b/runs/fashion_trainer_20230920_085324/events.out.tfevents.1695192804.msip-dell.ims.rwth-aachen.de.1218876.42 differ
diff --git a/runs/fashion_trainer_20230920_085349/Training vs. Validation Loss_Training/events.out.tfevents.1695192832.msip-dell.ims.rwth-aachen.de.1218875.43 b/runs/fashion_trainer_20230920_085349/Training vs. Validation Loss_Training/events.out.tfevents.1695192832.msip-dell.ims.rwth-aachen.de.1218875.43
new file mode 100644
index 0000000000000000000000000000000000000000..05032896df2f19d04e80db578b61e8d99107bcf7
Binary files /dev/null and b/runs/fashion_trainer_20230920_085349/Training vs. Validation Loss_Training/events.out.tfevents.1695192832.msip-dell.ims.rwth-aachen.de.1218875.43 differ
diff --git a/runs/fashion_trainer_20230920_085349/Training vs. Validation Loss_Validation/events.out.tfevents.1695192832.msip-dell.ims.rwth-aachen.de.1218875.44 b/runs/fashion_trainer_20230920_085349/Training vs. Validation Loss_Validation/events.out.tfevents.1695192832.msip-dell.ims.rwth-aachen.de.1218875.44
new file mode 100644
index 0000000000000000000000000000000000000000..78a5933431cf849a31c91ac69d2b141378496fb6
Binary files /dev/null and b/runs/fashion_trainer_20230920_085349/Training vs. Validation Loss_Validation/events.out.tfevents.1695192832.msip-dell.ims.rwth-aachen.de.1218875.44 differ
diff --git a/runs/fashion_trainer_20230920_085349/events.out.tfevents.1695192829.msip-dell.ims.rwth-aachen.de.1218875.42 b/runs/fashion_trainer_20230920_085349/events.out.tfevents.1695192829.msip-dell.ims.rwth-aachen.de.1218875.42
new file mode 100644
index 0000000000000000000000000000000000000000..35dc5d85e55c0b2147f3398e27b16b05e7ad7cb5
Binary files /dev/null and b/runs/fashion_trainer_20230920_085349/events.out.tfevents.1695192829.msip-dell.ims.rwth-aachen.de.1218875.42 differ
diff --git a/runs/fashion_trainer_20230920_085550/Training vs. Validation Loss_Training/events.out.tfevents.1695192953.msip-dell.ims.rwth-aachen.de.1218876.46 b/runs/fashion_trainer_20230920_085550/Training vs. Validation Loss_Training/events.out.tfevents.1695192953.msip-dell.ims.rwth-aachen.de.1218876.46
new file mode 100644
index 0000000000000000000000000000000000000000..f7c021e57e04c71f5c5ac82c2504c61ce08b87d0
Binary files /dev/null and b/runs/fashion_trainer_20230920_085550/Training vs. Validation Loss_Training/events.out.tfevents.1695192953.msip-dell.ims.rwth-aachen.de.1218876.46 differ
diff --git a/runs/fashion_trainer_20230920_085550/Training vs. Validation Loss_Validation/events.out.tfevents.1695192953.msip-dell.ims.rwth-aachen.de.1218876.47 b/runs/fashion_trainer_20230920_085550/Training vs. Validation Loss_Validation/events.out.tfevents.1695192953.msip-dell.ims.rwth-aachen.de.1218876.47
new file mode 100644
index 0000000000000000000000000000000000000000..70c2ab75575f6e70f955bf7279be10bd9c1d6834
Binary files /dev/null and b/runs/fashion_trainer_20230920_085550/Training vs. Validation Loss_Validation/events.out.tfevents.1695192953.msip-dell.ims.rwth-aachen.de.1218876.47 differ
diff --git a/runs/fashion_trainer_20230920_085550/events.out.tfevents.1695192950.msip-dell.ims.rwth-aachen.de.1218876.45 b/runs/fashion_trainer_20230920_085550/events.out.tfevents.1695192950.msip-dell.ims.rwth-aachen.de.1218876.45
new file mode 100644
index 0000000000000000000000000000000000000000..0225a1fb1a64f70df56cd7a143635ff7a920352f
Binary files /dev/null and b/runs/fashion_trainer_20230920_085550/events.out.tfevents.1695192950.msip-dell.ims.rwth-aachen.de.1218876.45 differ
diff --git a/runs/fashion_trainer_20230920_085612/Training vs. Validation Loss_Training/events.out.tfevents.1695192975.msip-dell.ims.rwth-aachen.de.1218875.46 b/runs/fashion_trainer_20230920_085612/Training vs. Validation Loss_Training/events.out.tfevents.1695192975.msip-dell.ims.rwth-aachen.de.1218875.46
new file mode 100644
index 0000000000000000000000000000000000000000..b164316e0d2f070ecd6fc5b47034218d280e7afd
Binary files /dev/null and b/runs/fashion_trainer_20230920_085612/Training vs. Validation Loss_Training/events.out.tfevents.1695192975.msip-dell.ims.rwth-aachen.de.1218875.46 differ
diff --git a/runs/fashion_trainer_20230920_085612/Training vs. Validation Loss_Validation/events.out.tfevents.1695192975.msip-dell.ims.rwth-aachen.de.1218875.47 b/runs/fashion_trainer_20230920_085612/Training vs. Validation Loss_Validation/events.out.tfevents.1695192975.msip-dell.ims.rwth-aachen.de.1218875.47
new file mode 100644
index 0000000000000000000000000000000000000000..93bd3a89ac765c44ad7b0dbf8e289bee004f4de2
Binary files /dev/null and b/runs/fashion_trainer_20230920_085612/Training vs. Validation Loss_Validation/events.out.tfevents.1695192975.msip-dell.ims.rwth-aachen.de.1218875.47 differ
diff --git a/runs/fashion_trainer_20230920_085612/events.out.tfevents.1695192972.msip-dell.ims.rwth-aachen.de.1218875.45 b/runs/fashion_trainer_20230920_085612/events.out.tfevents.1695192972.msip-dell.ims.rwth-aachen.de.1218875.45
new file mode 100644
index 0000000000000000000000000000000000000000..84d336e612ac7fc77b3a873c97d86cf4d862dd27
Binary files /dev/null and b/runs/fashion_trainer_20230920_085612/events.out.tfevents.1695192972.msip-dell.ims.rwth-aachen.de.1218875.45 differ
diff --git a/runs/fashion_trainer_20230920_085817/Training vs. Validation Loss_Training/events.out.tfevents.1695193100.msip-dell.ims.rwth-aachen.de.1218876.49 b/runs/fashion_trainer_20230920_085817/Training vs. Validation Loss_Training/events.out.tfevents.1695193100.msip-dell.ims.rwth-aachen.de.1218876.49
new file mode 100644
index 0000000000000000000000000000000000000000..622a73520cf375ab44d6cec33cf1607a95d938c4
Binary files /dev/null and b/runs/fashion_trainer_20230920_085817/Training vs. Validation Loss_Training/events.out.tfevents.1695193100.msip-dell.ims.rwth-aachen.de.1218876.49 differ
diff --git a/runs/fashion_trainer_20230920_085817/Training vs. Validation Loss_Validation/events.out.tfevents.1695193100.msip-dell.ims.rwth-aachen.de.1218876.50 b/runs/fashion_trainer_20230920_085817/Training vs. Validation Loss_Validation/events.out.tfevents.1695193100.msip-dell.ims.rwth-aachen.de.1218876.50
new file mode 100644
index 0000000000000000000000000000000000000000..ae863cf319796fbb25268dad43519e528a9289b2
Binary files /dev/null and b/runs/fashion_trainer_20230920_085817/Training vs. Validation Loss_Validation/events.out.tfevents.1695193100.msip-dell.ims.rwth-aachen.de.1218876.50 differ
diff --git a/runs/fashion_trainer_20230920_085817/events.out.tfevents.1695193097.msip-dell.ims.rwth-aachen.de.1218876.48 b/runs/fashion_trainer_20230920_085817/events.out.tfevents.1695193097.msip-dell.ims.rwth-aachen.de.1218876.48
new file mode 100644
index 0000000000000000000000000000000000000000..b6180ddd12082f7ff8a764fcfd6c8dbf216421fb
Binary files /dev/null and b/runs/fashion_trainer_20230920_085817/events.out.tfevents.1695193097.msip-dell.ims.rwth-aachen.de.1218876.48 differ
diff --git a/runs/fashion_trainer_20230920_085841/Training vs. Validation Loss_Training/events.out.tfevents.1695193124.msip-dell.ims.rwth-aachen.de.1218875.49 b/runs/fashion_trainer_20230920_085841/Training vs. Validation Loss_Training/events.out.tfevents.1695193124.msip-dell.ims.rwth-aachen.de.1218875.49
new file mode 100644
index 0000000000000000000000000000000000000000..67172d50ed6d5584e72a5d7f6a71da67f8b1dc14
Binary files /dev/null and b/runs/fashion_trainer_20230920_085841/Training vs. Validation Loss_Training/events.out.tfevents.1695193124.msip-dell.ims.rwth-aachen.de.1218875.49 differ
diff --git a/runs/fashion_trainer_20230920_085841/Training vs. Validation Loss_Validation/events.out.tfevents.1695193124.msip-dell.ims.rwth-aachen.de.1218875.50 b/runs/fashion_trainer_20230920_085841/Training vs. Validation Loss_Validation/events.out.tfevents.1695193124.msip-dell.ims.rwth-aachen.de.1218875.50
new file mode 100644
index 0000000000000000000000000000000000000000..592f3ee0c8965016efc00f35a145e867bc974ebb
Binary files /dev/null and b/runs/fashion_trainer_20230920_085841/Training vs. Validation Loss_Validation/events.out.tfevents.1695193124.msip-dell.ims.rwth-aachen.de.1218875.50 differ
diff --git a/runs/fashion_trainer_20230920_085841/events.out.tfevents.1695193121.msip-dell.ims.rwth-aachen.de.1218875.48 b/runs/fashion_trainer_20230920_085841/events.out.tfevents.1695193121.msip-dell.ims.rwth-aachen.de.1218875.48
new file mode 100644
index 0000000000000000000000000000000000000000..c6b68ba499d5b981068663b4f2bd1338b20bb3ba
Binary files /dev/null and b/runs/fashion_trainer_20230920_085841/events.out.tfevents.1695193121.msip-dell.ims.rwth-aachen.de.1218875.48 differ
diff --git a/runs/fashion_trainer_20230920_090051/Training vs. Validation Loss_Training/events.out.tfevents.1695193254.msip-dell.ims.rwth-aachen.de.1218876.52 b/runs/fashion_trainer_20230920_090051/Training vs. Validation Loss_Training/events.out.tfevents.1695193254.msip-dell.ims.rwth-aachen.de.1218876.52
new file mode 100644
index 0000000000000000000000000000000000000000..1ca98ad1cde9dad8ecd36fd24480bfeb488fb62a
Binary files /dev/null and b/runs/fashion_trainer_20230920_090051/Training vs. Validation Loss_Training/events.out.tfevents.1695193254.msip-dell.ims.rwth-aachen.de.1218876.52 differ
diff --git a/runs/fashion_trainer_20230920_090051/Training vs. Validation Loss_Validation/events.out.tfevents.1695193254.msip-dell.ims.rwth-aachen.de.1218876.53 b/runs/fashion_trainer_20230920_090051/Training vs. Validation Loss_Validation/events.out.tfevents.1695193254.msip-dell.ims.rwth-aachen.de.1218876.53
new file mode 100644
index 0000000000000000000000000000000000000000..9d9dde3dee912a697c352ac006bb4303189d4c41
Binary files /dev/null and b/runs/fashion_trainer_20230920_090051/Training vs. Validation Loss_Validation/events.out.tfevents.1695193254.msip-dell.ims.rwth-aachen.de.1218876.53 differ
diff --git a/runs/fashion_trainer_20230920_090051/events.out.tfevents.1695193251.msip-dell.ims.rwth-aachen.de.1218876.51 b/runs/fashion_trainer_20230920_090051/events.out.tfevents.1695193251.msip-dell.ims.rwth-aachen.de.1218876.51
new file mode 100644
index 0000000000000000000000000000000000000000..45facc2f4caafcdb7e5bdd54b76357c9c8920474
Binary files /dev/null and b/runs/fashion_trainer_20230920_090051/events.out.tfevents.1695193251.msip-dell.ims.rwth-aachen.de.1218876.51 differ
diff --git a/runs/fashion_trainer_20230920_090107/Training vs. Validation Loss_Training/events.out.tfevents.1695193270.msip-dell.ims.rwth-aachen.de.1218875.52 b/runs/fashion_trainer_20230920_090107/Training vs. Validation Loss_Training/events.out.tfevents.1695193270.msip-dell.ims.rwth-aachen.de.1218875.52
new file mode 100644
index 0000000000000000000000000000000000000000..3a80ef24ee1bd0874c816a6469c972ad9ce20a8b
Binary files /dev/null and b/runs/fashion_trainer_20230920_090107/Training vs. Validation Loss_Training/events.out.tfevents.1695193270.msip-dell.ims.rwth-aachen.de.1218875.52 differ
diff --git a/runs/fashion_trainer_20230920_090107/Training vs. Validation Loss_Validation/events.out.tfevents.1695193270.msip-dell.ims.rwth-aachen.de.1218875.53 b/runs/fashion_trainer_20230920_090107/Training vs. Validation Loss_Validation/events.out.tfevents.1695193270.msip-dell.ims.rwth-aachen.de.1218875.53
new file mode 100644
index 0000000000000000000000000000000000000000..9936cc2250871396fb986ff97caf79dd65ae305f
Binary files /dev/null and b/runs/fashion_trainer_20230920_090107/Training vs. Validation Loss_Validation/events.out.tfevents.1695193270.msip-dell.ims.rwth-aachen.de.1218875.53 differ
diff --git a/runs/fashion_trainer_20230920_090107/events.out.tfevents.1695193267.msip-dell.ims.rwth-aachen.de.1218875.51 b/runs/fashion_trainer_20230920_090107/events.out.tfevents.1695193267.msip-dell.ims.rwth-aachen.de.1218875.51
new file mode 100644
index 0000000000000000000000000000000000000000..5e54777c1e5d0c5c138792111d7fd2178c667e96
Binary files /dev/null and b/runs/fashion_trainer_20230920_090107/events.out.tfevents.1695193267.msip-dell.ims.rwth-aachen.de.1218875.51 differ
diff --git a/runs/fashion_trainer_20230920_090318/Training vs. Validation Loss_Training/events.out.tfevents.1695193401.msip-dell.ims.rwth-aachen.de.1218876.55 b/runs/fashion_trainer_20230920_090318/Training vs. Validation Loss_Training/events.out.tfevents.1695193401.msip-dell.ims.rwth-aachen.de.1218876.55
new file mode 100644
index 0000000000000000000000000000000000000000..ca9eb67aeb9a7d386d2cc31e226aada03df1e5a9
Binary files /dev/null and b/runs/fashion_trainer_20230920_090318/Training vs. Validation Loss_Training/events.out.tfevents.1695193401.msip-dell.ims.rwth-aachen.de.1218876.55 differ
diff --git a/runs/fashion_trainer_20230920_090318/Training vs. Validation Loss_Validation/events.out.tfevents.1695193401.msip-dell.ims.rwth-aachen.de.1218876.56 b/runs/fashion_trainer_20230920_090318/Training vs. Validation Loss_Validation/events.out.tfevents.1695193401.msip-dell.ims.rwth-aachen.de.1218876.56
new file mode 100644
index 0000000000000000000000000000000000000000..a5337bbf1ae2f1c40bd8b9792d0c4c1fe985d8cc
Binary files /dev/null and b/runs/fashion_trainer_20230920_090318/Training vs. Validation Loss_Validation/events.out.tfevents.1695193401.msip-dell.ims.rwth-aachen.de.1218876.56 differ
diff --git a/runs/fashion_trainer_20230920_090318/events.out.tfevents.1695193398.msip-dell.ims.rwth-aachen.de.1218876.54 b/runs/fashion_trainer_20230920_090318/events.out.tfevents.1695193398.msip-dell.ims.rwth-aachen.de.1218876.54
new file mode 100644
index 0000000000000000000000000000000000000000..00c083dd2915712ffe6239604dd3e720747fcc99
Binary files /dev/null and b/runs/fashion_trainer_20230920_090318/events.out.tfevents.1695193398.msip-dell.ims.rwth-aachen.de.1218876.54 differ
diff --git a/runs/fashion_trainer_20230920_090330/Training vs. Validation Loss_Training/events.out.tfevents.1695193413.msip-dell.ims.rwth-aachen.de.1218875.55 b/runs/fashion_trainer_20230920_090330/Training vs. Validation Loss_Training/events.out.tfevents.1695193413.msip-dell.ims.rwth-aachen.de.1218875.55
new file mode 100644
index 0000000000000000000000000000000000000000..3d76623771d715ab1f69cc3e2b2a48f8923d8592
Binary files /dev/null and b/runs/fashion_trainer_20230920_090330/Training vs. Validation Loss_Training/events.out.tfevents.1695193413.msip-dell.ims.rwth-aachen.de.1218875.55 differ
diff --git a/runs/fashion_trainer_20230920_090330/Training vs. Validation Loss_Validation/events.out.tfevents.1695193413.msip-dell.ims.rwth-aachen.de.1218875.56 b/runs/fashion_trainer_20230920_090330/Training vs. Validation Loss_Validation/events.out.tfevents.1695193413.msip-dell.ims.rwth-aachen.de.1218875.56
new file mode 100644
index 0000000000000000000000000000000000000000..965b2194d0cc56b88b565581038e4573d3028109
Binary files /dev/null and b/runs/fashion_trainer_20230920_090330/Training vs. Validation Loss_Validation/events.out.tfevents.1695193413.msip-dell.ims.rwth-aachen.de.1218875.56 differ
diff --git a/runs/fashion_trainer_20230920_090330/events.out.tfevents.1695193410.msip-dell.ims.rwth-aachen.de.1218875.54 b/runs/fashion_trainer_20230920_090330/events.out.tfevents.1695193410.msip-dell.ims.rwth-aachen.de.1218875.54
new file mode 100644
index 0000000000000000000000000000000000000000..5b8a72bf6c2e0ee49484c5c8b47e0eb55a896720
Binary files /dev/null and b/runs/fashion_trainer_20230920_090330/events.out.tfevents.1695193410.msip-dell.ims.rwth-aachen.de.1218875.54 differ
diff --git a/runs/fashion_trainer_20230920_090546/Training vs. Validation Loss_Training/events.out.tfevents.1695193549.msip-dell.ims.rwth-aachen.de.1218876.58 b/runs/fashion_trainer_20230920_090546/Training vs. Validation Loss_Training/events.out.tfevents.1695193549.msip-dell.ims.rwth-aachen.de.1218876.58
new file mode 100644
index 0000000000000000000000000000000000000000..2246a75bbbac2fdaa3ef4f44df768d89a059e0aa
Binary files /dev/null and b/runs/fashion_trainer_20230920_090546/Training vs. Validation Loss_Training/events.out.tfevents.1695193549.msip-dell.ims.rwth-aachen.de.1218876.58 differ
diff --git a/runs/fashion_trainer_20230920_090546/Training vs. Validation Loss_Validation/events.out.tfevents.1695193549.msip-dell.ims.rwth-aachen.de.1218876.59 b/runs/fashion_trainer_20230920_090546/Training vs. Validation Loss_Validation/events.out.tfevents.1695193549.msip-dell.ims.rwth-aachen.de.1218876.59
new file mode 100644
index 0000000000000000000000000000000000000000..9a647d21d26466a1d8356e95e1a9301820940c3e
Binary files /dev/null and b/runs/fashion_trainer_20230920_090546/Training vs. Validation Loss_Validation/events.out.tfevents.1695193549.msip-dell.ims.rwth-aachen.de.1218876.59 differ
diff --git a/runs/fashion_trainer_20230920_090546/events.out.tfevents.1695193546.msip-dell.ims.rwth-aachen.de.1218876.57 b/runs/fashion_trainer_20230920_090546/events.out.tfevents.1695193546.msip-dell.ims.rwth-aachen.de.1218876.57
new file mode 100644
index 0000000000000000000000000000000000000000..701c3c01379c8a35c4f1cce45d63e88c214a3688
Binary files /dev/null and b/runs/fashion_trainer_20230920_090546/events.out.tfevents.1695193546.msip-dell.ims.rwth-aachen.de.1218876.57 differ
diff --git a/runs/fashion_trainer_20230920_090557/Training vs. Validation Loss_Training/events.out.tfevents.1695193559.msip-dell.ims.rwth-aachen.de.1218875.58 b/runs/fashion_trainer_20230920_090557/Training vs. Validation Loss_Training/events.out.tfevents.1695193559.msip-dell.ims.rwth-aachen.de.1218875.58
new file mode 100644
index 0000000000000000000000000000000000000000..ff9319718405bfeb1a433fdeb5da9376d5190818
Binary files /dev/null and b/runs/fashion_trainer_20230920_090557/Training vs. Validation Loss_Training/events.out.tfevents.1695193559.msip-dell.ims.rwth-aachen.de.1218875.58 differ
diff --git a/runs/fashion_trainer_20230920_090557/Training vs. Validation Loss_Validation/events.out.tfevents.1695193559.msip-dell.ims.rwth-aachen.de.1218875.59 b/runs/fashion_trainer_20230920_090557/Training vs. Validation Loss_Validation/events.out.tfevents.1695193559.msip-dell.ims.rwth-aachen.de.1218875.59
new file mode 100644
index 0000000000000000000000000000000000000000..98f6fdc4fa45060a85f67ad0d6da459a93778dc0
Binary files /dev/null and b/runs/fashion_trainer_20230920_090557/Training vs. Validation Loss_Validation/events.out.tfevents.1695193559.msip-dell.ims.rwth-aachen.de.1218875.59 differ
diff --git a/runs/fashion_trainer_20230920_090557/events.out.tfevents.1695193557.msip-dell.ims.rwth-aachen.de.1218875.57 b/runs/fashion_trainer_20230920_090557/events.out.tfevents.1695193557.msip-dell.ims.rwth-aachen.de.1218875.57
new file mode 100644
index 0000000000000000000000000000000000000000..ca43479d6c9dc3f7b36de5f9e40224035d80262e
Binary files /dev/null and b/runs/fashion_trainer_20230920_090557/events.out.tfevents.1695193557.msip-dell.ims.rwth-aachen.de.1218875.57 differ
diff --git a/runs/fashion_trainer_20230920_093431/Training vs. Validation Loss_Training/events.out.tfevents.1695195274.msip-dell.ims.rwth-aachen.de.1222029.1 b/runs/fashion_trainer_20230920_093431/Training vs. Validation Loss_Training/events.out.tfevents.1695195274.msip-dell.ims.rwth-aachen.de.1222029.1
new file mode 100644
index 0000000000000000000000000000000000000000..42ccfa5d59736ca710c6d53345c1be411c2b6cec
Binary files /dev/null and b/runs/fashion_trainer_20230920_093431/Training vs. Validation Loss_Training/events.out.tfevents.1695195274.msip-dell.ims.rwth-aachen.de.1222029.1 differ
diff --git a/runs/fashion_trainer_20230920_093431/Training vs. Validation Loss_Training/events.out.tfevents.1695195274.msip-dell.ims.rwth-aachen.de.1222030.1 b/runs/fashion_trainer_20230920_093431/Training vs. Validation Loss_Training/events.out.tfevents.1695195274.msip-dell.ims.rwth-aachen.de.1222030.1
new file mode 100644
index 0000000000000000000000000000000000000000..171a4b0735c803e3259f54c315aaac47968c7d6b
Binary files /dev/null and b/runs/fashion_trainer_20230920_093431/Training vs. Validation Loss_Training/events.out.tfevents.1695195274.msip-dell.ims.rwth-aachen.de.1222030.1 differ
diff --git a/runs/fashion_trainer_20230920_093431/Training vs. Validation Loss_Validation/events.out.tfevents.1695195274.msip-dell.ims.rwth-aachen.de.1222029.2 b/runs/fashion_trainer_20230920_093431/Training vs. Validation Loss_Validation/events.out.tfevents.1695195274.msip-dell.ims.rwth-aachen.de.1222029.2
new file mode 100644
index 0000000000000000000000000000000000000000..1c71207a1b2fe1b6a00d6faf5263c110c37f2035
Binary files /dev/null and b/runs/fashion_trainer_20230920_093431/Training vs. Validation Loss_Validation/events.out.tfevents.1695195274.msip-dell.ims.rwth-aachen.de.1222029.2 differ
diff --git a/runs/fashion_trainer_20230920_093431/Training vs. Validation Loss_Validation/events.out.tfevents.1695195274.msip-dell.ims.rwth-aachen.de.1222030.2 b/runs/fashion_trainer_20230920_093431/Training vs. Validation Loss_Validation/events.out.tfevents.1695195274.msip-dell.ims.rwth-aachen.de.1222030.2
new file mode 100644
index 0000000000000000000000000000000000000000..9b3bf0b8ceea4b9fd6b1b295a6494f9681964429
Binary files /dev/null and b/runs/fashion_trainer_20230920_093431/Training vs. Validation Loss_Validation/events.out.tfevents.1695195274.msip-dell.ims.rwth-aachen.de.1222030.2 differ
diff --git a/runs/fashion_trainer_20230920_093431/events.out.tfevents.1695195271.msip-dell.ims.rwth-aachen.de.1222029.0 b/runs/fashion_trainer_20230920_093431/events.out.tfevents.1695195271.msip-dell.ims.rwth-aachen.de.1222029.0
new file mode 100644
index 0000000000000000000000000000000000000000..e4eb4b62151bfe1e540ce9c75cdede16c9739e6d
Binary files /dev/null and b/runs/fashion_trainer_20230920_093431/events.out.tfevents.1695195271.msip-dell.ims.rwth-aachen.de.1222029.0 differ
diff --git a/runs/fashion_trainer_20230920_093431/events.out.tfevents.1695195271.msip-dell.ims.rwth-aachen.de.1222030.0 b/runs/fashion_trainer_20230920_093431/events.out.tfevents.1695195271.msip-dell.ims.rwth-aachen.de.1222030.0
new file mode 100644
index 0000000000000000000000000000000000000000..4779f3bd9aa4528b497f40c9723d77d10e4fb82e
Binary files /dev/null and b/runs/fashion_trainer_20230920_093431/events.out.tfevents.1695195271.msip-dell.ims.rwth-aachen.de.1222030.0 differ
diff --git a/runs/fashion_trainer_20230920_093654/Training vs. Validation Loss_Training/events.out.tfevents.1695195416.msip-dell.ims.rwth-aachen.de.1222030.4 b/runs/fashion_trainer_20230920_093654/Training vs. Validation Loss_Training/events.out.tfevents.1695195416.msip-dell.ims.rwth-aachen.de.1222030.4
new file mode 100644
index 0000000000000000000000000000000000000000..a4a239de649f6c8569fb257117a732f81ac46208
Binary files /dev/null and b/runs/fashion_trainer_20230920_093654/Training vs. Validation Loss_Training/events.out.tfevents.1695195416.msip-dell.ims.rwth-aachen.de.1222030.4 differ
diff --git a/runs/fashion_trainer_20230920_093654/Training vs. Validation Loss_Validation/events.out.tfevents.1695195416.msip-dell.ims.rwth-aachen.de.1222030.5 b/runs/fashion_trainer_20230920_093654/Training vs. Validation Loss_Validation/events.out.tfevents.1695195416.msip-dell.ims.rwth-aachen.de.1222030.5
new file mode 100644
index 0000000000000000000000000000000000000000..c105e135c8183b0019b35d6716449276c4cc75d6
Binary files /dev/null and b/runs/fashion_trainer_20230920_093654/Training vs. Validation Loss_Validation/events.out.tfevents.1695195416.msip-dell.ims.rwth-aachen.de.1222030.5 differ
diff --git a/runs/fashion_trainer_20230920_093654/events.out.tfevents.1695195414.msip-dell.ims.rwth-aachen.de.1222030.3 b/runs/fashion_trainer_20230920_093654/events.out.tfevents.1695195414.msip-dell.ims.rwth-aachen.de.1222030.3
new file mode 100644
index 0000000000000000000000000000000000000000..fa12cc86ea34e06b598d013dcb5457516cce9de0
Binary files /dev/null and b/runs/fashion_trainer_20230920_093654/events.out.tfevents.1695195414.msip-dell.ims.rwth-aachen.de.1222030.3 differ
diff --git a/runs/fashion_trainer_20230920_093655/Training vs. Validation Loss_Training/events.out.tfevents.1695195417.msip-dell.ims.rwth-aachen.de.1222029.4 b/runs/fashion_trainer_20230920_093655/Training vs. Validation Loss_Training/events.out.tfevents.1695195417.msip-dell.ims.rwth-aachen.de.1222029.4
new file mode 100644
index 0000000000000000000000000000000000000000..2d8bb0bd831e276fb5b976426e4cb71938ea7860
Binary files /dev/null and b/runs/fashion_trainer_20230920_093655/Training vs. Validation Loss_Training/events.out.tfevents.1695195417.msip-dell.ims.rwth-aachen.de.1222029.4 differ
diff --git a/runs/fashion_trainer_20230920_093655/Training vs. Validation Loss_Validation/events.out.tfevents.1695195417.msip-dell.ims.rwth-aachen.de.1222029.5 b/runs/fashion_trainer_20230920_093655/Training vs. Validation Loss_Validation/events.out.tfevents.1695195417.msip-dell.ims.rwth-aachen.de.1222029.5
new file mode 100644
index 0000000000000000000000000000000000000000..414d40a84cee9fe8bd5a9fc9aaa2c51d3e9103b9
Binary files /dev/null and b/runs/fashion_trainer_20230920_093655/Training vs. Validation Loss_Validation/events.out.tfevents.1695195417.msip-dell.ims.rwth-aachen.de.1222029.5 differ
diff --git a/runs/fashion_trainer_20230920_093655/events.out.tfevents.1695195415.msip-dell.ims.rwth-aachen.de.1222029.3 b/runs/fashion_trainer_20230920_093655/events.out.tfevents.1695195415.msip-dell.ims.rwth-aachen.de.1222029.3
new file mode 100644
index 0000000000000000000000000000000000000000..babf11d04a0779702f7d050d7a87cae6ee00de98
Binary files /dev/null and b/runs/fashion_trainer_20230920_093655/events.out.tfevents.1695195415.msip-dell.ims.rwth-aachen.de.1222029.3 differ
diff --git a/runs/fashion_trainer_20230920_093908/Training vs. Validation Loss_Training/events.out.tfevents.1695195550.msip-dell.ims.rwth-aachen.de.1222029.7 b/runs/fashion_trainer_20230920_093908/Training vs. Validation Loss_Training/events.out.tfevents.1695195550.msip-dell.ims.rwth-aachen.de.1222029.7
new file mode 100644
index 0000000000000000000000000000000000000000..e53ea467f02d49013673c19e7ace419ca21e06de
Binary files /dev/null and b/runs/fashion_trainer_20230920_093908/Training vs. Validation Loss_Training/events.out.tfevents.1695195550.msip-dell.ims.rwth-aachen.de.1222029.7 differ
diff --git a/runs/fashion_trainer_20230920_093908/Training vs. Validation Loss_Validation/events.out.tfevents.1695195550.msip-dell.ims.rwth-aachen.de.1222029.8 b/runs/fashion_trainer_20230920_093908/Training vs. Validation Loss_Validation/events.out.tfevents.1695195550.msip-dell.ims.rwth-aachen.de.1222029.8
new file mode 100644
index 0000000000000000000000000000000000000000..f853ab36bc1bf67cdfb42beb259a4c0bf76c35d8
Binary files /dev/null and b/runs/fashion_trainer_20230920_093908/Training vs. Validation Loss_Validation/events.out.tfevents.1695195550.msip-dell.ims.rwth-aachen.de.1222029.8 differ
diff --git a/runs/fashion_trainer_20230920_093908/events.out.tfevents.1695195548.msip-dell.ims.rwth-aachen.de.1222029.6 b/runs/fashion_trainer_20230920_093908/events.out.tfevents.1695195548.msip-dell.ims.rwth-aachen.de.1222029.6
new file mode 100644
index 0000000000000000000000000000000000000000..81322e6a56568f63487242c991eb09e7d685f671
Binary files /dev/null and b/runs/fashion_trainer_20230920_093908/events.out.tfevents.1695195548.msip-dell.ims.rwth-aachen.de.1222029.6 differ
diff --git a/runs/fashion_trainer_20230920_093909/Training vs. Validation Loss_Training/events.out.tfevents.1695195551.msip-dell.ims.rwth-aachen.de.1222030.7 b/runs/fashion_trainer_20230920_093909/Training vs. Validation Loss_Training/events.out.tfevents.1695195551.msip-dell.ims.rwth-aachen.de.1222030.7
new file mode 100644
index 0000000000000000000000000000000000000000..28cd5619ed877a34eb2d792df054b17b99054eea
Binary files /dev/null and b/runs/fashion_trainer_20230920_093909/Training vs. Validation Loss_Training/events.out.tfevents.1695195551.msip-dell.ims.rwth-aachen.de.1222030.7 differ
diff --git a/runs/fashion_trainer_20230920_093909/Training vs. Validation Loss_Validation/events.out.tfevents.1695195551.msip-dell.ims.rwth-aachen.de.1222030.8 b/runs/fashion_trainer_20230920_093909/Training vs. Validation Loss_Validation/events.out.tfevents.1695195551.msip-dell.ims.rwth-aachen.de.1222030.8
new file mode 100644
index 0000000000000000000000000000000000000000..91d67df905a0be81be85c1cc2aaf1656ee44defb
Binary files /dev/null and b/runs/fashion_trainer_20230920_093909/Training vs. Validation Loss_Validation/events.out.tfevents.1695195551.msip-dell.ims.rwth-aachen.de.1222030.8 differ
diff --git a/runs/fashion_trainer_20230920_093909/events.out.tfevents.1695195549.msip-dell.ims.rwth-aachen.de.1222030.6 b/runs/fashion_trainer_20230920_093909/events.out.tfevents.1695195549.msip-dell.ims.rwth-aachen.de.1222030.6
new file mode 100644
index 0000000000000000000000000000000000000000..c1181cd5498e27482647e9cea19a876890eaf41a
Binary files /dev/null and b/runs/fashion_trainer_20230920_093909/events.out.tfevents.1695195549.msip-dell.ims.rwth-aachen.de.1222030.6 differ
diff --git a/runs/fashion_trainer_20230920_094122/Training vs. Validation Loss_Training/events.out.tfevents.1695195685.msip-dell.ims.rwth-aachen.de.1222029.10 b/runs/fashion_trainer_20230920_094122/Training vs. Validation Loss_Training/events.out.tfevents.1695195685.msip-dell.ims.rwth-aachen.de.1222029.10
new file mode 100644
index 0000000000000000000000000000000000000000..232a19ed6bbc5dce2e59837e90ff88b14b5de803
Binary files /dev/null and b/runs/fashion_trainer_20230920_094122/Training vs. Validation Loss_Training/events.out.tfevents.1695195685.msip-dell.ims.rwth-aachen.de.1222029.10 differ
diff --git a/runs/fashion_trainer_20230920_094122/Training vs. Validation Loss_Validation/events.out.tfevents.1695195685.msip-dell.ims.rwth-aachen.de.1222029.11 b/runs/fashion_trainer_20230920_094122/Training vs. Validation Loss_Validation/events.out.tfevents.1695195685.msip-dell.ims.rwth-aachen.de.1222029.11
new file mode 100644
index 0000000000000000000000000000000000000000..21fa54164d9d158c7f24e7b1d47f34733ac44f91
Binary files /dev/null and b/runs/fashion_trainer_20230920_094122/Training vs. Validation Loss_Validation/events.out.tfevents.1695195685.msip-dell.ims.rwth-aachen.de.1222029.11 differ
diff --git a/runs/fashion_trainer_20230920_094122/events.out.tfevents.1695195682.msip-dell.ims.rwth-aachen.de.1222029.9 b/runs/fashion_trainer_20230920_094122/events.out.tfevents.1695195682.msip-dell.ims.rwth-aachen.de.1222029.9
new file mode 100644
index 0000000000000000000000000000000000000000..6ada44dfed7f70ed2c03fe4889519fd75b973d8b
Binary files /dev/null and b/runs/fashion_trainer_20230920_094122/events.out.tfevents.1695195682.msip-dell.ims.rwth-aachen.de.1222029.9 differ
diff --git a/runs/fashion_trainer_20230920_094123/Training vs. Validation Loss_Training/events.out.tfevents.1695195686.msip-dell.ims.rwth-aachen.de.1222030.10 b/runs/fashion_trainer_20230920_094123/Training vs. Validation Loss_Training/events.out.tfevents.1695195686.msip-dell.ims.rwth-aachen.de.1222030.10
new file mode 100644
index 0000000000000000000000000000000000000000..19310f549dde1d59b96710dbdfee172426bc4677
Binary files /dev/null and b/runs/fashion_trainer_20230920_094123/Training vs. Validation Loss_Training/events.out.tfevents.1695195686.msip-dell.ims.rwth-aachen.de.1222030.10 differ
diff --git a/runs/fashion_trainer_20230920_094123/Training vs. Validation Loss_Validation/events.out.tfevents.1695195686.msip-dell.ims.rwth-aachen.de.1222030.11 b/runs/fashion_trainer_20230920_094123/Training vs. Validation Loss_Validation/events.out.tfevents.1695195686.msip-dell.ims.rwth-aachen.de.1222030.11
new file mode 100644
index 0000000000000000000000000000000000000000..d22955f924b12b47d896acbe52be3c2661df9d9f
Binary files /dev/null and b/runs/fashion_trainer_20230920_094123/Training vs. Validation Loss_Validation/events.out.tfevents.1695195686.msip-dell.ims.rwth-aachen.de.1222030.11 differ
diff --git a/runs/fashion_trainer_20230920_094123/events.out.tfevents.1695195683.msip-dell.ims.rwth-aachen.de.1222030.9 b/runs/fashion_trainer_20230920_094123/events.out.tfevents.1695195683.msip-dell.ims.rwth-aachen.de.1222030.9
new file mode 100644
index 0000000000000000000000000000000000000000..72ab24b44ee08e6ac9035865d035ae094032ef97
Binary files /dev/null and b/runs/fashion_trainer_20230920_094123/events.out.tfevents.1695195683.msip-dell.ims.rwth-aachen.de.1222030.9 differ
diff --git a/runs/fashion_trainer_20230920_094204/Training vs. Validation Loss_Training/events.out.tfevents.1695195728.msip-dell.ims.rwth-aachen.de.1224444.1 b/runs/fashion_trainer_20230920_094204/Training vs. Validation Loss_Training/events.out.tfevents.1695195728.msip-dell.ims.rwth-aachen.de.1224444.1
new file mode 100644
index 0000000000000000000000000000000000000000..b8be854c6446528450c7b4418694ce92c48d74b2
Binary files /dev/null and b/runs/fashion_trainer_20230920_094204/Training vs. Validation Loss_Training/events.out.tfevents.1695195728.msip-dell.ims.rwth-aachen.de.1224444.1 differ
diff --git a/runs/fashion_trainer_20230920_094204/Training vs. Validation Loss_Validation/events.out.tfevents.1695195728.msip-dell.ims.rwth-aachen.de.1224444.2 b/runs/fashion_trainer_20230920_094204/Training vs. Validation Loss_Validation/events.out.tfevents.1695195728.msip-dell.ims.rwth-aachen.de.1224444.2
new file mode 100644
index 0000000000000000000000000000000000000000..11808a8e6cddf76a3c0e46d20cea55af96c532bf
Binary files /dev/null and b/runs/fashion_trainer_20230920_094204/Training vs. Validation Loss_Validation/events.out.tfevents.1695195728.msip-dell.ims.rwth-aachen.de.1224444.2 differ
diff --git a/runs/fashion_trainer_20230920_094204/events.out.tfevents.1695195724.msip-dell.ims.rwth-aachen.de.1224444.0 b/runs/fashion_trainer_20230920_094204/events.out.tfevents.1695195724.msip-dell.ims.rwth-aachen.de.1224444.0
new file mode 100644
index 0000000000000000000000000000000000000000..8c43d29e03e0634eaca9c562439d6442c7bae757
Binary files /dev/null and b/runs/fashion_trainer_20230920_094204/events.out.tfevents.1695195724.msip-dell.ims.rwth-aachen.de.1224444.0 differ
diff --git a/runs/fashion_trainer_20230920_094217/Training vs. Validation Loss_Training/events.out.tfevents.1695195740.msip-dell.ims.rwth-aachen.de.1224444.4 b/runs/fashion_trainer_20230920_094217/Training vs. Validation Loss_Training/events.out.tfevents.1695195740.msip-dell.ims.rwth-aachen.de.1224444.4
new file mode 100644
index 0000000000000000000000000000000000000000..ae30d58970265feea1ac4071ebd648fcae36ab00
Binary files /dev/null and b/runs/fashion_trainer_20230920_094217/Training vs. Validation Loss_Training/events.out.tfevents.1695195740.msip-dell.ims.rwth-aachen.de.1224444.4 differ
diff --git a/runs/fashion_trainer_20230920_094217/Training vs. Validation Loss_Validation/events.out.tfevents.1695195740.msip-dell.ims.rwth-aachen.de.1224444.5 b/runs/fashion_trainer_20230920_094217/Training vs. Validation Loss_Validation/events.out.tfevents.1695195740.msip-dell.ims.rwth-aachen.de.1224444.5
new file mode 100644
index 0000000000000000000000000000000000000000..5e7892ec54171e3abae8a66317752991fae259de
Binary files /dev/null and b/runs/fashion_trainer_20230920_094217/Training vs. Validation Loss_Validation/events.out.tfevents.1695195740.msip-dell.ims.rwth-aachen.de.1224444.5 differ
diff --git a/runs/fashion_trainer_20230920_094217/events.out.tfevents.1695195737.msip-dell.ims.rwth-aachen.de.1224444.3 b/runs/fashion_trainer_20230920_094217/events.out.tfevents.1695195737.msip-dell.ims.rwth-aachen.de.1224444.3
new file mode 100644
index 0000000000000000000000000000000000000000..df58b1a6f93a0a65990c7d810e21fc5590a979c9
Binary files /dev/null and b/runs/fashion_trainer_20230920_094217/events.out.tfevents.1695195737.msip-dell.ims.rwth-aachen.de.1224444.3 differ
diff --git a/runs/fashion_trainer_20230920_094232/Training vs. Validation Loss_Training/events.out.tfevents.1695195755.msip-dell.ims.rwth-aachen.de.1224444.7 b/runs/fashion_trainer_20230920_094232/Training vs. Validation Loss_Training/events.out.tfevents.1695195755.msip-dell.ims.rwth-aachen.de.1224444.7
new file mode 100644
index 0000000000000000000000000000000000000000..b6ce4e45e0bcb2062b0afd95864bac23938124c8
Binary files /dev/null and b/runs/fashion_trainer_20230920_094232/Training vs. Validation Loss_Training/events.out.tfevents.1695195755.msip-dell.ims.rwth-aachen.de.1224444.7 differ
diff --git a/runs/fashion_trainer_20230920_094232/Training vs. Validation Loss_Validation/events.out.tfevents.1695195755.msip-dell.ims.rwth-aachen.de.1224444.8 b/runs/fashion_trainer_20230920_094232/Training vs. Validation Loss_Validation/events.out.tfevents.1695195755.msip-dell.ims.rwth-aachen.de.1224444.8
new file mode 100644
index 0000000000000000000000000000000000000000..9c7a6602e5a1cf58bcca7e9e8ff3f2f97128ef2c
Binary files /dev/null and b/runs/fashion_trainer_20230920_094232/Training vs. Validation Loss_Validation/events.out.tfevents.1695195755.msip-dell.ims.rwth-aachen.de.1224444.8 differ
diff --git a/runs/fashion_trainer_20230920_094232/events.out.tfevents.1695195752.msip-dell.ims.rwth-aachen.de.1224444.6 b/runs/fashion_trainer_20230920_094232/events.out.tfevents.1695195752.msip-dell.ims.rwth-aachen.de.1224444.6
new file mode 100644
index 0000000000000000000000000000000000000000..46cac79f4424c38fa2165b891043bbd52ca5d0ed
Binary files /dev/null and b/runs/fashion_trainer_20230920_094232/events.out.tfevents.1695195752.msip-dell.ims.rwth-aachen.de.1224444.6 differ
diff --git a/runs/fashion_trainer_20230920_094337/Training vs. Validation Loss_Training/events.out.tfevents.1695195820.msip-dell.ims.rwth-aachen.de.1222029.13 b/runs/fashion_trainer_20230920_094337/Training vs. Validation Loss_Training/events.out.tfevents.1695195820.msip-dell.ims.rwth-aachen.de.1222029.13
new file mode 100644
index 0000000000000000000000000000000000000000..cff3334fbcc0db63af53eb45462c87c0afd365d2
Binary files /dev/null and b/runs/fashion_trainer_20230920_094337/Training vs. Validation Loss_Training/events.out.tfevents.1695195820.msip-dell.ims.rwth-aachen.de.1222029.13 differ
diff --git a/runs/fashion_trainer_20230920_094337/Training vs. Validation Loss_Validation/events.out.tfevents.1695195820.msip-dell.ims.rwth-aachen.de.1222029.14 b/runs/fashion_trainer_20230920_094337/Training vs. Validation Loss_Validation/events.out.tfevents.1695195820.msip-dell.ims.rwth-aachen.de.1222029.14
new file mode 100644
index 0000000000000000000000000000000000000000..0c436e1d7891cf1b04a12527c14d92b63fa81a6c
Binary files /dev/null and b/runs/fashion_trainer_20230920_094337/Training vs. Validation Loss_Validation/events.out.tfevents.1695195820.msip-dell.ims.rwth-aachen.de.1222029.14 differ
diff --git a/runs/fashion_trainer_20230920_094337/events.out.tfevents.1695195817.msip-dell.ims.rwth-aachen.de.1222029.12 b/runs/fashion_trainer_20230920_094337/events.out.tfevents.1695195817.msip-dell.ims.rwth-aachen.de.1222029.12
new file mode 100644
index 0000000000000000000000000000000000000000..6fb983b6875e54b43471f0e1eb55f30ebc8299e6
Binary files /dev/null and b/runs/fashion_trainer_20230920_094337/events.out.tfevents.1695195817.msip-dell.ims.rwth-aachen.de.1222029.12 differ
diff --git a/runs/fashion_trainer_20230920_094339/Training vs. Validation Loss_Training/events.out.tfevents.1695195821.msip-dell.ims.rwth-aachen.de.1222030.13 b/runs/fashion_trainer_20230920_094339/Training vs. Validation Loss_Training/events.out.tfevents.1695195821.msip-dell.ims.rwth-aachen.de.1222030.13
new file mode 100644
index 0000000000000000000000000000000000000000..fedafee804f567231e7e1b7dd432497b33e61f74
Binary files /dev/null and b/runs/fashion_trainer_20230920_094339/Training vs. Validation Loss_Training/events.out.tfevents.1695195821.msip-dell.ims.rwth-aachen.de.1222030.13 differ
diff --git a/runs/fashion_trainer_20230920_094339/Training vs. Validation Loss_Validation/events.out.tfevents.1695195821.msip-dell.ims.rwth-aachen.de.1222030.14 b/runs/fashion_trainer_20230920_094339/Training vs. Validation Loss_Validation/events.out.tfevents.1695195821.msip-dell.ims.rwth-aachen.de.1222030.14
new file mode 100644
index 0000000000000000000000000000000000000000..a7a8194695670798f1506257aa01939e254cf0a7
Binary files /dev/null and b/runs/fashion_trainer_20230920_094339/Training vs. Validation Loss_Validation/events.out.tfevents.1695195821.msip-dell.ims.rwth-aachen.de.1222030.14 differ
diff --git a/runs/fashion_trainer_20230920_094339/events.out.tfevents.1695195819.msip-dell.ims.rwth-aachen.de.1222030.12 b/runs/fashion_trainer_20230920_094339/events.out.tfevents.1695195819.msip-dell.ims.rwth-aachen.de.1222030.12
new file mode 100644
index 0000000000000000000000000000000000000000..817093432ee19eeb79a0315e006d80ec3e4b5eeb
Binary files /dev/null and b/runs/fashion_trainer_20230920_094339/events.out.tfevents.1695195819.msip-dell.ims.rwth-aachen.de.1222030.12 differ
diff --git a/runs/fashion_trainer_20230920_094554/Training vs. Validation Loss_Training/events.out.tfevents.1695195957.msip-dell.ims.rwth-aachen.de.1222029.16 b/runs/fashion_trainer_20230920_094554/Training vs. Validation Loss_Training/events.out.tfevents.1695195957.msip-dell.ims.rwth-aachen.de.1222029.16
new file mode 100644
index 0000000000000000000000000000000000000000..077ffd76e7851ef1c1502f9da0a0bbe94f2ff1b9
Binary files /dev/null and b/runs/fashion_trainer_20230920_094554/Training vs. Validation Loss_Training/events.out.tfevents.1695195957.msip-dell.ims.rwth-aachen.de.1222029.16 differ
diff --git a/runs/fashion_trainer_20230920_094554/Training vs. Validation Loss_Validation/events.out.tfevents.1695195957.msip-dell.ims.rwth-aachen.de.1222029.17 b/runs/fashion_trainer_20230920_094554/Training vs. Validation Loss_Validation/events.out.tfevents.1695195957.msip-dell.ims.rwth-aachen.de.1222029.17
new file mode 100644
index 0000000000000000000000000000000000000000..e3beaaa73872132fc57dd373e21ad42d66837051
Binary files /dev/null and b/runs/fashion_trainer_20230920_094554/Training vs. Validation Loss_Validation/events.out.tfevents.1695195957.msip-dell.ims.rwth-aachen.de.1222029.17 differ
diff --git a/runs/fashion_trainer_20230920_094554/events.out.tfevents.1695195954.msip-dell.ims.rwth-aachen.de.1222029.15 b/runs/fashion_trainer_20230920_094554/events.out.tfevents.1695195954.msip-dell.ims.rwth-aachen.de.1222029.15
new file mode 100644
index 0000000000000000000000000000000000000000..50582d858af44f24ed5a907f5df7873ebeeb1e31
Binary files /dev/null and b/runs/fashion_trainer_20230920_094554/events.out.tfevents.1695195954.msip-dell.ims.rwth-aachen.de.1222029.15 differ
diff --git a/runs/fashion_trainer_20230920_094557/Training vs. Validation Loss_Training/events.out.tfevents.1695195960.msip-dell.ims.rwth-aachen.de.1222030.16 b/runs/fashion_trainer_20230920_094557/Training vs. Validation Loss_Training/events.out.tfevents.1695195960.msip-dell.ims.rwth-aachen.de.1222030.16
new file mode 100644
index 0000000000000000000000000000000000000000..a4b565b167f7f6f2e39b402b24aa385cba37f62a
Binary files /dev/null and b/runs/fashion_trainer_20230920_094557/Training vs. Validation Loss_Training/events.out.tfevents.1695195960.msip-dell.ims.rwth-aachen.de.1222030.16 differ
diff --git a/runs/fashion_trainer_20230920_094557/Training vs. Validation Loss_Validation/events.out.tfevents.1695195960.msip-dell.ims.rwth-aachen.de.1222030.17 b/runs/fashion_trainer_20230920_094557/Training vs. Validation Loss_Validation/events.out.tfevents.1695195960.msip-dell.ims.rwth-aachen.de.1222030.17
new file mode 100644
index 0000000000000000000000000000000000000000..37c3c08dceb73970e5d1c67908f7295fc4cb50b4
Binary files /dev/null and b/runs/fashion_trainer_20230920_094557/Training vs. Validation Loss_Validation/events.out.tfevents.1695195960.msip-dell.ims.rwth-aachen.de.1222030.17 differ
diff --git a/runs/fashion_trainer_20230920_094557/events.out.tfevents.1695195957.msip-dell.ims.rwth-aachen.de.1222030.15 b/runs/fashion_trainer_20230920_094557/events.out.tfevents.1695195957.msip-dell.ims.rwth-aachen.de.1222030.15
new file mode 100644
index 0000000000000000000000000000000000000000..b7ece5e7cbef544cd31368e9ceaef2025cc6ee20
Binary files /dev/null and b/runs/fashion_trainer_20230920_094557/events.out.tfevents.1695195957.msip-dell.ims.rwth-aachen.de.1222030.15 differ
diff --git a/runs/fashion_trainer_20230920_094811/Training vs. Validation Loss_Training/events.out.tfevents.1695196094.msip-dell.ims.rwth-aachen.de.1222029.19 b/runs/fashion_trainer_20230920_094811/Training vs. Validation Loss_Training/events.out.tfevents.1695196094.msip-dell.ims.rwth-aachen.de.1222029.19
new file mode 100644
index 0000000000000000000000000000000000000000..e16d4937520097b7cf14881c4b4361b479c284c8
Binary files /dev/null and b/runs/fashion_trainer_20230920_094811/Training vs. Validation Loss_Training/events.out.tfevents.1695196094.msip-dell.ims.rwth-aachen.de.1222029.19 differ
diff --git a/runs/fashion_trainer_20230920_094811/Training vs. Validation Loss_Validation/events.out.tfevents.1695196094.msip-dell.ims.rwth-aachen.de.1222029.20 b/runs/fashion_trainer_20230920_094811/Training vs. Validation Loss_Validation/events.out.tfevents.1695196094.msip-dell.ims.rwth-aachen.de.1222029.20
new file mode 100644
index 0000000000000000000000000000000000000000..2af9cbfb9d7d6ff98ab9d04d8e1c8db46ba8ff69
Binary files /dev/null and b/runs/fashion_trainer_20230920_094811/Training vs. Validation Loss_Validation/events.out.tfevents.1695196094.msip-dell.ims.rwth-aachen.de.1222029.20 differ
diff --git a/runs/fashion_trainer_20230920_094811/events.out.tfevents.1695196091.msip-dell.ims.rwth-aachen.de.1222029.18 b/runs/fashion_trainer_20230920_094811/events.out.tfevents.1695196091.msip-dell.ims.rwth-aachen.de.1222029.18
new file mode 100644
index 0000000000000000000000000000000000000000..e793c7a85cc57d2ebc473b32ef604b8d356a99c7
Binary files /dev/null and b/runs/fashion_trainer_20230920_094811/events.out.tfevents.1695196091.msip-dell.ims.rwth-aachen.de.1222029.18 differ
diff --git a/runs/fashion_trainer_20230920_094821/Training vs. Validation Loss_Training/events.out.tfevents.1695196103.msip-dell.ims.rwth-aachen.de.1222030.19 b/runs/fashion_trainer_20230920_094821/Training vs. Validation Loss_Training/events.out.tfevents.1695196103.msip-dell.ims.rwth-aachen.de.1222030.19
new file mode 100644
index 0000000000000000000000000000000000000000..7dd01771ade78b640a636b05624440ed61534cf1
Binary files /dev/null and b/runs/fashion_trainer_20230920_094821/Training vs. Validation Loss_Training/events.out.tfevents.1695196103.msip-dell.ims.rwth-aachen.de.1222030.19 differ
diff --git a/runs/fashion_trainer_20230920_094821/Training vs. Validation Loss_Validation/events.out.tfevents.1695196103.msip-dell.ims.rwth-aachen.de.1222030.20 b/runs/fashion_trainer_20230920_094821/Training vs. Validation Loss_Validation/events.out.tfevents.1695196103.msip-dell.ims.rwth-aachen.de.1222030.20
new file mode 100644
index 0000000000000000000000000000000000000000..0941e5553e6a52d2d17b4b46f983334ec3e75b22
Binary files /dev/null and b/runs/fashion_trainer_20230920_094821/Training vs. Validation Loss_Validation/events.out.tfevents.1695196103.msip-dell.ims.rwth-aachen.de.1222030.20 differ
diff --git a/runs/fashion_trainer_20230920_094821/events.out.tfevents.1695196101.msip-dell.ims.rwth-aachen.de.1222030.18 b/runs/fashion_trainer_20230920_094821/events.out.tfevents.1695196101.msip-dell.ims.rwth-aachen.de.1222030.18
new file mode 100644
index 0000000000000000000000000000000000000000..e628f09bf19456a0490cf8f7daed54b6ada07f3a
Binary files /dev/null and b/runs/fashion_trainer_20230920_094821/events.out.tfevents.1695196101.msip-dell.ims.rwth-aachen.de.1222030.18 differ
diff --git a/runs/fashion_trainer_20230920_094954/Training vs. Validation Loss_Training/events.out.tfevents.1695196198.msip-dell.ims.rwth-aachen.de.1226028.1 b/runs/fashion_trainer_20230920_094954/Training vs. Validation Loss_Training/events.out.tfevents.1695196198.msip-dell.ims.rwth-aachen.de.1226028.1
new file mode 100644
index 0000000000000000000000000000000000000000..562f51541e322539f3ebc36a3439fa862a520ca8
Binary files /dev/null and b/runs/fashion_trainer_20230920_094954/Training vs. Validation Loss_Training/events.out.tfevents.1695196198.msip-dell.ims.rwth-aachen.de.1226028.1 differ
diff --git a/runs/fashion_trainer_20230920_094954/Training vs. Validation Loss_Validation/events.out.tfevents.1695196198.msip-dell.ims.rwth-aachen.de.1226028.2 b/runs/fashion_trainer_20230920_094954/Training vs. Validation Loss_Validation/events.out.tfevents.1695196198.msip-dell.ims.rwth-aachen.de.1226028.2
new file mode 100644
index 0000000000000000000000000000000000000000..034fdf683186fa5b31d4aabc1ea131e4d0d561f9
Binary files /dev/null and b/runs/fashion_trainer_20230920_094954/Training vs. Validation Loss_Validation/events.out.tfevents.1695196198.msip-dell.ims.rwth-aachen.de.1226028.2 differ
diff --git a/runs/fashion_trainer_20230920_094954/events.out.tfevents.1695196194.msip-dell.ims.rwth-aachen.de.1226028.0 b/runs/fashion_trainer_20230920_094954/events.out.tfevents.1695196194.msip-dell.ims.rwth-aachen.de.1226028.0
new file mode 100644
index 0000000000000000000000000000000000000000..d940a00411ec5932dd19121508e80c929f6ba67f
Binary files /dev/null and b/runs/fashion_trainer_20230920_094954/events.out.tfevents.1695196194.msip-dell.ims.rwth-aachen.de.1226028.0 differ
diff --git a/runs/fashion_trainer_20230920_095006/Training vs. Validation Loss_Training/events.out.tfevents.1695196210.msip-dell.ims.rwth-aachen.de.1226028.4 b/runs/fashion_trainer_20230920_095006/Training vs. Validation Loss_Training/events.out.tfevents.1695196210.msip-dell.ims.rwth-aachen.de.1226028.4
new file mode 100644
index 0000000000000000000000000000000000000000..a04795c769bb94579427cfe71f867c246d1563f5
Binary files /dev/null and b/runs/fashion_trainer_20230920_095006/Training vs. Validation Loss_Training/events.out.tfevents.1695196210.msip-dell.ims.rwth-aachen.de.1226028.4 differ
diff --git a/runs/fashion_trainer_20230920_095006/Training vs. Validation Loss_Validation/events.out.tfevents.1695196210.msip-dell.ims.rwth-aachen.de.1226028.5 b/runs/fashion_trainer_20230920_095006/Training vs. Validation Loss_Validation/events.out.tfevents.1695196210.msip-dell.ims.rwth-aachen.de.1226028.5
new file mode 100644
index 0000000000000000000000000000000000000000..52922aa1b5764326e77b4f20bf5fafd4906e7bc7
Binary files /dev/null and b/runs/fashion_trainer_20230920_095006/Training vs. Validation Loss_Validation/events.out.tfevents.1695196210.msip-dell.ims.rwth-aachen.de.1226028.5 differ
diff --git a/runs/fashion_trainer_20230920_095006/events.out.tfevents.1695196206.msip-dell.ims.rwth-aachen.de.1226028.3 b/runs/fashion_trainer_20230920_095006/events.out.tfevents.1695196206.msip-dell.ims.rwth-aachen.de.1226028.3
new file mode 100644
index 0000000000000000000000000000000000000000..6b69a07f53843c3da5e42b7c3d14e45ad42457bf
Binary files /dev/null and b/runs/fashion_trainer_20230920_095006/events.out.tfevents.1695196206.msip-dell.ims.rwth-aachen.de.1226028.3 differ
diff --git a/runs/fashion_trainer_20230920_095020/Training vs. Validation Loss_Training/events.out.tfevents.1695196222.msip-dell.ims.rwth-aachen.de.1226028.7 b/runs/fashion_trainer_20230920_095020/Training vs. Validation Loss_Training/events.out.tfevents.1695196222.msip-dell.ims.rwth-aachen.de.1226028.7
new file mode 100644
index 0000000000000000000000000000000000000000..9201f3db6710c29c06cc588f3ec2884a01ad8ed3
Binary files /dev/null and b/runs/fashion_trainer_20230920_095020/Training vs. Validation Loss_Training/events.out.tfevents.1695196222.msip-dell.ims.rwth-aachen.de.1226028.7 differ
diff --git a/runs/fashion_trainer_20230920_095020/Training vs. Validation Loss_Validation/events.out.tfevents.1695196222.msip-dell.ims.rwth-aachen.de.1226028.8 b/runs/fashion_trainer_20230920_095020/Training vs. Validation Loss_Validation/events.out.tfevents.1695196222.msip-dell.ims.rwth-aachen.de.1226028.8
new file mode 100644
index 0000000000000000000000000000000000000000..41a08971deae049f7bb359e13cf30d32675b5d92
Binary files /dev/null and b/runs/fashion_trainer_20230920_095020/Training vs. Validation Loss_Validation/events.out.tfevents.1695196222.msip-dell.ims.rwth-aachen.de.1226028.8 differ
diff --git a/runs/fashion_trainer_20230920_095020/events.out.tfevents.1695196220.msip-dell.ims.rwth-aachen.de.1226028.6 b/runs/fashion_trainer_20230920_095020/events.out.tfevents.1695196220.msip-dell.ims.rwth-aachen.de.1226028.6
new file mode 100644
index 0000000000000000000000000000000000000000..a7472e94fd08c0783bacd3630e2e5f8be36ff6f3
Binary files /dev/null and b/runs/fashion_trainer_20230920_095020/events.out.tfevents.1695196220.msip-dell.ims.rwth-aachen.de.1226028.6 differ
diff --git a/runs/fashion_trainer_20230920_095029/Training vs. Validation Loss_Training/events.out.tfevents.1695196231.msip-dell.ims.rwth-aachen.de.1222029.22 b/runs/fashion_trainer_20230920_095029/Training vs. Validation Loss_Training/events.out.tfevents.1695196231.msip-dell.ims.rwth-aachen.de.1222029.22
new file mode 100644
index 0000000000000000000000000000000000000000..5d3cd84f61af8d4d7c36db9699536430c08cce83
Binary files /dev/null and b/runs/fashion_trainer_20230920_095029/Training vs. Validation Loss_Training/events.out.tfevents.1695196231.msip-dell.ims.rwth-aachen.de.1222029.22 differ
diff --git a/runs/fashion_trainer_20230920_095029/Training vs. Validation Loss_Validation/events.out.tfevents.1695196231.msip-dell.ims.rwth-aachen.de.1222029.23 b/runs/fashion_trainer_20230920_095029/Training vs. Validation Loss_Validation/events.out.tfevents.1695196231.msip-dell.ims.rwth-aachen.de.1222029.23
new file mode 100644
index 0000000000000000000000000000000000000000..d8826e674aae57af5fece8eae9afd2b0bae86c88
Binary files /dev/null and b/runs/fashion_trainer_20230920_095029/Training vs. Validation Loss_Validation/events.out.tfevents.1695196231.msip-dell.ims.rwth-aachen.de.1222029.23 differ
diff --git a/runs/fashion_trainer_20230920_095029/events.out.tfevents.1695196229.msip-dell.ims.rwth-aachen.de.1222029.21 b/runs/fashion_trainer_20230920_095029/events.out.tfevents.1695196229.msip-dell.ims.rwth-aachen.de.1222029.21
new file mode 100644
index 0000000000000000000000000000000000000000..ec3725e6a64a1e70bcaa7630017c20236eedee85
Binary files /dev/null and b/runs/fashion_trainer_20230920_095029/events.out.tfevents.1695196229.msip-dell.ims.rwth-aachen.de.1222029.21 differ
diff --git a/runs/fashion_trainer_20230920_095030/Training vs. Validation Loss_Training/events.out.tfevents.1695196233.msip-dell.ims.rwth-aachen.de.1226028.10 b/runs/fashion_trainer_20230920_095030/Training vs. Validation Loss_Training/events.out.tfevents.1695196233.msip-dell.ims.rwth-aachen.de.1226028.10
new file mode 100644
index 0000000000000000000000000000000000000000..67357150e0415372ccdcdfea71de4537bc609d8b
Binary files /dev/null and b/runs/fashion_trainer_20230920_095030/Training vs. Validation Loss_Training/events.out.tfevents.1695196233.msip-dell.ims.rwth-aachen.de.1226028.10 differ
diff --git a/runs/fashion_trainer_20230920_095030/Training vs. Validation Loss_Validation/events.out.tfevents.1695196233.msip-dell.ims.rwth-aachen.de.1226028.11 b/runs/fashion_trainer_20230920_095030/Training vs. Validation Loss_Validation/events.out.tfevents.1695196233.msip-dell.ims.rwth-aachen.de.1226028.11
new file mode 100644
index 0000000000000000000000000000000000000000..8989684c606a5fee25dc5842772bd9013001b2e4
Binary files /dev/null and b/runs/fashion_trainer_20230920_095030/Training vs. Validation Loss_Validation/events.out.tfevents.1695196233.msip-dell.ims.rwth-aachen.de.1226028.11 differ
diff --git a/runs/fashion_trainer_20230920_095030/events.out.tfevents.1695196230.msip-dell.ims.rwth-aachen.de.1226028.9 b/runs/fashion_trainer_20230920_095030/events.out.tfevents.1695196230.msip-dell.ims.rwth-aachen.de.1226028.9
new file mode 100644
index 0000000000000000000000000000000000000000..b9ec7ad376e3d1211f76e847a36de0f65917eef7
Binary files /dev/null and b/runs/fashion_trainer_20230920_095030/events.out.tfevents.1695196230.msip-dell.ims.rwth-aachen.de.1226028.9 differ
diff --git a/runs/fashion_trainer_20230920_095039/Training vs. Validation Loss_Training/events.out.tfevents.1695196242.msip-dell.ims.rwth-aachen.de.1222030.22 b/runs/fashion_trainer_20230920_095039/Training vs. Validation Loss_Training/events.out.tfevents.1695196242.msip-dell.ims.rwth-aachen.de.1222030.22
new file mode 100644
index 0000000000000000000000000000000000000000..6a5cfba0cd6f09ce5fb45bdfde45c9d213c18457
Binary files /dev/null and b/runs/fashion_trainer_20230920_095039/Training vs. Validation Loss_Training/events.out.tfevents.1695196242.msip-dell.ims.rwth-aachen.de.1222030.22 differ
diff --git a/runs/fashion_trainer_20230920_095039/Training vs. Validation Loss_Validation/events.out.tfevents.1695196242.msip-dell.ims.rwth-aachen.de.1222030.23 b/runs/fashion_trainer_20230920_095039/Training vs. Validation Loss_Validation/events.out.tfevents.1695196242.msip-dell.ims.rwth-aachen.de.1222030.23
new file mode 100644
index 0000000000000000000000000000000000000000..840f0d4186d5ee51551f5ae2d6ebac5daa72a54f
Binary files /dev/null and b/runs/fashion_trainer_20230920_095039/Training vs. Validation Loss_Validation/events.out.tfevents.1695196242.msip-dell.ims.rwth-aachen.de.1222030.23 differ
diff --git a/runs/fashion_trainer_20230920_095039/events.out.tfevents.1695196239.msip-dell.ims.rwth-aachen.de.1222030.21 b/runs/fashion_trainer_20230920_095039/events.out.tfevents.1695196239.msip-dell.ims.rwth-aachen.de.1222030.21
new file mode 100644
index 0000000000000000000000000000000000000000..684c91cb6b724c9e517ff412a4cf9eb93a926e1e
Binary files /dev/null and b/runs/fashion_trainer_20230920_095039/events.out.tfevents.1695196239.msip-dell.ims.rwth-aachen.de.1222030.21 differ
diff --git a/runs/fashion_trainer_20230920_095040/Training vs. Validation Loss_Training/events.out.tfevents.1695196244.msip-dell.ims.rwth-aachen.de.1226028.13 b/runs/fashion_trainer_20230920_095040/Training vs. Validation Loss_Training/events.out.tfevents.1695196244.msip-dell.ims.rwth-aachen.de.1226028.13
new file mode 100644
index 0000000000000000000000000000000000000000..7076c3a31f1a85512851bbad9c43da727a726f4b
Binary files /dev/null and b/runs/fashion_trainer_20230920_095040/Training vs. Validation Loss_Training/events.out.tfevents.1695196244.msip-dell.ims.rwth-aachen.de.1226028.13 differ
diff --git a/runs/fashion_trainer_20230920_095040/Training vs. Validation Loss_Validation/events.out.tfevents.1695196244.msip-dell.ims.rwth-aachen.de.1226028.14 b/runs/fashion_trainer_20230920_095040/Training vs. Validation Loss_Validation/events.out.tfevents.1695196244.msip-dell.ims.rwth-aachen.de.1226028.14
new file mode 100644
index 0000000000000000000000000000000000000000..2ee6053a6fb528b27ab04e879ee0893fd10b9331
Binary files /dev/null and b/runs/fashion_trainer_20230920_095040/Training vs. Validation Loss_Validation/events.out.tfevents.1695196244.msip-dell.ims.rwth-aachen.de.1226028.14 differ
diff --git a/runs/fashion_trainer_20230920_095040/events.out.tfevents.1695196240.msip-dell.ims.rwth-aachen.de.1226028.12 b/runs/fashion_trainer_20230920_095040/events.out.tfevents.1695196240.msip-dell.ims.rwth-aachen.de.1226028.12
new file mode 100644
index 0000000000000000000000000000000000000000..3b3242d265500c825316b893542a0a5fc799ba8d
Binary files /dev/null and b/runs/fashion_trainer_20230920_095040/events.out.tfevents.1695196240.msip-dell.ims.rwth-aachen.de.1226028.12 differ
diff --git a/runs/fashion_trainer_20230920_095054/Training vs. Validation Loss_Training/events.out.tfevents.1695196257.msip-dell.ims.rwth-aachen.de.1226028.16 b/runs/fashion_trainer_20230920_095054/Training vs. Validation Loss_Training/events.out.tfevents.1695196257.msip-dell.ims.rwth-aachen.de.1226028.16
new file mode 100644
index 0000000000000000000000000000000000000000..2d24f15e7be2176201c96297dd5f560e50c45fdd
Binary files /dev/null and b/runs/fashion_trainer_20230920_095054/Training vs. Validation Loss_Training/events.out.tfevents.1695196257.msip-dell.ims.rwth-aachen.de.1226028.16 differ
diff --git a/runs/fashion_trainer_20230920_095054/Training vs. Validation Loss_Validation/events.out.tfevents.1695196257.msip-dell.ims.rwth-aachen.de.1226028.17 b/runs/fashion_trainer_20230920_095054/Training vs. Validation Loss_Validation/events.out.tfevents.1695196257.msip-dell.ims.rwth-aachen.de.1226028.17
new file mode 100644
index 0000000000000000000000000000000000000000..10d3b49b40d42e36900f663017c0f55f0c910491
Binary files /dev/null and b/runs/fashion_trainer_20230920_095054/Training vs. Validation Loss_Validation/events.out.tfevents.1695196257.msip-dell.ims.rwth-aachen.de.1226028.17 differ
diff --git a/runs/fashion_trainer_20230920_095054/events.out.tfevents.1695196254.msip-dell.ims.rwth-aachen.de.1226028.15 b/runs/fashion_trainer_20230920_095054/events.out.tfevents.1695196254.msip-dell.ims.rwth-aachen.de.1226028.15
new file mode 100644
index 0000000000000000000000000000000000000000..6c202b36a455ebf6fa1d795059bc2634a8286a09
Binary files /dev/null and b/runs/fashion_trainer_20230920_095054/events.out.tfevents.1695196254.msip-dell.ims.rwth-aachen.de.1226028.15 differ
diff --git a/runs/fashion_trainer_20230920_095217/Training vs. Validation Loss_Training/events.out.tfevents.1695196340.msip-dell.ims.rwth-aachen.de.1226836.1 b/runs/fashion_trainer_20230920_095217/Training vs. Validation Loss_Training/events.out.tfevents.1695196340.msip-dell.ims.rwth-aachen.de.1226836.1
new file mode 100644
index 0000000000000000000000000000000000000000..94d4631529b2bba272af1c89b109cfde5161fdcf
Binary files /dev/null and b/runs/fashion_trainer_20230920_095217/Training vs. Validation Loss_Training/events.out.tfevents.1695196340.msip-dell.ims.rwth-aachen.de.1226836.1 differ
diff --git a/runs/fashion_trainer_20230920_095217/Training vs. Validation Loss_Validation/events.out.tfevents.1695196340.msip-dell.ims.rwth-aachen.de.1226836.2 b/runs/fashion_trainer_20230920_095217/Training vs. Validation Loss_Validation/events.out.tfevents.1695196340.msip-dell.ims.rwth-aachen.de.1226836.2
new file mode 100644
index 0000000000000000000000000000000000000000..eea6691cbd1a2de40faeb663dc831967b67ecd27
Binary files /dev/null and b/runs/fashion_trainer_20230920_095217/Training vs. Validation Loss_Validation/events.out.tfevents.1695196340.msip-dell.ims.rwth-aachen.de.1226836.2 differ
diff --git a/runs/fashion_trainer_20230920_095217/events.out.tfevents.1695196337.msip-dell.ims.rwth-aachen.de.1226836.0 b/runs/fashion_trainer_20230920_095217/events.out.tfevents.1695196337.msip-dell.ims.rwth-aachen.de.1226836.0
new file mode 100644
index 0000000000000000000000000000000000000000..faf14a0a48693673a96a73aa7b8c51f45f543677
Binary files /dev/null and b/runs/fashion_trainer_20230920_095217/events.out.tfevents.1695196337.msip-dell.ims.rwth-aachen.de.1226836.0 differ
diff --git a/runs/fashion_trainer_20230920_095254/Training vs. Validation Loss_Training/events.out.tfevents.1695196376.msip-dell.ims.rwth-aachen.de.1222029.25 b/runs/fashion_trainer_20230920_095254/Training vs. Validation Loss_Training/events.out.tfevents.1695196376.msip-dell.ims.rwth-aachen.de.1222029.25
new file mode 100644
index 0000000000000000000000000000000000000000..bc8bb797e96beaf7ecf8526c182485299167bc5f
Binary files /dev/null and b/runs/fashion_trainer_20230920_095254/Training vs. Validation Loss_Training/events.out.tfevents.1695196376.msip-dell.ims.rwth-aachen.de.1222029.25 differ
diff --git a/runs/fashion_trainer_20230920_095254/Training vs. Validation Loss_Validation/events.out.tfevents.1695196376.msip-dell.ims.rwth-aachen.de.1222029.26 b/runs/fashion_trainer_20230920_095254/Training vs. Validation Loss_Validation/events.out.tfevents.1695196376.msip-dell.ims.rwth-aachen.de.1222029.26
new file mode 100644
index 0000000000000000000000000000000000000000..917d38417e3a942b2312119d9b7d5ecd50b03208
Binary files /dev/null and b/runs/fashion_trainer_20230920_095254/Training vs. Validation Loss_Validation/events.out.tfevents.1695196376.msip-dell.ims.rwth-aachen.de.1222029.26 differ
diff --git a/runs/fashion_trainer_20230920_095254/events.out.tfevents.1695196374.msip-dell.ims.rwth-aachen.de.1222029.24 b/runs/fashion_trainer_20230920_095254/events.out.tfevents.1695196374.msip-dell.ims.rwth-aachen.de.1222029.24
new file mode 100644
index 0000000000000000000000000000000000000000..8b785a8c58f1c6b9f74a903b92df7f46591ac4ea
Binary files /dev/null and b/runs/fashion_trainer_20230920_095254/events.out.tfevents.1695196374.msip-dell.ims.rwth-aachen.de.1222029.24 differ
diff --git a/runs/fashion_trainer_20230920_095300/Training vs. Validation Loss_Training/events.out.tfevents.1695196382.msip-dell.ims.rwth-aachen.de.1222030.25 b/runs/fashion_trainer_20230920_095300/Training vs. Validation Loss_Training/events.out.tfevents.1695196382.msip-dell.ims.rwth-aachen.de.1222030.25
new file mode 100644
index 0000000000000000000000000000000000000000..da7f0fd0043ec7e7ea333b6d436ad306491d73b0
Binary files /dev/null and b/runs/fashion_trainer_20230920_095300/Training vs. Validation Loss_Training/events.out.tfevents.1695196382.msip-dell.ims.rwth-aachen.de.1222030.25 differ
diff --git a/runs/fashion_trainer_20230920_095300/Training vs. Validation Loss_Validation/events.out.tfevents.1695196382.msip-dell.ims.rwth-aachen.de.1222030.26 b/runs/fashion_trainer_20230920_095300/Training vs. Validation Loss_Validation/events.out.tfevents.1695196382.msip-dell.ims.rwth-aachen.de.1222030.26
new file mode 100644
index 0000000000000000000000000000000000000000..9d2d2e53d5b6cbdaa4490eceeaa3725742bbdfa5
Binary files /dev/null and b/runs/fashion_trainer_20230920_095300/Training vs. Validation Loss_Validation/events.out.tfevents.1695196382.msip-dell.ims.rwth-aachen.de.1222030.26 differ
diff --git a/runs/fashion_trainer_20230920_095300/events.out.tfevents.1695196380.msip-dell.ims.rwth-aachen.de.1222030.24 b/runs/fashion_trainer_20230920_095300/events.out.tfevents.1695196380.msip-dell.ims.rwth-aachen.de.1222030.24
new file mode 100644
index 0000000000000000000000000000000000000000..84b9c8708b557f55c96b052e938c4ac949e9b5d8
Binary files /dev/null and b/runs/fashion_trainer_20230920_095300/events.out.tfevents.1695196380.msip-dell.ims.rwth-aachen.de.1222030.24 differ
diff --git a/runs/fashion_trainer_20230920_095318/Training vs. Validation Loss_Training/events.out.tfevents.1695196402.msip-dell.ims.rwth-aachen.de.1227246.1 b/runs/fashion_trainer_20230920_095318/Training vs. Validation Loss_Training/events.out.tfevents.1695196402.msip-dell.ims.rwth-aachen.de.1227246.1
new file mode 100644
index 0000000000000000000000000000000000000000..c4ec84779d02d7695eaf9e46482e05ba61cd0c5c
Binary files /dev/null and b/runs/fashion_trainer_20230920_095318/Training vs. Validation Loss_Training/events.out.tfevents.1695196402.msip-dell.ims.rwth-aachen.de.1227246.1 differ
diff --git a/runs/fashion_trainer_20230920_095318/Training vs. Validation Loss_Validation/events.out.tfevents.1695196402.msip-dell.ims.rwth-aachen.de.1227246.2 b/runs/fashion_trainer_20230920_095318/Training vs. Validation Loss_Validation/events.out.tfevents.1695196402.msip-dell.ims.rwth-aachen.de.1227246.2
new file mode 100644
index 0000000000000000000000000000000000000000..29c05fc77bd8980ddfa17d694884d78af069f9be
Binary files /dev/null and b/runs/fashion_trainer_20230920_095318/Training vs. Validation Loss_Validation/events.out.tfevents.1695196402.msip-dell.ims.rwth-aachen.de.1227246.2 differ
diff --git a/runs/fashion_trainer_20230920_095318/events.out.tfevents.1695196398.msip-dell.ims.rwth-aachen.de.1227246.0 b/runs/fashion_trainer_20230920_095318/events.out.tfevents.1695196398.msip-dell.ims.rwth-aachen.de.1227246.0
new file mode 100644
index 0000000000000000000000000000000000000000..2c861bb7760f986dcd1be1fac2262d0c2dd044da
Binary files /dev/null and b/runs/fashion_trainer_20230920_095318/events.out.tfevents.1695196398.msip-dell.ims.rwth-aachen.de.1227246.0 differ
diff --git a/runs/fashion_trainer_20230920_095359/Training vs. Validation Loss_Training/events.out.tfevents.1695196442.msip-dell.ims.rwth-aachen.de.1227246.4 b/runs/fashion_trainer_20230920_095359/Training vs. Validation Loss_Training/events.out.tfevents.1695196442.msip-dell.ims.rwth-aachen.de.1227246.4
new file mode 100644
index 0000000000000000000000000000000000000000..5447c32d7875e9bb1db102227d5ef4d13935e39a
Binary files /dev/null and b/runs/fashion_trainer_20230920_095359/Training vs. Validation Loss_Training/events.out.tfevents.1695196442.msip-dell.ims.rwth-aachen.de.1227246.4 differ
diff --git a/runs/fashion_trainer_20230920_095359/Training vs. Validation Loss_Validation/events.out.tfevents.1695196442.msip-dell.ims.rwth-aachen.de.1227246.5 b/runs/fashion_trainer_20230920_095359/Training vs. Validation Loss_Validation/events.out.tfevents.1695196442.msip-dell.ims.rwth-aachen.de.1227246.5
new file mode 100644
index 0000000000000000000000000000000000000000..42583c114c47966443ca78a7a8f4101ac8f33dad
Binary files /dev/null and b/runs/fashion_trainer_20230920_095359/Training vs. Validation Loss_Validation/events.out.tfevents.1695196442.msip-dell.ims.rwth-aachen.de.1227246.5 differ
diff --git a/runs/fashion_trainer_20230920_095359/events.out.tfevents.1695196439.msip-dell.ims.rwth-aachen.de.1227246.3 b/runs/fashion_trainer_20230920_095359/events.out.tfevents.1695196439.msip-dell.ims.rwth-aachen.de.1227246.3
new file mode 100644
index 0000000000000000000000000000000000000000..b96fbfc88e15e07ee3f5b84de89905b2e30f8ec7
Binary files /dev/null and b/runs/fashion_trainer_20230920_095359/events.out.tfevents.1695196439.msip-dell.ims.rwth-aachen.de.1227246.3 differ
diff --git a/runs/fashion_trainer_20230920_095438/Training vs. Validation Loss_Training/events.out.tfevents.1695196482.msip-dell.ims.rwth-aachen.de.1227246.7 b/runs/fashion_trainer_20230920_095438/Training vs. Validation Loss_Training/events.out.tfevents.1695196482.msip-dell.ims.rwth-aachen.de.1227246.7
new file mode 100644
index 0000000000000000000000000000000000000000..c613dbadaeb5eed85da33c8b018963152af76caa
Binary files /dev/null and b/runs/fashion_trainer_20230920_095438/Training vs. Validation Loss_Training/events.out.tfevents.1695196482.msip-dell.ims.rwth-aachen.de.1227246.7 differ
diff --git a/runs/fashion_trainer_20230920_095438/Training vs. Validation Loss_Validation/events.out.tfevents.1695196482.msip-dell.ims.rwth-aachen.de.1227246.8 b/runs/fashion_trainer_20230920_095438/Training vs. Validation Loss_Validation/events.out.tfevents.1695196482.msip-dell.ims.rwth-aachen.de.1227246.8
new file mode 100644
index 0000000000000000000000000000000000000000..61977492c8b15cc6bcdfa340373d9f972c127e1c
Binary files /dev/null and b/runs/fashion_trainer_20230920_095438/Training vs. Validation Loss_Validation/events.out.tfevents.1695196482.msip-dell.ims.rwth-aachen.de.1227246.8 differ
diff --git a/runs/fashion_trainer_20230920_095438/events.out.tfevents.1695196478.msip-dell.ims.rwth-aachen.de.1227246.6 b/runs/fashion_trainer_20230920_095438/events.out.tfevents.1695196478.msip-dell.ims.rwth-aachen.de.1227246.6
new file mode 100644
index 0000000000000000000000000000000000000000..80c5202e5494f36ae096b2805accba2ea92c0fca
Binary files /dev/null and b/runs/fashion_trainer_20230920_095438/events.out.tfevents.1695196478.msip-dell.ims.rwth-aachen.de.1227246.6 differ
diff --git a/runs/fashion_trainer_20230920_095524/Training vs. Validation Loss_Training/events.out.tfevents.1695196527.msip-dell.ims.rwth-aachen.de.1222029.28 b/runs/fashion_trainer_20230920_095524/Training vs. Validation Loss_Training/events.out.tfevents.1695196527.msip-dell.ims.rwth-aachen.de.1222029.28
new file mode 100644
index 0000000000000000000000000000000000000000..5560e3e1c8632390948bfcca4a2295ed5ccc4473
Binary files /dev/null and b/runs/fashion_trainer_20230920_095524/Training vs. Validation Loss_Training/events.out.tfevents.1695196527.msip-dell.ims.rwth-aachen.de.1222029.28 differ
diff --git a/runs/fashion_trainer_20230920_095524/Training vs. Validation Loss_Validation/events.out.tfevents.1695196527.msip-dell.ims.rwth-aachen.de.1222029.29 b/runs/fashion_trainer_20230920_095524/Training vs. Validation Loss_Validation/events.out.tfevents.1695196527.msip-dell.ims.rwth-aachen.de.1222029.29
new file mode 100644
index 0000000000000000000000000000000000000000..53e6b68d28386e8f24d577a4de70e19f6facd0ca
Binary files /dev/null and b/runs/fashion_trainer_20230920_095524/Training vs. Validation Loss_Validation/events.out.tfevents.1695196527.msip-dell.ims.rwth-aachen.de.1222029.29 differ
diff --git a/runs/fashion_trainer_20230920_095524/events.out.tfevents.1695196524.msip-dell.ims.rwth-aachen.de.1222029.27 b/runs/fashion_trainer_20230920_095524/events.out.tfevents.1695196524.msip-dell.ims.rwth-aachen.de.1222029.27
new file mode 100644
index 0000000000000000000000000000000000000000..264f0eb0c5e2a7e8a8e5d5605d9a1a73830dc3fe
Binary files /dev/null and b/runs/fashion_trainer_20230920_095524/events.out.tfevents.1695196524.msip-dell.ims.rwth-aachen.de.1222029.27 differ
diff --git a/runs/fashion_trainer_20230920_095530/Training vs. Validation Loss_Training/events.out.tfevents.1695196533.msip-dell.ims.rwth-aachen.de.1222030.28 b/runs/fashion_trainer_20230920_095530/Training vs. Validation Loss_Training/events.out.tfevents.1695196533.msip-dell.ims.rwth-aachen.de.1222030.28
new file mode 100644
index 0000000000000000000000000000000000000000..d9b4d9f6328af55ec3d5234cb8833ef6774b2d59
Binary files /dev/null and b/runs/fashion_trainer_20230920_095530/Training vs. Validation Loss_Training/events.out.tfevents.1695196533.msip-dell.ims.rwth-aachen.de.1222030.28 differ
diff --git a/runs/fashion_trainer_20230920_095530/Training vs. Validation Loss_Validation/events.out.tfevents.1695196533.msip-dell.ims.rwth-aachen.de.1222030.29 b/runs/fashion_trainer_20230920_095530/Training vs. Validation Loss_Validation/events.out.tfevents.1695196533.msip-dell.ims.rwth-aachen.de.1222030.29
new file mode 100644
index 0000000000000000000000000000000000000000..d1897a0207506b0f3876c84daa21f01584dd3d35
Binary files /dev/null and b/runs/fashion_trainer_20230920_095530/Training vs. Validation Loss_Validation/events.out.tfevents.1695196533.msip-dell.ims.rwth-aachen.de.1222030.29 differ
diff --git a/runs/fashion_trainer_20230920_095530/events.out.tfevents.1695196530.msip-dell.ims.rwth-aachen.de.1222030.27 b/runs/fashion_trainer_20230920_095530/events.out.tfevents.1695196530.msip-dell.ims.rwth-aachen.de.1222030.27
new file mode 100644
index 0000000000000000000000000000000000000000..026035a937e2dbad0dfa8249f1860b40a79c7a36
Binary files /dev/null and b/runs/fashion_trainer_20230920_095530/events.out.tfevents.1695196530.msip-dell.ims.rwth-aachen.de.1222030.27 differ
diff --git a/runs/fashion_trainer_20230920_095714/Training vs. Validation Loss_Training/events.out.tfevents.1695196637.msip-dell.ims.rwth-aachen.de.1228262.1 b/runs/fashion_trainer_20230920_095714/Training vs. Validation Loss_Training/events.out.tfevents.1695196637.msip-dell.ims.rwth-aachen.de.1228262.1
new file mode 100644
index 0000000000000000000000000000000000000000..7af6c10cbd8f25ce42d226a2b738957bba8a8d96
Binary files /dev/null and b/runs/fashion_trainer_20230920_095714/Training vs. Validation Loss_Training/events.out.tfevents.1695196637.msip-dell.ims.rwth-aachen.de.1228262.1 differ
diff --git a/runs/fashion_trainer_20230920_095714/Training vs. Validation Loss_Validation/events.out.tfevents.1695196637.msip-dell.ims.rwth-aachen.de.1228262.2 b/runs/fashion_trainer_20230920_095714/Training vs. Validation Loss_Validation/events.out.tfevents.1695196637.msip-dell.ims.rwth-aachen.de.1228262.2
new file mode 100644
index 0000000000000000000000000000000000000000..bb53599b43fa54f91d2532fdff58d550fd817759
Binary files /dev/null and b/runs/fashion_trainer_20230920_095714/Training vs. Validation Loss_Validation/events.out.tfevents.1695196637.msip-dell.ims.rwth-aachen.de.1228262.2 differ
diff --git a/runs/fashion_trainer_20230920_095714/events.out.tfevents.1695196634.msip-dell.ims.rwth-aachen.de.1228262.0 b/runs/fashion_trainer_20230920_095714/events.out.tfevents.1695196634.msip-dell.ims.rwth-aachen.de.1228262.0
new file mode 100644
index 0000000000000000000000000000000000000000..1c21c294bc99bdb3f733486c46c42370193398a2
Binary files /dev/null and b/runs/fashion_trainer_20230920_095714/events.out.tfevents.1695196634.msip-dell.ims.rwth-aachen.de.1228262.0 differ
diff --git a/runs/fashion_trainer_20230920_095724/Training vs. Validation Loss_Training/events.out.tfevents.1695196648.msip-dell.ims.rwth-aachen.de.1228262.4 b/runs/fashion_trainer_20230920_095724/Training vs. Validation Loss_Training/events.out.tfevents.1695196648.msip-dell.ims.rwth-aachen.de.1228262.4
new file mode 100644
index 0000000000000000000000000000000000000000..db604143741201cb4c2edd3397b8dde9779cba30
Binary files /dev/null and b/runs/fashion_trainer_20230920_095724/Training vs. Validation Loss_Training/events.out.tfevents.1695196648.msip-dell.ims.rwth-aachen.de.1228262.4 differ
diff --git a/runs/fashion_trainer_20230920_095724/Training vs. Validation Loss_Validation/events.out.tfevents.1695196648.msip-dell.ims.rwth-aachen.de.1228262.5 b/runs/fashion_trainer_20230920_095724/Training vs. Validation Loss_Validation/events.out.tfevents.1695196648.msip-dell.ims.rwth-aachen.de.1228262.5
new file mode 100644
index 0000000000000000000000000000000000000000..40c380e9a79a5c94461ab58ceb401a80112837a7
Binary files /dev/null and b/runs/fashion_trainer_20230920_095724/Training vs. Validation Loss_Validation/events.out.tfevents.1695196648.msip-dell.ims.rwth-aachen.de.1228262.5 differ
diff --git a/runs/fashion_trainer_20230920_095724/events.out.tfevents.1695196644.msip-dell.ims.rwth-aachen.de.1228262.3 b/runs/fashion_trainer_20230920_095724/events.out.tfevents.1695196644.msip-dell.ims.rwth-aachen.de.1228262.3
new file mode 100644
index 0000000000000000000000000000000000000000..2dbd20426eee7b6e409d678f2198838b0784b423
Binary files /dev/null and b/runs/fashion_trainer_20230920_095724/events.out.tfevents.1695196644.msip-dell.ims.rwth-aachen.de.1228262.3 differ
diff --git a/runs/fashion_trainer_20230920_095734/Training vs. Validation Loss_Training/events.out.tfevents.1695196656.msip-dell.ims.rwth-aachen.de.1228262.7 b/runs/fashion_trainer_20230920_095734/Training vs. Validation Loss_Training/events.out.tfevents.1695196656.msip-dell.ims.rwth-aachen.de.1228262.7
new file mode 100644
index 0000000000000000000000000000000000000000..c9b7a29cdc69fc9761b8e24ee2adda341075718c
Binary files /dev/null and b/runs/fashion_trainer_20230920_095734/Training vs. Validation Loss_Training/events.out.tfevents.1695196656.msip-dell.ims.rwth-aachen.de.1228262.7 differ
diff --git a/runs/fashion_trainer_20230920_095734/Training vs. Validation Loss_Validation/events.out.tfevents.1695196656.msip-dell.ims.rwth-aachen.de.1228262.8 b/runs/fashion_trainer_20230920_095734/Training vs. Validation Loss_Validation/events.out.tfevents.1695196656.msip-dell.ims.rwth-aachen.de.1228262.8
new file mode 100644
index 0000000000000000000000000000000000000000..88a9fa6fe9054d0b88fc73836770d691a8b3d935
Binary files /dev/null and b/runs/fashion_trainer_20230920_095734/Training vs. Validation Loss_Validation/events.out.tfevents.1695196656.msip-dell.ims.rwth-aachen.de.1228262.8 differ
diff --git a/runs/fashion_trainer_20230920_095734/events.out.tfevents.1695196654.msip-dell.ims.rwth-aachen.de.1228262.6 b/runs/fashion_trainer_20230920_095734/events.out.tfevents.1695196654.msip-dell.ims.rwth-aachen.de.1228262.6
new file mode 100644
index 0000000000000000000000000000000000000000..758bb92b4e8d69d7ae772662daed0b298ad1bbeb
Binary files /dev/null and b/runs/fashion_trainer_20230920_095734/events.out.tfevents.1695196654.msip-dell.ims.rwth-aachen.de.1228262.6 differ
diff --git a/runs/fashion_trainer_20230920_095741/Training vs. Validation Loss_Training/events.out.tfevents.1695196663.msip-dell.ims.rwth-aachen.de.1222029.31 b/runs/fashion_trainer_20230920_095741/Training vs. Validation Loss_Training/events.out.tfevents.1695196663.msip-dell.ims.rwth-aachen.de.1222029.31
new file mode 100644
index 0000000000000000000000000000000000000000..d3ceb034efa40cc0a8547acc75a8ac720fa4bda4
Binary files /dev/null and b/runs/fashion_trainer_20230920_095741/Training vs. Validation Loss_Training/events.out.tfevents.1695196663.msip-dell.ims.rwth-aachen.de.1222029.31 differ
diff --git a/runs/fashion_trainer_20230920_095741/Training vs. Validation Loss_Validation/events.out.tfevents.1695196663.msip-dell.ims.rwth-aachen.de.1222029.32 b/runs/fashion_trainer_20230920_095741/Training vs. Validation Loss_Validation/events.out.tfevents.1695196663.msip-dell.ims.rwth-aachen.de.1222029.32
new file mode 100644
index 0000000000000000000000000000000000000000..e9fa3b7b8240f17c2b4956474cf786036e2d88bf
Binary files /dev/null and b/runs/fashion_trainer_20230920_095741/Training vs. Validation Loss_Validation/events.out.tfevents.1695196663.msip-dell.ims.rwth-aachen.de.1222029.32 differ
diff --git a/runs/fashion_trainer_20230920_095741/events.out.tfevents.1695196661.msip-dell.ims.rwth-aachen.de.1222029.30 b/runs/fashion_trainer_20230920_095741/events.out.tfevents.1695196661.msip-dell.ims.rwth-aachen.de.1222029.30
new file mode 100644
index 0000000000000000000000000000000000000000..6ee62d7384ad2bf66c46bc03bf59cfabea621ed8
Binary files /dev/null and b/runs/fashion_trainer_20230920_095741/events.out.tfevents.1695196661.msip-dell.ims.rwth-aachen.de.1222029.30 differ
diff --git a/runs/fashion_trainer_20230920_095745/Training vs. Validation Loss_Training/events.out.tfevents.1695196668.msip-dell.ims.rwth-aachen.de.1222030.31 b/runs/fashion_trainer_20230920_095745/Training vs. Validation Loss_Training/events.out.tfevents.1695196668.msip-dell.ims.rwth-aachen.de.1222030.31
new file mode 100644
index 0000000000000000000000000000000000000000..68b084206e649cb9adbf610e2dd39772e434dbfc
Binary files /dev/null and b/runs/fashion_trainer_20230920_095745/Training vs. Validation Loss_Training/events.out.tfevents.1695196668.msip-dell.ims.rwth-aachen.de.1222030.31 differ
diff --git a/runs/fashion_trainer_20230920_095745/Training vs. Validation Loss_Validation/events.out.tfevents.1695196668.msip-dell.ims.rwth-aachen.de.1222030.32 b/runs/fashion_trainer_20230920_095745/Training vs. Validation Loss_Validation/events.out.tfevents.1695196668.msip-dell.ims.rwth-aachen.de.1222030.32
new file mode 100644
index 0000000000000000000000000000000000000000..b904eac587030cdcbb7b3a452ee8d3ead43db608
Binary files /dev/null and b/runs/fashion_trainer_20230920_095745/Training vs. Validation Loss_Validation/events.out.tfevents.1695196668.msip-dell.ims.rwth-aachen.de.1222030.32 differ
diff --git a/runs/fashion_trainer_20230920_095745/events.out.tfevents.1695196665.msip-dell.ims.rwth-aachen.de.1222030.30 b/runs/fashion_trainer_20230920_095745/events.out.tfevents.1695196665.msip-dell.ims.rwth-aachen.de.1222030.30
new file mode 100644
index 0000000000000000000000000000000000000000..a0b95315d2c10b4a30bc02484daf860dba77852e
Binary files /dev/null and b/runs/fashion_trainer_20230920_095745/events.out.tfevents.1695196665.msip-dell.ims.rwth-aachen.de.1222030.30 differ
diff --git a/runs/fashion_trainer_20230920_100001/Training vs. Validation Loss_Training/events.out.tfevents.1695196804.msip-dell.ims.rwth-aachen.de.1222029.34 b/runs/fashion_trainer_20230920_100001/Training vs. Validation Loss_Training/events.out.tfevents.1695196804.msip-dell.ims.rwth-aachen.de.1222029.34
new file mode 100644
index 0000000000000000000000000000000000000000..b0a00c174757d1610cc5b66c38d1f97b7e68aee3
Binary files /dev/null and b/runs/fashion_trainer_20230920_100001/Training vs. Validation Loss_Training/events.out.tfevents.1695196804.msip-dell.ims.rwth-aachen.de.1222029.34 differ
diff --git a/runs/fashion_trainer_20230920_100001/Training vs. Validation Loss_Validation/events.out.tfevents.1695196804.msip-dell.ims.rwth-aachen.de.1222029.35 b/runs/fashion_trainer_20230920_100001/Training vs. Validation Loss_Validation/events.out.tfevents.1695196804.msip-dell.ims.rwth-aachen.de.1222029.35
new file mode 100644
index 0000000000000000000000000000000000000000..611f29618f170a3fe09116133a97e1ec33a913a0
Binary files /dev/null and b/runs/fashion_trainer_20230920_100001/Training vs. Validation Loss_Validation/events.out.tfevents.1695196804.msip-dell.ims.rwth-aachen.de.1222029.35 differ
diff --git a/runs/fashion_trainer_20230920_100001/events.out.tfevents.1695196801.msip-dell.ims.rwth-aachen.de.1222029.33 b/runs/fashion_trainer_20230920_100001/events.out.tfevents.1695196801.msip-dell.ims.rwth-aachen.de.1222029.33
new file mode 100644
index 0000000000000000000000000000000000000000..076a3745631f674c05eab01ebdb45cd61f9b82d5
Binary files /dev/null and b/runs/fashion_trainer_20230920_100001/events.out.tfevents.1695196801.msip-dell.ims.rwth-aachen.de.1222029.33 differ
diff --git a/runs/fashion_trainer_20230920_100006/Training vs. Validation Loss_Training/events.out.tfevents.1695196809.msip-dell.ims.rwth-aachen.de.1222030.34 b/runs/fashion_trainer_20230920_100006/Training vs. Validation Loss_Training/events.out.tfevents.1695196809.msip-dell.ims.rwth-aachen.de.1222030.34
new file mode 100644
index 0000000000000000000000000000000000000000..459bc31cb44cdd60d0c3e3d96cb1379e1d6ca821
Binary files /dev/null and b/runs/fashion_trainer_20230920_100006/Training vs. Validation Loss_Training/events.out.tfevents.1695196809.msip-dell.ims.rwth-aachen.de.1222030.34 differ
diff --git a/runs/fashion_trainer_20230920_100006/Training vs. Validation Loss_Validation/events.out.tfevents.1695196809.msip-dell.ims.rwth-aachen.de.1222030.35 b/runs/fashion_trainer_20230920_100006/Training vs. Validation Loss_Validation/events.out.tfevents.1695196809.msip-dell.ims.rwth-aachen.de.1222030.35
new file mode 100644
index 0000000000000000000000000000000000000000..f4267063a67ac3d858de3edd86dacb7b6de1db46
Binary files /dev/null and b/runs/fashion_trainer_20230920_100006/Training vs. Validation Loss_Validation/events.out.tfevents.1695196809.msip-dell.ims.rwth-aachen.de.1222030.35 differ
diff --git a/runs/fashion_trainer_20230920_100006/events.out.tfevents.1695196806.msip-dell.ims.rwth-aachen.de.1222030.33 b/runs/fashion_trainer_20230920_100006/events.out.tfevents.1695196806.msip-dell.ims.rwth-aachen.de.1222030.33
new file mode 100644
index 0000000000000000000000000000000000000000..5e7efd3b821b5612ac8306a4ff1359908661d6a6
Binary files /dev/null and b/runs/fashion_trainer_20230920_100006/events.out.tfevents.1695196806.msip-dell.ims.rwth-aachen.de.1222030.33 differ
diff --git a/runs/fashion_trainer_20230920_100217/Training vs. Validation Loss_Training/events.out.tfevents.1695196940.msip-dell.ims.rwth-aachen.de.1222029.37 b/runs/fashion_trainer_20230920_100217/Training vs. Validation Loss_Training/events.out.tfevents.1695196940.msip-dell.ims.rwth-aachen.de.1222029.37
new file mode 100644
index 0000000000000000000000000000000000000000..8e1dfd3c156f34fe550e4e125bc02bce108a33e9
Binary files /dev/null and b/runs/fashion_trainer_20230920_100217/Training vs. Validation Loss_Training/events.out.tfevents.1695196940.msip-dell.ims.rwth-aachen.de.1222029.37 differ
diff --git a/runs/fashion_trainer_20230920_100217/Training vs. Validation Loss_Validation/events.out.tfevents.1695196940.msip-dell.ims.rwth-aachen.de.1222029.38 b/runs/fashion_trainer_20230920_100217/Training vs. Validation Loss_Validation/events.out.tfevents.1695196940.msip-dell.ims.rwth-aachen.de.1222029.38
new file mode 100644
index 0000000000000000000000000000000000000000..1707a57809249ee26e0a967764e8343026968594
Binary files /dev/null and b/runs/fashion_trainer_20230920_100217/Training vs. Validation Loss_Validation/events.out.tfevents.1695196940.msip-dell.ims.rwth-aachen.de.1222029.38 differ
diff --git a/runs/fashion_trainer_20230920_100217/events.out.tfevents.1695196937.msip-dell.ims.rwth-aachen.de.1222029.36 b/runs/fashion_trainer_20230920_100217/events.out.tfevents.1695196937.msip-dell.ims.rwth-aachen.de.1222029.36
new file mode 100644
index 0000000000000000000000000000000000000000..05a5a7a8f0f5d1b06f3e5c7075b99deb77dec10e
Binary files /dev/null and b/runs/fashion_trainer_20230920_100217/events.out.tfevents.1695196937.msip-dell.ims.rwth-aachen.de.1222029.36 differ
diff --git a/runs/fashion_trainer_20230920_100226/Training vs. Validation Loss_Training/events.out.tfevents.1695196948.msip-dell.ims.rwth-aachen.de.1222030.37 b/runs/fashion_trainer_20230920_100226/Training vs. Validation Loss_Training/events.out.tfevents.1695196948.msip-dell.ims.rwth-aachen.de.1222030.37
new file mode 100644
index 0000000000000000000000000000000000000000..cd5e50c10cb35cfbaa9e0fe930f46f50b01f15be
Binary files /dev/null and b/runs/fashion_trainer_20230920_100226/Training vs. Validation Loss_Training/events.out.tfevents.1695196948.msip-dell.ims.rwth-aachen.de.1222030.37 differ
diff --git a/runs/fashion_trainer_20230920_100226/Training vs. Validation Loss_Validation/events.out.tfevents.1695196948.msip-dell.ims.rwth-aachen.de.1222030.38 b/runs/fashion_trainer_20230920_100226/Training vs. Validation Loss_Validation/events.out.tfevents.1695196948.msip-dell.ims.rwth-aachen.de.1222030.38
new file mode 100644
index 0000000000000000000000000000000000000000..f5bf1d0f8374142727faa28200fc6087d196bc08
Binary files /dev/null and b/runs/fashion_trainer_20230920_100226/Training vs. Validation Loss_Validation/events.out.tfevents.1695196948.msip-dell.ims.rwth-aachen.de.1222030.38 differ
diff --git a/runs/fashion_trainer_20230920_100226/events.out.tfevents.1695196946.msip-dell.ims.rwth-aachen.de.1222030.36 b/runs/fashion_trainer_20230920_100226/events.out.tfevents.1695196946.msip-dell.ims.rwth-aachen.de.1222030.36
new file mode 100644
index 0000000000000000000000000000000000000000..2b1ff6535d723e75bd4982689c956522ac133704
Binary files /dev/null and b/runs/fashion_trainer_20230920_100226/events.out.tfevents.1695196946.msip-dell.ims.rwth-aachen.de.1222030.36 differ
diff --git a/runs/fashion_trainer_20230920_100432/Training vs. Validation Loss_Training/events.out.tfevents.1695197075.msip-dell.ims.rwth-aachen.de.1222029.40 b/runs/fashion_trainer_20230920_100432/Training vs. Validation Loss_Training/events.out.tfevents.1695197075.msip-dell.ims.rwth-aachen.de.1222029.40
new file mode 100644
index 0000000000000000000000000000000000000000..65d6479fcad4eae5a9271b762ff92baaebdd352c
Binary files /dev/null and b/runs/fashion_trainer_20230920_100432/Training vs. Validation Loss_Training/events.out.tfevents.1695197075.msip-dell.ims.rwth-aachen.de.1222029.40 differ
diff --git a/runs/fashion_trainer_20230920_100432/Training vs. Validation Loss_Validation/events.out.tfevents.1695197075.msip-dell.ims.rwth-aachen.de.1222029.41 b/runs/fashion_trainer_20230920_100432/Training vs. Validation Loss_Validation/events.out.tfevents.1695197075.msip-dell.ims.rwth-aachen.de.1222029.41
new file mode 100644
index 0000000000000000000000000000000000000000..908a7aef8d05d821cc55b71e2b54ac02e27c7e62
Binary files /dev/null and b/runs/fashion_trainer_20230920_100432/Training vs. Validation Loss_Validation/events.out.tfevents.1695197075.msip-dell.ims.rwth-aachen.de.1222029.41 differ
diff --git a/runs/fashion_trainer_20230920_100432/events.out.tfevents.1695197072.msip-dell.ims.rwth-aachen.de.1222029.39 b/runs/fashion_trainer_20230920_100432/events.out.tfevents.1695197072.msip-dell.ims.rwth-aachen.de.1222029.39
new file mode 100644
index 0000000000000000000000000000000000000000..2caa65bb2164269dd7ecee26605831993da938c2
Binary files /dev/null and b/runs/fashion_trainer_20230920_100432/events.out.tfevents.1695197072.msip-dell.ims.rwth-aachen.de.1222029.39 differ
diff --git a/runs/fashion_trainer_20230920_100441/Training vs. Validation Loss_Training/events.out.tfevents.1695197084.msip-dell.ims.rwth-aachen.de.1222030.40 b/runs/fashion_trainer_20230920_100441/Training vs. Validation Loss_Training/events.out.tfevents.1695197084.msip-dell.ims.rwth-aachen.de.1222030.40
new file mode 100644
index 0000000000000000000000000000000000000000..17b69671316d576025697715e339a0fb80a03a35
Binary files /dev/null and b/runs/fashion_trainer_20230920_100441/Training vs. Validation Loss_Training/events.out.tfevents.1695197084.msip-dell.ims.rwth-aachen.de.1222030.40 differ
diff --git a/runs/fashion_trainer_20230920_100441/Training vs. Validation Loss_Validation/events.out.tfevents.1695197084.msip-dell.ims.rwth-aachen.de.1222030.41 b/runs/fashion_trainer_20230920_100441/Training vs. Validation Loss_Validation/events.out.tfevents.1695197084.msip-dell.ims.rwth-aachen.de.1222030.41
new file mode 100644
index 0000000000000000000000000000000000000000..49135a0fb6d786ee061876a1d8b8fbd9323c3dc2
Binary files /dev/null and b/runs/fashion_trainer_20230920_100441/Training vs. Validation Loss_Validation/events.out.tfevents.1695197084.msip-dell.ims.rwth-aachen.de.1222030.41 differ
diff --git a/runs/fashion_trainer_20230920_100441/events.out.tfevents.1695197081.msip-dell.ims.rwth-aachen.de.1222030.39 b/runs/fashion_trainer_20230920_100441/events.out.tfevents.1695197081.msip-dell.ims.rwth-aachen.de.1222030.39
new file mode 100644
index 0000000000000000000000000000000000000000..c1f76528f04abc6a7bf5a9b5847c481d9f0e452b
Binary files /dev/null and b/runs/fashion_trainer_20230920_100441/events.out.tfevents.1695197081.msip-dell.ims.rwth-aachen.de.1222030.39 differ
diff --git a/runs/fashion_trainer_20230920_100519/Training vs. Validation Loss_Training/events.out.tfevents.1695197123.msip-dell.ims.rwth-aachen.de.1229599.1 b/runs/fashion_trainer_20230920_100519/Training vs. Validation Loss_Training/events.out.tfevents.1695197123.msip-dell.ims.rwth-aachen.de.1229599.1
new file mode 100644
index 0000000000000000000000000000000000000000..48b7fd588c783083cff9c442a2ed3977b9177823
Binary files /dev/null and b/runs/fashion_trainer_20230920_100519/Training vs. Validation Loss_Training/events.out.tfevents.1695197123.msip-dell.ims.rwth-aachen.de.1229599.1 differ
diff --git a/runs/fashion_trainer_20230920_100519/Training vs. Validation Loss_Validation/events.out.tfevents.1695197123.msip-dell.ims.rwth-aachen.de.1229599.2 b/runs/fashion_trainer_20230920_100519/Training vs. Validation Loss_Validation/events.out.tfevents.1695197123.msip-dell.ims.rwth-aachen.de.1229599.2
new file mode 100644
index 0000000000000000000000000000000000000000..44089b1fbf0f8c1c24186c88bc1f3adfb56eace2
Binary files /dev/null and b/runs/fashion_trainer_20230920_100519/Training vs. Validation Loss_Validation/events.out.tfevents.1695197123.msip-dell.ims.rwth-aachen.de.1229599.2 differ
diff --git a/runs/fashion_trainer_20230920_100519/events.out.tfevents.1695197119.msip-dell.ims.rwth-aachen.de.1229599.0 b/runs/fashion_trainer_20230920_100519/events.out.tfevents.1695197119.msip-dell.ims.rwth-aachen.de.1229599.0
new file mode 100644
index 0000000000000000000000000000000000000000..35c375de9786e2c30433af999a5a86675388ca63
Binary files /dev/null and b/runs/fashion_trainer_20230920_100519/events.out.tfevents.1695197119.msip-dell.ims.rwth-aachen.de.1229599.0 differ
diff --git a/runs/fashion_trainer_20230920_100527/Training vs. Validation Loss_Training/events.out.tfevents.1695197131.msip-dell.ims.rwth-aachen.de.1229599.4 b/runs/fashion_trainer_20230920_100527/Training vs. Validation Loss_Training/events.out.tfevents.1695197131.msip-dell.ims.rwth-aachen.de.1229599.4
new file mode 100644
index 0000000000000000000000000000000000000000..0446d303aaf256769e06c8780d0f49426cd9e784
Binary files /dev/null and b/runs/fashion_trainer_20230920_100527/Training vs. Validation Loss_Training/events.out.tfevents.1695197131.msip-dell.ims.rwth-aachen.de.1229599.4 differ
diff --git a/runs/fashion_trainer_20230920_100527/Training vs. Validation Loss_Validation/events.out.tfevents.1695197131.msip-dell.ims.rwth-aachen.de.1229599.5 b/runs/fashion_trainer_20230920_100527/Training vs. Validation Loss_Validation/events.out.tfevents.1695197131.msip-dell.ims.rwth-aachen.de.1229599.5
new file mode 100644
index 0000000000000000000000000000000000000000..ad9a5b05b0008b8c7fa7c4a1b015168b498f718b
Binary files /dev/null and b/runs/fashion_trainer_20230920_100527/Training vs. Validation Loss_Validation/events.out.tfevents.1695197131.msip-dell.ims.rwth-aachen.de.1229599.5 differ
diff --git a/runs/fashion_trainer_20230920_100527/events.out.tfevents.1695197127.msip-dell.ims.rwth-aachen.de.1229599.3 b/runs/fashion_trainer_20230920_100527/events.out.tfevents.1695197127.msip-dell.ims.rwth-aachen.de.1229599.3
new file mode 100644
index 0000000000000000000000000000000000000000..046515dec5edee7b6e03c14ffadfbb856e54f779
Binary files /dev/null and b/runs/fashion_trainer_20230920_100527/events.out.tfevents.1695197127.msip-dell.ims.rwth-aachen.de.1229599.3 differ
diff --git a/runs/fashion_trainer_20230920_100537/Training vs. Validation Loss_Training/events.out.tfevents.1695197140.msip-dell.ims.rwth-aachen.de.1229599.7 b/runs/fashion_trainer_20230920_100537/Training vs. Validation Loss_Training/events.out.tfevents.1695197140.msip-dell.ims.rwth-aachen.de.1229599.7
new file mode 100644
index 0000000000000000000000000000000000000000..841da002c86ee5bbe4e3605600db15f1f5245183
Binary files /dev/null and b/runs/fashion_trainer_20230920_100537/Training vs. Validation Loss_Training/events.out.tfevents.1695197140.msip-dell.ims.rwth-aachen.de.1229599.7 differ
diff --git a/runs/fashion_trainer_20230920_100537/Training vs. Validation Loss_Validation/events.out.tfevents.1695197140.msip-dell.ims.rwth-aachen.de.1229599.8 b/runs/fashion_trainer_20230920_100537/Training vs. Validation Loss_Validation/events.out.tfevents.1695197140.msip-dell.ims.rwth-aachen.de.1229599.8
new file mode 100644
index 0000000000000000000000000000000000000000..9f3ca72c88b7a6e031144a464989624a840effa8
Binary files /dev/null and b/runs/fashion_trainer_20230920_100537/Training vs. Validation Loss_Validation/events.out.tfevents.1695197140.msip-dell.ims.rwth-aachen.de.1229599.8 differ
diff --git a/runs/fashion_trainer_20230920_100537/events.out.tfevents.1695197137.msip-dell.ims.rwth-aachen.de.1229599.6 b/runs/fashion_trainer_20230920_100537/events.out.tfevents.1695197137.msip-dell.ims.rwth-aachen.de.1229599.6
new file mode 100644
index 0000000000000000000000000000000000000000..2ab24c281b5c7dba03bb20954c6afe17ec66d2ae
Binary files /dev/null and b/runs/fashion_trainer_20230920_100537/events.out.tfevents.1695197137.msip-dell.ims.rwth-aachen.de.1229599.6 differ
diff --git a/runs/fashion_trainer_20230920_100602/Training vs. Validation Loss_Training/events.out.tfevents.1695197165.msip-dell.ims.rwth-aachen.de.1229900.1 b/runs/fashion_trainer_20230920_100602/Training vs. Validation Loss_Training/events.out.tfevents.1695197165.msip-dell.ims.rwth-aachen.de.1229900.1
new file mode 100644
index 0000000000000000000000000000000000000000..e297b724db7a9b7eafb0f0ed90d7fdabd98ef58b
Binary files /dev/null and b/runs/fashion_trainer_20230920_100602/Training vs. Validation Loss_Training/events.out.tfevents.1695197165.msip-dell.ims.rwth-aachen.de.1229900.1 differ
diff --git a/runs/fashion_trainer_20230920_100602/Training vs. Validation Loss_Validation/events.out.tfevents.1695197165.msip-dell.ims.rwth-aachen.de.1229900.2 b/runs/fashion_trainer_20230920_100602/Training vs. Validation Loss_Validation/events.out.tfevents.1695197165.msip-dell.ims.rwth-aachen.de.1229900.2
new file mode 100644
index 0000000000000000000000000000000000000000..87c4f38f99984e56c8e129c86f929e88f001f2dd
Binary files /dev/null and b/runs/fashion_trainer_20230920_100602/Training vs. Validation Loss_Validation/events.out.tfevents.1695197165.msip-dell.ims.rwth-aachen.de.1229900.2 differ
diff --git a/runs/fashion_trainer_20230920_100602/events.out.tfevents.1695197162.msip-dell.ims.rwth-aachen.de.1229900.0 b/runs/fashion_trainer_20230920_100602/events.out.tfevents.1695197162.msip-dell.ims.rwth-aachen.de.1229900.0
new file mode 100644
index 0000000000000000000000000000000000000000..2a72061cbc81c2775a9cd19da60961de93e4d433
Binary files /dev/null and b/runs/fashion_trainer_20230920_100602/events.out.tfevents.1695197162.msip-dell.ims.rwth-aachen.de.1229900.0 differ
diff --git a/runs/fashion_trainer_20230920_100615/Training vs. Validation Loss_Training/events.out.tfevents.1695197178.msip-dell.ims.rwth-aachen.de.1229900.4 b/runs/fashion_trainer_20230920_100615/Training vs. Validation Loss_Training/events.out.tfevents.1695197178.msip-dell.ims.rwth-aachen.de.1229900.4
new file mode 100644
index 0000000000000000000000000000000000000000..e3b1bbf041f9011e96e199474362ec0a12981c94
Binary files /dev/null and b/runs/fashion_trainer_20230920_100615/Training vs. Validation Loss_Training/events.out.tfevents.1695197178.msip-dell.ims.rwth-aachen.de.1229900.4 differ
diff --git a/runs/fashion_trainer_20230920_100615/Training vs. Validation Loss_Validation/events.out.tfevents.1695197178.msip-dell.ims.rwth-aachen.de.1229900.5 b/runs/fashion_trainer_20230920_100615/Training vs. Validation Loss_Validation/events.out.tfevents.1695197178.msip-dell.ims.rwth-aachen.de.1229900.5
new file mode 100644
index 0000000000000000000000000000000000000000..7f3610682798c4c9ac6f1b8c695abe48d057353b
Binary files /dev/null and b/runs/fashion_trainer_20230920_100615/Training vs. Validation Loss_Validation/events.out.tfevents.1695197178.msip-dell.ims.rwth-aachen.de.1229900.5 differ
diff --git a/runs/fashion_trainer_20230920_100615/events.out.tfevents.1695197175.msip-dell.ims.rwth-aachen.de.1229900.3 b/runs/fashion_trainer_20230920_100615/events.out.tfevents.1695197175.msip-dell.ims.rwth-aachen.de.1229900.3
new file mode 100644
index 0000000000000000000000000000000000000000..fecdef60635f26bdb2ca86446db4fc437adb15bf
Binary files /dev/null and b/runs/fashion_trainer_20230920_100615/events.out.tfevents.1695197175.msip-dell.ims.rwth-aachen.de.1229900.3 differ
diff --git a/runs/fashion_trainer_20230920_100632/Training vs. Validation Loss_Training/events.out.tfevents.1695197195.msip-dell.ims.rwth-aachen.de.1229900.7 b/runs/fashion_trainer_20230920_100632/Training vs. Validation Loss_Training/events.out.tfevents.1695197195.msip-dell.ims.rwth-aachen.de.1229900.7
new file mode 100644
index 0000000000000000000000000000000000000000..c597d3c045a68ab0bf5a2c222b6f740d24b2093e
Binary files /dev/null and b/runs/fashion_trainer_20230920_100632/Training vs. Validation Loss_Training/events.out.tfevents.1695197195.msip-dell.ims.rwth-aachen.de.1229900.7 differ
diff --git a/runs/fashion_trainer_20230920_100632/Training vs. Validation Loss_Validation/events.out.tfevents.1695197195.msip-dell.ims.rwth-aachen.de.1229900.8 b/runs/fashion_trainer_20230920_100632/Training vs. Validation Loss_Validation/events.out.tfevents.1695197195.msip-dell.ims.rwth-aachen.de.1229900.8
new file mode 100644
index 0000000000000000000000000000000000000000..7bb5590c6cc20385bce3a8d88e140b42c0a92454
Binary files /dev/null and b/runs/fashion_trainer_20230920_100632/Training vs. Validation Loss_Validation/events.out.tfevents.1695197195.msip-dell.ims.rwth-aachen.de.1229900.8 differ
diff --git a/runs/fashion_trainer_20230920_100632/events.out.tfevents.1695197192.msip-dell.ims.rwth-aachen.de.1229900.6 b/runs/fashion_trainer_20230920_100632/events.out.tfevents.1695197192.msip-dell.ims.rwth-aachen.de.1229900.6
new file mode 100644
index 0000000000000000000000000000000000000000..0959e8937a9600742e0dda94175b075b6961878c
Binary files /dev/null and b/runs/fashion_trainer_20230920_100632/events.out.tfevents.1695197192.msip-dell.ims.rwth-aachen.de.1229900.6 differ
diff --git a/runs/fashion_trainer_20230920_100642/Training vs. Validation Loss_Training/events.out.tfevents.1695197205.msip-dell.ims.rwth-aachen.de.1230305.1 b/runs/fashion_trainer_20230920_100642/Training vs. Validation Loss_Training/events.out.tfevents.1695197205.msip-dell.ims.rwth-aachen.de.1230305.1
new file mode 100644
index 0000000000000000000000000000000000000000..1cfc561c832870f8a61f6f900a8301e08a1d780d
Binary files /dev/null and b/runs/fashion_trainer_20230920_100642/Training vs. Validation Loss_Training/events.out.tfevents.1695197205.msip-dell.ims.rwth-aachen.de.1230305.1 differ
diff --git a/runs/fashion_trainer_20230920_100642/Training vs. Validation Loss_Validation/events.out.tfevents.1695197205.msip-dell.ims.rwth-aachen.de.1230305.2 b/runs/fashion_trainer_20230920_100642/Training vs. Validation Loss_Validation/events.out.tfevents.1695197205.msip-dell.ims.rwth-aachen.de.1230305.2
new file mode 100644
index 0000000000000000000000000000000000000000..57dcfb351fe4fca0e10eedcba65fdea93b84e850
Binary files /dev/null and b/runs/fashion_trainer_20230920_100642/Training vs. Validation Loss_Validation/events.out.tfevents.1695197205.msip-dell.ims.rwth-aachen.de.1230305.2 differ
diff --git a/runs/fashion_trainer_20230920_100642/events.out.tfevents.1695197202.msip-dell.ims.rwth-aachen.de.1230305.0 b/runs/fashion_trainer_20230920_100642/events.out.tfevents.1695197202.msip-dell.ims.rwth-aachen.de.1230305.0
new file mode 100644
index 0000000000000000000000000000000000000000..fcad0478c478a30d8ae21af06aa2e8cc4293402a
Binary files /dev/null and b/runs/fashion_trainer_20230920_100642/events.out.tfevents.1695197202.msip-dell.ims.rwth-aachen.de.1230305.0 differ
diff --git a/runs/fashion_trainer_20230920_100649/Training vs. Validation Loss_Training/events.out.tfevents.1695197211.msip-dell.ims.rwth-aachen.de.1222029.43 b/runs/fashion_trainer_20230920_100649/Training vs. Validation Loss_Training/events.out.tfevents.1695197211.msip-dell.ims.rwth-aachen.de.1222029.43
new file mode 100644
index 0000000000000000000000000000000000000000..ae99dbc279fc6ae4b6b2944f7ffb28cd322ae7ce
Binary files /dev/null and b/runs/fashion_trainer_20230920_100649/Training vs. Validation Loss_Training/events.out.tfevents.1695197211.msip-dell.ims.rwth-aachen.de.1222029.43 differ
diff --git a/runs/fashion_trainer_20230920_100649/Training vs. Validation Loss_Validation/events.out.tfevents.1695197211.msip-dell.ims.rwth-aachen.de.1222029.44 b/runs/fashion_trainer_20230920_100649/Training vs. Validation Loss_Validation/events.out.tfevents.1695197211.msip-dell.ims.rwth-aachen.de.1222029.44
new file mode 100644
index 0000000000000000000000000000000000000000..f1d20ea72c2d2218c20648d780e8d859b026e6ab
Binary files /dev/null and b/runs/fashion_trainer_20230920_100649/Training vs. Validation Loss_Validation/events.out.tfevents.1695197211.msip-dell.ims.rwth-aachen.de.1222029.44 differ
diff --git a/runs/fashion_trainer_20230920_100649/events.out.tfevents.1695197209.msip-dell.ims.rwth-aachen.de.1222029.42 b/runs/fashion_trainer_20230920_100649/events.out.tfevents.1695197209.msip-dell.ims.rwth-aachen.de.1222029.42
new file mode 100644
index 0000000000000000000000000000000000000000..1dee1aafd6657ba33b381cb8ea4cc61ccef80ae4
Binary files /dev/null and b/runs/fashion_trainer_20230920_100649/events.out.tfevents.1695197209.msip-dell.ims.rwth-aachen.de.1222029.42 differ
diff --git a/runs/fashion_trainer_20230920_100652/Training vs. Validation Loss_Training/events.out.tfevents.1695197214.msip-dell.ims.rwth-aachen.de.1230305.4 b/runs/fashion_trainer_20230920_100652/Training vs. Validation Loss_Training/events.out.tfevents.1695197214.msip-dell.ims.rwth-aachen.de.1230305.4
new file mode 100644
index 0000000000000000000000000000000000000000..f9a9c3b45dc708dec3c43fe06de06aa8c4b8eb11
Binary files /dev/null and b/runs/fashion_trainer_20230920_100652/Training vs. Validation Loss_Training/events.out.tfevents.1695197214.msip-dell.ims.rwth-aachen.de.1230305.4 differ
diff --git a/runs/fashion_trainer_20230920_100652/Training vs. Validation Loss_Validation/events.out.tfevents.1695197214.msip-dell.ims.rwth-aachen.de.1230305.5 b/runs/fashion_trainer_20230920_100652/Training vs. Validation Loss_Validation/events.out.tfevents.1695197214.msip-dell.ims.rwth-aachen.de.1230305.5
new file mode 100644
index 0000000000000000000000000000000000000000..46461bfc7bafd047d74b0b53f11b815b5a366218
Binary files /dev/null and b/runs/fashion_trainer_20230920_100652/Training vs. Validation Loss_Validation/events.out.tfevents.1695197214.msip-dell.ims.rwth-aachen.de.1230305.5 differ
diff --git a/runs/fashion_trainer_20230920_100652/events.out.tfevents.1695197212.msip-dell.ims.rwth-aachen.de.1230305.3 b/runs/fashion_trainer_20230920_100652/events.out.tfevents.1695197212.msip-dell.ims.rwth-aachen.de.1230305.3
new file mode 100644
index 0000000000000000000000000000000000000000..301d21294c0e16af2dea70ef15da03e6f9513250
Binary files /dev/null and b/runs/fashion_trainer_20230920_100652/events.out.tfevents.1695197212.msip-dell.ims.rwth-aachen.de.1230305.3 differ
diff --git a/runs/fashion_trainer_20230920_100701/Training vs. Validation Loss_Training/events.out.tfevents.1695197224.msip-dell.ims.rwth-aachen.de.1222030.43 b/runs/fashion_trainer_20230920_100701/Training vs. Validation Loss_Training/events.out.tfevents.1695197224.msip-dell.ims.rwth-aachen.de.1222030.43
new file mode 100644
index 0000000000000000000000000000000000000000..b595f682b0b64e2a8737d7bfa9c497a15bcd2150
Binary files /dev/null and b/runs/fashion_trainer_20230920_100701/Training vs. Validation Loss_Training/events.out.tfevents.1695197224.msip-dell.ims.rwth-aachen.de.1222030.43 differ
diff --git a/runs/fashion_trainer_20230920_100701/Training vs. Validation Loss_Validation/events.out.tfevents.1695197224.msip-dell.ims.rwth-aachen.de.1222030.44 b/runs/fashion_trainer_20230920_100701/Training vs. Validation Loss_Validation/events.out.tfevents.1695197224.msip-dell.ims.rwth-aachen.de.1222030.44
new file mode 100644
index 0000000000000000000000000000000000000000..6e09207908596da065c9a569209c68c43ae254f3
Binary files /dev/null and b/runs/fashion_trainer_20230920_100701/Training vs. Validation Loss_Validation/events.out.tfevents.1695197224.msip-dell.ims.rwth-aachen.de.1222030.44 differ
diff --git a/runs/fashion_trainer_20230920_100701/events.out.tfevents.1695197221.msip-dell.ims.rwth-aachen.de.1222030.42 b/runs/fashion_trainer_20230920_100701/events.out.tfevents.1695197221.msip-dell.ims.rwth-aachen.de.1222030.42
new file mode 100644
index 0000000000000000000000000000000000000000..312863b0a5caccb6fe8bfa2e10ce3ddccdd099d8
Binary files /dev/null and b/runs/fashion_trainer_20230920_100701/events.out.tfevents.1695197221.msip-dell.ims.rwth-aachen.de.1222030.42 differ
diff --git a/runs/fashion_trainer_20230920_100703/Training vs. Validation Loss_Training/events.out.tfevents.1695197226.msip-dell.ims.rwth-aachen.de.1230305.7 b/runs/fashion_trainer_20230920_100703/Training vs. Validation Loss_Training/events.out.tfevents.1695197226.msip-dell.ims.rwth-aachen.de.1230305.7
new file mode 100644
index 0000000000000000000000000000000000000000..75b6983a29270af310928dbecb60eca1b80d9a88
Binary files /dev/null and b/runs/fashion_trainer_20230920_100703/Training vs. Validation Loss_Training/events.out.tfevents.1695197226.msip-dell.ims.rwth-aachen.de.1230305.7 differ
diff --git a/runs/fashion_trainer_20230920_100703/Training vs. Validation Loss_Validation/events.out.tfevents.1695197226.msip-dell.ims.rwth-aachen.de.1230305.8 b/runs/fashion_trainer_20230920_100703/Training vs. Validation Loss_Validation/events.out.tfevents.1695197226.msip-dell.ims.rwth-aachen.de.1230305.8
new file mode 100644
index 0000000000000000000000000000000000000000..41986acce65954866e090753a1985767635bf0c2
Binary files /dev/null and b/runs/fashion_trainer_20230920_100703/Training vs. Validation Loss_Validation/events.out.tfevents.1695197226.msip-dell.ims.rwth-aachen.de.1230305.8 differ
diff --git a/runs/fashion_trainer_20230920_100703/events.out.tfevents.1695197223.msip-dell.ims.rwth-aachen.de.1230305.6 b/runs/fashion_trainer_20230920_100703/events.out.tfevents.1695197223.msip-dell.ims.rwth-aachen.de.1230305.6
new file mode 100644
index 0000000000000000000000000000000000000000..26c95b1c44e3546a551fb00d5ccb91401ebddc74
Binary files /dev/null and b/runs/fashion_trainer_20230920_100703/events.out.tfevents.1695197223.msip-dell.ims.rwth-aachen.de.1230305.6 differ
diff --git a/runs/fashion_trainer_20230920_100903/Training vs. Validation Loss_Training/events.out.tfevents.1695197345.msip-dell.ims.rwth-aachen.de.1222029.46 b/runs/fashion_trainer_20230920_100903/Training vs. Validation Loss_Training/events.out.tfevents.1695197345.msip-dell.ims.rwth-aachen.de.1222029.46
new file mode 100644
index 0000000000000000000000000000000000000000..6c4806ebc62dffbe4479a443487ce0a3000289fc
Binary files /dev/null and b/runs/fashion_trainer_20230920_100903/Training vs. Validation Loss_Training/events.out.tfevents.1695197345.msip-dell.ims.rwth-aachen.de.1222029.46 differ
diff --git a/runs/fashion_trainer_20230920_100903/Training vs. Validation Loss_Validation/events.out.tfevents.1695197345.msip-dell.ims.rwth-aachen.de.1222029.47 b/runs/fashion_trainer_20230920_100903/Training vs. Validation Loss_Validation/events.out.tfevents.1695197345.msip-dell.ims.rwth-aachen.de.1222029.47
new file mode 100644
index 0000000000000000000000000000000000000000..7d91b6f8fd97f78b16a24ad8dd3da53d84433ae2
Binary files /dev/null and b/runs/fashion_trainer_20230920_100903/Training vs. Validation Loss_Validation/events.out.tfevents.1695197345.msip-dell.ims.rwth-aachen.de.1222029.47 differ
diff --git a/runs/fashion_trainer_20230920_100903/events.out.tfevents.1695197343.msip-dell.ims.rwth-aachen.de.1222029.45 b/runs/fashion_trainer_20230920_100903/events.out.tfevents.1695197343.msip-dell.ims.rwth-aachen.de.1222029.45
new file mode 100644
index 0000000000000000000000000000000000000000..31da1cae3f78f8c5f05e8ec92a18cb70f96b3377
Binary files /dev/null and b/runs/fashion_trainer_20230920_100903/events.out.tfevents.1695197343.msip-dell.ims.rwth-aachen.de.1222029.45 differ
diff --git a/runs/fashion_trainer_20230920_100917/Training vs. Validation Loss_Training/events.out.tfevents.1695197360.msip-dell.ims.rwth-aachen.de.1222030.46 b/runs/fashion_trainer_20230920_100917/Training vs. Validation Loss_Training/events.out.tfevents.1695197360.msip-dell.ims.rwth-aachen.de.1222030.46
new file mode 100644
index 0000000000000000000000000000000000000000..4d6bb454adbe9db790c6f46be34beeaeba232229
Binary files /dev/null and b/runs/fashion_trainer_20230920_100917/Training vs. Validation Loss_Training/events.out.tfevents.1695197360.msip-dell.ims.rwth-aachen.de.1222030.46 differ
diff --git a/runs/fashion_trainer_20230920_100917/Training vs. Validation Loss_Validation/events.out.tfevents.1695197360.msip-dell.ims.rwth-aachen.de.1222030.47 b/runs/fashion_trainer_20230920_100917/Training vs. Validation Loss_Validation/events.out.tfevents.1695197360.msip-dell.ims.rwth-aachen.de.1222030.47
new file mode 100644
index 0000000000000000000000000000000000000000..3be9ff135777a2eafbd4eb8dd7c546f7510c9557
Binary files /dev/null and b/runs/fashion_trainer_20230920_100917/Training vs. Validation Loss_Validation/events.out.tfevents.1695197360.msip-dell.ims.rwth-aachen.de.1222030.47 differ
diff --git a/runs/fashion_trainer_20230920_100917/events.out.tfevents.1695197357.msip-dell.ims.rwth-aachen.de.1222030.45 b/runs/fashion_trainer_20230920_100917/events.out.tfevents.1695197357.msip-dell.ims.rwth-aachen.de.1222030.45
new file mode 100644
index 0000000000000000000000000000000000000000..a067ba62a52e70e24812d3a868ce01ec962ebc59
Binary files /dev/null and b/runs/fashion_trainer_20230920_100917/events.out.tfevents.1695197357.msip-dell.ims.rwth-aachen.de.1222030.45 differ
diff --git a/runs/fashion_trainer_20230920_101110/Training vs. Validation Loss_Training/events.out.tfevents.1695197473.msip-dell.ims.rwth-aachen.de.1222029.49 b/runs/fashion_trainer_20230920_101110/Training vs. Validation Loss_Training/events.out.tfevents.1695197473.msip-dell.ims.rwth-aachen.de.1222029.49
new file mode 100644
index 0000000000000000000000000000000000000000..aad32495fd25edd2198fa43c74b2ba92e9f769c4
Binary files /dev/null and b/runs/fashion_trainer_20230920_101110/Training vs. Validation Loss_Training/events.out.tfevents.1695197473.msip-dell.ims.rwth-aachen.de.1222029.49 differ
diff --git a/runs/fashion_trainer_20230920_101110/Training vs. Validation Loss_Validation/events.out.tfevents.1695197473.msip-dell.ims.rwth-aachen.de.1222029.50 b/runs/fashion_trainer_20230920_101110/Training vs. Validation Loss_Validation/events.out.tfevents.1695197473.msip-dell.ims.rwth-aachen.de.1222029.50
new file mode 100644
index 0000000000000000000000000000000000000000..e9b09a4581dfd6bbea505b814aa93f982eca67c1
Binary files /dev/null and b/runs/fashion_trainer_20230920_101110/Training vs. Validation Loss_Validation/events.out.tfevents.1695197473.msip-dell.ims.rwth-aachen.de.1222029.50 differ
diff --git a/runs/fashion_trainer_20230920_101110/events.out.tfevents.1695197470.msip-dell.ims.rwth-aachen.de.1222029.48 b/runs/fashion_trainer_20230920_101110/events.out.tfevents.1695197470.msip-dell.ims.rwth-aachen.de.1222029.48
new file mode 100644
index 0000000000000000000000000000000000000000..ea2241918b441be3b46ac37ce68d7fda68d5b4f0
Binary files /dev/null and b/runs/fashion_trainer_20230920_101110/events.out.tfevents.1695197470.msip-dell.ims.rwth-aachen.de.1222029.48 differ
diff --git a/runs/fashion_trainer_20230920_101124/Training vs. Validation Loss_Training/events.out.tfevents.1695197486.msip-dell.ims.rwth-aachen.de.1222030.49 b/runs/fashion_trainer_20230920_101124/Training vs. Validation Loss_Training/events.out.tfevents.1695197486.msip-dell.ims.rwth-aachen.de.1222030.49
new file mode 100644
index 0000000000000000000000000000000000000000..05a897dea6979cf45a8bc22e1e65469091d6ac51
Binary files /dev/null and b/runs/fashion_trainer_20230920_101124/Training vs. Validation Loss_Training/events.out.tfevents.1695197486.msip-dell.ims.rwth-aachen.de.1222030.49 differ
diff --git a/runs/fashion_trainer_20230920_101124/Training vs. Validation Loss_Validation/events.out.tfevents.1695197486.msip-dell.ims.rwth-aachen.de.1222030.50 b/runs/fashion_trainer_20230920_101124/Training vs. Validation Loss_Validation/events.out.tfevents.1695197486.msip-dell.ims.rwth-aachen.de.1222030.50
new file mode 100644
index 0000000000000000000000000000000000000000..4f28c5e356310d3c30f1c6041d6724cb2c63e1c7
Binary files /dev/null and b/runs/fashion_trainer_20230920_101124/Training vs. Validation Loss_Validation/events.out.tfevents.1695197486.msip-dell.ims.rwth-aachen.de.1222030.50 differ
diff --git a/runs/fashion_trainer_20230920_101124/events.out.tfevents.1695197484.msip-dell.ims.rwth-aachen.de.1222030.48 b/runs/fashion_trainer_20230920_101124/events.out.tfevents.1695197484.msip-dell.ims.rwth-aachen.de.1222030.48
new file mode 100644
index 0000000000000000000000000000000000000000..b583527fe5c16f3c06e5043452f9cec28f31cb74
Binary files /dev/null and b/runs/fashion_trainer_20230920_101124/events.out.tfevents.1695197484.msip-dell.ims.rwth-aachen.de.1222030.48 differ
diff --git a/runs/fashion_trainer_20230920_101323/Training vs. Validation Loss_Training/events.out.tfevents.1695197606.msip-dell.ims.rwth-aachen.de.1222029.52 b/runs/fashion_trainer_20230920_101323/Training vs. Validation Loss_Training/events.out.tfevents.1695197606.msip-dell.ims.rwth-aachen.de.1222029.52
new file mode 100644
index 0000000000000000000000000000000000000000..97aa752010cd5ce65263a1dc21b17a0384a2ddba
Binary files /dev/null and b/runs/fashion_trainer_20230920_101323/Training vs. Validation Loss_Training/events.out.tfevents.1695197606.msip-dell.ims.rwth-aachen.de.1222029.52 differ
diff --git a/runs/fashion_trainer_20230920_101323/Training vs. Validation Loss_Validation/events.out.tfevents.1695197606.msip-dell.ims.rwth-aachen.de.1222029.53 b/runs/fashion_trainer_20230920_101323/Training vs. Validation Loss_Validation/events.out.tfevents.1695197606.msip-dell.ims.rwth-aachen.de.1222029.53
new file mode 100644
index 0000000000000000000000000000000000000000..4ee6ba5cf3316a1af3197a7826b1216371fc500a
Binary files /dev/null and b/runs/fashion_trainer_20230920_101323/Training vs. Validation Loss_Validation/events.out.tfevents.1695197606.msip-dell.ims.rwth-aachen.de.1222029.53 differ
diff --git a/runs/fashion_trainer_20230920_101323/events.out.tfevents.1695197603.msip-dell.ims.rwth-aachen.de.1222029.51 b/runs/fashion_trainer_20230920_101323/events.out.tfevents.1695197603.msip-dell.ims.rwth-aachen.de.1222029.51
new file mode 100644
index 0000000000000000000000000000000000000000..473a2831f5650f5ab18705c59904f26ce7bea650
Binary files /dev/null and b/runs/fashion_trainer_20230920_101323/events.out.tfevents.1695197603.msip-dell.ims.rwth-aachen.de.1222029.51 differ
diff --git a/runs/fashion_trainer_20230920_101337/Training vs. Validation Loss_Training/events.out.tfevents.1695197619.msip-dell.ims.rwth-aachen.de.1222030.52 b/runs/fashion_trainer_20230920_101337/Training vs. Validation Loss_Training/events.out.tfevents.1695197619.msip-dell.ims.rwth-aachen.de.1222030.52
new file mode 100644
index 0000000000000000000000000000000000000000..8ebf9ec1474acd6dbd3063dacd5dd8361f2c61c1
Binary files /dev/null and b/runs/fashion_trainer_20230920_101337/Training vs. Validation Loss_Training/events.out.tfevents.1695197619.msip-dell.ims.rwth-aachen.de.1222030.52 differ
diff --git a/runs/fashion_trainer_20230920_101337/Training vs. Validation Loss_Validation/events.out.tfevents.1695197619.msip-dell.ims.rwth-aachen.de.1222030.53 b/runs/fashion_trainer_20230920_101337/Training vs. Validation Loss_Validation/events.out.tfevents.1695197619.msip-dell.ims.rwth-aachen.de.1222030.53
new file mode 100644
index 0000000000000000000000000000000000000000..653ae6255aed63bd36379df821c7309f96bcd609
Binary files /dev/null and b/runs/fashion_trainer_20230920_101337/Training vs. Validation Loss_Validation/events.out.tfevents.1695197619.msip-dell.ims.rwth-aachen.de.1222030.53 differ
diff --git a/runs/fashion_trainer_20230920_101337/events.out.tfevents.1695197617.msip-dell.ims.rwth-aachen.de.1222030.51 b/runs/fashion_trainer_20230920_101337/events.out.tfevents.1695197617.msip-dell.ims.rwth-aachen.de.1222030.51
new file mode 100644
index 0000000000000000000000000000000000000000..fef66feb04f5bc2e33cfe36b5a11a2f62e39a9f7
Binary files /dev/null and b/runs/fashion_trainer_20230920_101337/events.out.tfevents.1695197617.msip-dell.ims.rwth-aachen.de.1222030.51 differ
diff --git a/runs/fashion_trainer_20230920_101537/Training vs. Validation Loss_Training/events.out.tfevents.1695197740.msip-dell.ims.rwth-aachen.de.1222029.55 b/runs/fashion_trainer_20230920_101537/Training vs. Validation Loss_Training/events.out.tfevents.1695197740.msip-dell.ims.rwth-aachen.de.1222029.55
new file mode 100644
index 0000000000000000000000000000000000000000..33429025170d0966608da40c9d2e78be1c5f04e4
Binary files /dev/null and b/runs/fashion_trainer_20230920_101537/Training vs. Validation Loss_Training/events.out.tfevents.1695197740.msip-dell.ims.rwth-aachen.de.1222029.55 differ
diff --git a/runs/fashion_trainer_20230920_101537/Training vs. Validation Loss_Validation/events.out.tfevents.1695197740.msip-dell.ims.rwth-aachen.de.1222029.56 b/runs/fashion_trainer_20230920_101537/Training vs. Validation Loss_Validation/events.out.tfevents.1695197740.msip-dell.ims.rwth-aachen.de.1222029.56
new file mode 100644
index 0000000000000000000000000000000000000000..9adf038da8e59cb7a5228f71acfa7d6078723f53
Binary files /dev/null and b/runs/fashion_trainer_20230920_101537/Training vs. Validation Loss_Validation/events.out.tfevents.1695197740.msip-dell.ims.rwth-aachen.de.1222029.56 differ
diff --git a/runs/fashion_trainer_20230920_101537/events.out.tfevents.1695197737.msip-dell.ims.rwth-aachen.de.1222029.54 b/runs/fashion_trainer_20230920_101537/events.out.tfevents.1695197737.msip-dell.ims.rwth-aachen.de.1222029.54
new file mode 100644
index 0000000000000000000000000000000000000000..30d662dde18ecaaa3a937bef856eb38a56dc9a46
Binary files /dev/null and b/runs/fashion_trainer_20230920_101537/events.out.tfevents.1695197737.msip-dell.ims.rwth-aachen.de.1222029.54 differ
diff --git a/runs/fashion_trainer_20230920_101550/Training vs. Validation Loss_Training/events.out.tfevents.1695197752.msip-dell.ims.rwth-aachen.de.1222030.55 b/runs/fashion_trainer_20230920_101550/Training vs. Validation Loss_Training/events.out.tfevents.1695197752.msip-dell.ims.rwth-aachen.de.1222030.55
new file mode 100644
index 0000000000000000000000000000000000000000..9f38e60bece1e1096eae387eacd411e2d666d756
Binary files /dev/null and b/runs/fashion_trainer_20230920_101550/Training vs. Validation Loss_Training/events.out.tfevents.1695197752.msip-dell.ims.rwth-aachen.de.1222030.55 differ
diff --git a/runs/fashion_trainer_20230920_101550/Training vs. Validation Loss_Validation/events.out.tfevents.1695197752.msip-dell.ims.rwth-aachen.de.1222030.56 b/runs/fashion_trainer_20230920_101550/Training vs. Validation Loss_Validation/events.out.tfevents.1695197752.msip-dell.ims.rwth-aachen.de.1222030.56
new file mode 100644
index 0000000000000000000000000000000000000000..792bf0bc5ba9eb496ea305cdbe137ea59aeb0373
Binary files /dev/null and b/runs/fashion_trainer_20230920_101550/Training vs. Validation Loss_Validation/events.out.tfevents.1695197752.msip-dell.ims.rwth-aachen.de.1222030.56 differ
diff --git a/runs/fashion_trainer_20230920_101550/events.out.tfevents.1695197750.msip-dell.ims.rwth-aachen.de.1222030.54 b/runs/fashion_trainer_20230920_101550/events.out.tfevents.1695197750.msip-dell.ims.rwth-aachen.de.1222030.54
new file mode 100644
index 0000000000000000000000000000000000000000..d84e11652ca294660d0b707465c14c1b09095c96
Binary files /dev/null and b/runs/fashion_trainer_20230920_101550/events.out.tfevents.1695197750.msip-dell.ims.rwth-aachen.de.1222030.54 differ
diff --git a/runs/fashion_trainer_20230920_101750/Training vs. Validation Loss_Training/events.out.tfevents.1695197872.msip-dell.ims.rwth-aachen.de.1222029.58 b/runs/fashion_trainer_20230920_101750/Training vs. Validation Loss_Training/events.out.tfevents.1695197872.msip-dell.ims.rwth-aachen.de.1222029.58
new file mode 100644
index 0000000000000000000000000000000000000000..411820f61bf6ce03dadce2f880e546121a594724
Binary files /dev/null and b/runs/fashion_trainer_20230920_101750/Training vs. Validation Loss_Training/events.out.tfevents.1695197872.msip-dell.ims.rwth-aachen.de.1222029.58 differ
diff --git a/runs/fashion_trainer_20230920_101750/Training vs. Validation Loss_Validation/events.out.tfevents.1695197872.msip-dell.ims.rwth-aachen.de.1222029.59 b/runs/fashion_trainer_20230920_101750/Training vs. Validation Loss_Validation/events.out.tfevents.1695197872.msip-dell.ims.rwth-aachen.de.1222029.59
new file mode 100644
index 0000000000000000000000000000000000000000..12d960dc4f847d121e4e7dfe6366370e807f8570
Binary files /dev/null and b/runs/fashion_trainer_20230920_101750/Training vs. Validation Loss_Validation/events.out.tfevents.1695197872.msip-dell.ims.rwth-aachen.de.1222029.59 differ
diff --git a/runs/fashion_trainer_20230920_101750/events.out.tfevents.1695197870.msip-dell.ims.rwth-aachen.de.1222029.57 b/runs/fashion_trainer_20230920_101750/events.out.tfevents.1695197870.msip-dell.ims.rwth-aachen.de.1222029.57
new file mode 100644
index 0000000000000000000000000000000000000000..80a11837dc1c60ce4e1a3c41efec98d3d43da127
Binary files /dev/null and b/runs/fashion_trainer_20230920_101750/events.out.tfevents.1695197870.msip-dell.ims.rwth-aachen.de.1222029.57 differ
diff --git a/runs/fashion_trainer_20230920_101803/Training vs. Validation Loss_Training/events.out.tfevents.1695197886.msip-dell.ims.rwth-aachen.de.1222030.58 b/runs/fashion_trainer_20230920_101803/Training vs. Validation Loss_Training/events.out.tfevents.1695197886.msip-dell.ims.rwth-aachen.de.1222030.58
new file mode 100644
index 0000000000000000000000000000000000000000..7bd832cdf5794cbd6e3185a4c10c6a0fc87407a5
Binary files /dev/null and b/runs/fashion_trainer_20230920_101803/Training vs. Validation Loss_Training/events.out.tfevents.1695197886.msip-dell.ims.rwth-aachen.de.1222030.58 differ
diff --git a/runs/fashion_trainer_20230920_101803/Training vs. Validation Loss_Validation/events.out.tfevents.1695197886.msip-dell.ims.rwth-aachen.de.1222030.59 b/runs/fashion_trainer_20230920_101803/Training vs. Validation Loss_Validation/events.out.tfevents.1695197886.msip-dell.ims.rwth-aachen.de.1222030.59
new file mode 100644
index 0000000000000000000000000000000000000000..152648a5b825156a54616ebc970a5c536f1f73ef
Binary files /dev/null and b/runs/fashion_trainer_20230920_101803/Training vs. Validation Loss_Validation/events.out.tfevents.1695197886.msip-dell.ims.rwth-aachen.de.1222030.59 differ
diff --git a/runs/fashion_trainer_20230920_101803/events.out.tfevents.1695197883.msip-dell.ims.rwth-aachen.de.1222030.57 b/runs/fashion_trainer_20230920_101803/events.out.tfevents.1695197883.msip-dell.ims.rwth-aachen.de.1222030.57
new file mode 100644
index 0000000000000000000000000000000000000000..baf74cc6ace15445fb8eb44677653a6eec067e52
Binary files /dev/null and b/runs/fashion_trainer_20230920_101803/events.out.tfevents.1695197883.msip-dell.ims.rwth-aachen.de.1222030.57 differ
diff --git a/runs/fashion_trainer_20230920_105428/Training vs. Validation Loss_Training/events.out.tfevents.1695200071.msip-dell.ims.rwth-aachen.de.1245930.1 b/runs/fashion_trainer_20230920_105428/Training vs. Validation Loss_Training/events.out.tfevents.1695200071.msip-dell.ims.rwth-aachen.de.1245930.1
new file mode 100644
index 0000000000000000000000000000000000000000..7b7559a644a31d551154b137182390cd4fe798b9
Binary files /dev/null and b/runs/fashion_trainer_20230920_105428/Training vs. Validation Loss_Training/events.out.tfevents.1695200071.msip-dell.ims.rwth-aachen.de.1245930.1 differ
diff --git a/runs/fashion_trainer_20230920_105428/Training vs. Validation Loss_Validation/events.out.tfevents.1695200071.msip-dell.ims.rwth-aachen.de.1245930.2 b/runs/fashion_trainer_20230920_105428/Training vs. Validation Loss_Validation/events.out.tfevents.1695200071.msip-dell.ims.rwth-aachen.de.1245930.2
new file mode 100644
index 0000000000000000000000000000000000000000..5a98fbfd7f0be460f09ff4fb23d3073231c1e4d1
Binary files /dev/null and b/runs/fashion_trainer_20230920_105428/Training vs. Validation Loss_Validation/events.out.tfevents.1695200071.msip-dell.ims.rwth-aachen.de.1245930.2 differ
diff --git a/runs/fashion_trainer_20230920_105428/events.out.tfevents.1695200068.msip-dell.ims.rwth-aachen.de.1245930.0 b/runs/fashion_trainer_20230920_105428/events.out.tfevents.1695200068.msip-dell.ims.rwth-aachen.de.1245930.0
new file mode 100644
index 0000000000000000000000000000000000000000..631dcc74624e81e0435a7064edd372cf2c6d82b5
Binary files /dev/null and b/runs/fashion_trainer_20230920_105428/events.out.tfevents.1695200068.msip-dell.ims.rwth-aachen.de.1245930.0 differ
diff --git a/runs/fashion_trainer_20230920_105431/Training vs. Validation Loss_Training/events.out.tfevents.1695200074.msip-dell.ims.rwth-aachen.de.1245930.4 b/runs/fashion_trainer_20230920_105431/Training vs. Validation Loss_Training/events.out.tfevents.1695200074.msip-dell.ims.rwth-aachen.de.1245930.4
new file mode 100644
index 0000000000000000000000000000000000000000..8473bf1de2657eb7468e0612b453db305c965a2d
Binary files /dev/null and b/runs/fashion_trainer_20230920_105431/Training vs. Validation Loss_Training/events.out.tfevents.1695200074.msip-dell.ims.rwth-aachen.de.1245930.4 differ
diff --git a/runs/fashion_trainer_20230920_105431/Training vs. Validation Loss_Validation/events.out.tfevents.1695200074.msip-dell.ims.rwth-aachen.de.1245930.5 b/runs/fashion_trainer_20230920_105431/Training vs. Validation Loss_Validation/events.out.tfevents.1695200074.msip-dell.ims.rwth-aachen.de.1245930.5
new file mode 100644
index 0000000000000000000000000000000000000000..73f808986b1535ae0e5d39e8cbdebcbea1adb8e0
Binary files /dev/null and b/runs/fashion_trainer_20230920_105431/Training vs. Validation Loss_Validation/events.out.tfevents.1695200074.msip-dell.ims.rwth-aachen.de.1245930.5 differ
diff --git a/runs/fashion_trainer_20230920_105431/events.out.tfevents.1695200071.msip-dell.ims.rwth-aachen.de.1245930.3 b/runs/fashion_trainer_20230920_105431/events.out.tfevents.1695200071.msip-dell.ims.rwth-aachen.de.1245930.3
new file mode 100644
index 0000000000000000000000000000000000000000..89e562249871a69a689d722c4c8e01a0297dee42
Binary files /dev/null and b/runs/fashion_trainer_20230920_105431/events.out.tfevents.1695200071.msip-dell.ims.rwth-aachen.de.1245930.3 differ
diff --git a/runs/fashion_trainer_20230920_105434/Training vs. Validation Loss_Training/events.out.tfevents.1695200077.msip-dell.ims.rwth-aachen.de.1245930.7 b/runs/fashion_trainer_20230920_105434/Training vs. Validation Loss_Training/events.out.tfevents.1695200077.msip-dell.ims.rwth-aachen.de.1245930.7
new file mode 100644
index 0000000000000000000000000000000000000000..d6eaa366ec283b90f9cf6c9c0ab90c964721277a
Binary files /dev/null and b/runs/fashion_trainer_20230920_105434/Training vs. Validation Loss_Training/events.out.tfevents.1695200077.msip-dell.ims.rwth-aachen.de.1245930.7 differ
diff --git a/runs/fashion_trainer_20230920_105434/Training vs. Validation Loss_Validation/events.out.tfevents.1695200077.msip-dell.ims.rwth-aachen.de.1245930.8 b/runs/fashion_trainer_20230920_105434/Training vs. Validation Loss_Validation/events.out.tfevents.1695200077.msip-dell.ims.rwth-aachen.de.1245930.8
new file mode 100644
index 0000000000000000000000000000000000000000..3c9d73cb08d30b16fb2cd5bd31445f31e48c5a7c
Binary files /dev/null and b/runs/fashion_trainer_20230920_105434/Training vs. Validation Loss_Validation/events.out.tfevents.1695200077.msip-dell.ims.rwth-aachen.de.1245930.8 differ
diff --git a/runs/fashion_trainer_20230920_105434/events.out.tfevents.1695200074.msip-dell.ims.rwth-aachen.de.1245930.6 b/runs/fashion_trainer_20230920_105434/events.out.tfevents.1695200074.msip-dell.ims.rwth-aachen.de.1245930.6
new file mode 100644
index 0000000000000000000000000000000000000000..9c86bf8514acfe2063886de7c08cd9657e7557f6
Binary files /dev/null and b/runs/fashion_trainer_20230920_105434/events.out.tfevents.1695200074.msip-dell.ims.rwth-aachen.de.1245930.6 differ
diff --git a/runs/fashion_trainer_20230920_105514/events.out.tfevents.1695200114.msip-dell.ims.rwth-aachen.de.1246130.0 b/runs/fashion_trainer_20230920_105514/events.out.tfevents.1695200114.msip-dell.ims.rwth-aachen.de.1246130.0
new file mode 100644
index 0000000000000000000000000000000000000000..45ded7c7ecaf7ae70b9994d3f5b17e84fd40c5e0
Binary files /dev/null and b/runs/fashion_trainer_20230920_105514/events.out.tfevents.1695200114.msip-dell.ims.rwth-aachen.de.1246130.0 differ
diff --git a/runs/fashion_trainer_20230920_105523/Training vs. Validation Loss_Training/events.out.tfevents.1695200132.msip-dell.ims.rwth-aachen.de.1246239.1 b/runs/fashion_trainer_20230920_105523/Training vs. Validation Loss_Training/events.out.tfevents.1695200132.msip-dell.ims.rwth-aachen.de.1246239.1
new file mode 100644
index 0000000000000000000000000000000000000000..6155c4fd6a90e79a906893858fe80879d5807c84
Binary files /dev/null and b/runs/fashion_trainer_20230920_105523/Training vs. Validation Loss_Training/events.out.tfevents.1695200132.msip-dell.ims.rwth-aachen.de.1246239.1 differ
diff --git a/runs/fashion_trainer_20230920_105523/Training vs. Validation Loss_Validation/events.out.tfevents.1695200132.msip-dell.ims.rwth-aachen.de.1246239.2 b/runs/fashion_trainer_20230920_105523/Training vs. Validation Loss_Validation/events.out.tfevents.1695200132.msip-dell.ims.rwth-aachen.de.1246239.2
new file mode 100644
index 0000000000000000000000000000000000000000..498223b849b1370d80e197b0981bf0c090393758
Binary files /dev/null and b/runs/fashion_trainer_20230920_105523/Training vs. Validation Loss_Validation/events.out.tfevents.1695200132.msip-dell.ims.rwth-aachen.de.1246239.2 differ
diff --git a/runs/fashion_trainer_20230920_105523/events.out.tfevents.1695200123.msip-dell.ims.rwth-aachen.de.1246239.0 b/runs/fashion_trainer_20230920_105523/events.out.tfevents.1695200123.msip-dell.ims.rwth-aachen.de.1246239.0
new file mode 100644
index 0000000000000000000000000000000000000000..c5bbd2c9500007d9daf6fae6ccbbacbf45718d3b
Binary files /dev/null and b/runs/fashion_trainer_20230920_105523/events.out.tfevents.1695200123.msip-dell.ims.rwth-aachen.de.1246239.0 differ
diff --git a/runs/fashion_trainer_20230920_105542/Training vs. Validation Loss_Training/events.out.tfevents.1695200152.msip-dell.ims.rwth-aachen.de.1246239.4 b/runs/fashion_trainer_20230920_105542/Training vs. Validation Loss_Training/events.out.tfevents.1695200152.msip-dell.ims.rwth-aachen.de.1246239.4
new file mode 100644
index 0000000000000000000000000000000000000000..7bbb2a79eb17b99e6124e212b86b02418bcd6d56
Binary files /dev/null and b/runs/fashion_trainer_20230920_105542/Training vs. Validation Loss_Training/events.out.tfevents.1695200152.msip-dell.ims.rwth-aachen.de.1246239.4 differ
diff --git a/runs/fashion_trainer_20230920_105542/Training vs. Validation Loss_Validation/events.out.tfevents.1695200152.msip-dell.ims.rwth-aachen.de.1246239.5 b/runs/fashion_trainer_20230920_105542/Training vs. Validation Loss_Validation/events.out.tfevents.1695200152.msip-dell.ims.rwth-aachen.de.1246239.5
new file mode 100644
index 0000000000000000000000000000000000000000..26dae649059b8a0dfcbc4d714801d1c57e131657
Binary files /dev/null and b/runs/fashion_trainer_20230920_105542/Training vs. Validation Loss_Validation/events.out.tfevents.1695200152.msip-dell.ims.rwth-aachen.de.1246239.5 differ
diff --git a/runs/fashion_trainer_20230920_105542/events.out.tfevents.1695200142.msip-dell.ims.rwth-aachen.de.1246239.3 b/runs/fashion_trainer_20230920_105542/events.out.tfevents.1695200142.msip-dell.ims.rwth-aachen.de.1246239.3
new file mode 100644
index 0000000000000000000000000000000000000000..ba613dfc2b84d062ace34415fec4a3949dbcf8f9
Binary files /dev/null and b/runs/fashion_trainer_20230920_105542/events.out.tfevents.1695200142.msip-dell.ims.rwth-aachen.de.1246239.3 differ
diff --git a/runs/fashion_trainer_20230920_105603/Training vs. Validation Loss_Training/events.out.tfevents.1695200173.msip-dell.ims.rwth-aachen.de.1246239.7 b/runs/fashion_trainer_20230920_105603/Training vs. Validation Loss_Training/events.out.tfevents.1695200173.msip-dell.ims.rwth-aachen.de.1246239.7
new file mode 100644
index 0000000000000000000000000000000000000000..a98637f1568a863d4c6fc16bb27ec6120e52eeef
Binary files /dev/null and b/runs/fashion_trainer_20230920_105603/Training vs. Validation Loss_Training/events.out.tfevents.1695200173.msip-dell.ims.rwth-aachen.de.1246239.7 differ
diff --git a/runs/fashion_trainer_20230920_105603/Training vs. Validation Loss_Validation/events.out.tfevents.1695200173.msip-dell.ims.rwth-aachen.de.1246239.8 b/runs/fashion_trainer_20230920_105603/Training vs. Validation Loss_Validation/events.out.tfevents.1695200173.msip-dell.ims.rwth-aachen.de.1246239.8
new file mode 100644
index 0000000000000000000000000000000000000000..3f9088fefa184cb92fa5eed26e72dca70803a590
Binary files /dev/null and b/runs/fashion_trainer_20230920_105603/Training vs. Validation Loss_Validation/events.out.tfevents.1695200173.msip-dell.ims.rwth-aachen.de.1246239.8 differ
diff --git a/runs/fashion_trainer_20230920_105603/events.out.tfevents.1695200163.msip-dell.ims.rwth-aachen.de.1246239.6 b/runs/fashion_trainer_20230920_105603/events.out.tfevents.1695200163.msip-dell.ims.rwth-aachen.de.1246239.6
new file mode 100644
index 0000000000000000000000000000000000000000..868314c8e24feffd7c20b4de9a2b552def9f79d4
Binary files /dev/null and b/runs/fashion_trainer_20230920_105603/events.out.tfevents.1695200163.msip-dell.ims.rwth-aachen.de.1246239.6 differ
diff --git a/runs/fashion_trainer_20230920_105838/Training vs. Validation Loss_Training/events.out.tfevents.1695200324.msip-dell.ims.rwth-aachen.de.1247275.1 b/runs/fashion_trainer_20230920_105838/Training vs. Validation Loss_Training/events.out.tfevents.1695200324.msip-dell.ims.rwth-aachen.de.1247275.1
new file mode 100644
index 0000000000000000000000000000000000000000..b6a4cf3a567f2815f320682526946c0ee0a0cc9c
Binary files /dev/null and b/runs/fashion_trainer_20230920_105838/Training vs. Validation Loss_Training/events.out.tfevents.1695200324.msip-dell.ims.rwth-aachen.de.1247275.1 differ
diff --git a/runs/fashion_trainer_20230920_105838/Training vs. Validation Loss_Validation/events.out.tfevents.1695200324.msip-dell.ims.rwth-aachen.de.1247275.2 b/runs/fashion_trainer_20230920_105838/Training vs. Validation Loss_Validation/events.out.tfevents.1695200324.msip-dell.ims.rwth-aachen.de.1247275.2
new file mode 100644
index 0000000000000000000000000000000000000000..b54b02d71fec5ba96ebab640c2d42ea873622556
Binary files /dev/null and b/runs/fashion_trainer_20230920_105838/Training vs. Validation Loss_Validation/events.out.tfevents.1695200324.msip-dell.ims.rwth-aachen.de.1247275.2 differ
diff --git a/runs/fashion_trainer_20230920_105838/events.out.tfevents.1695200318.msip-dell.ims.rwth-aachen.de.1247275.0 b/runs/fashion_trainer_20230920_105838/events.out.tfevents.1695200318.msip-dell.ims.rwth-aachen.de.1247275.0
new file mode 100644
index 0000000000000000000000000000000000000000..efaaa26eaaf84bee5c55de0bccb89880baa11d36
Binary files /dev/null and b/runs/fashion_trainer_20230920_105838/events.out.tfevents.1695200318.msip-dell.ims.rwth-aachen.de.1247275.0 differ
diff --git a/runs/fashion_trainer_20230920_105851/Training vs. Validation Loss_Training/events.out.tfevents.1695200337.msip-dell.ims.rwth-aachen.de.1247275.4 b/runs/fashion_trainer_20230920_105851/Training vs. Validation Loss_Training/events.out.tfevents.1695200337.msip-dell.ims.rwth-aachen.de.1247275.4
new file mode 100644
index 0000000000000000000000000000000000000000..63346c18405b999aba5d435526018bece37153e7
Binary files /dev/null and b/runs/fashion_trainer_20230920_105851/Training vs. Validation Loss_Training/events.out.tfevents.1695200337.msip-dell.ims.rwth-aachen.de.1247275.4 differ
diff --git a/runs/fashion_trainer_20230920_105851/Training vs. Validation Loss_Validation/events.out.tfevents.1695200337.msip-dell.ims.rwth-aachen.de.1247275.5 b/runs/fashion_trainer_20230920_105851/Training vs. Validation Loss_Validation/events.out.tfevents.1695200337.msip-dell.ims.rwth-aachen.de.1247275.5
new file mode 100644
index 0000000000000000000000000000000000000000..9aede425d2a459a94ed9a8d76eb8aefef3dd2bee
Binary files /dev/null and b/runs/fashion_trainer_20230920_105851/Training vs. Validation Loss_Validation/events.out.tfevents.1695200337.msip-dell.ims.rwth-aachen.de.1247275.5 differ
diff --git a/runs/fashion_trainer_20230920_105851/events.out.tfevents.1695200331.msip-dell.ims.rwth-aachen.de.1247275.3 b/runs/fashion_trainer_20230920_105851/events.out.tfevents.1695200331.msip-dell.ims.rwth-aachen.de.1247275.3
new file mode 100644
index 0000000000000000000000000000000000000000..2b08f6de3911f1161f0808f4734c1dad3e6980e7
Binary files /dev/null and b/runs/fashion_trainer_20230920_105851/events.out.tfevents.1695200331.msip-dell.ims.rwth-aachen.de.1247275.3 differ
diff --git a/runs/fashion_trainer_20230920_105904/Training vs. Validation Loss_Training/events.out.tfevents.1695200350.msip-dell.ims.rwth-aachen.de.1247275.7 b/runs/fashion_trainer_20230920_105904/Training vs. Validation Loss_Training/events.out.tfevents.1695200350.msip-dell.ims.rwth-aachen.de.1247275.7
new file mode 100644
index 0000000000000000000000000000000000000000..b81da7644a26436cd3a1a02bd9422b126a0e2acc
Binary files /dev/null and b/runs/fashion_trainer_20230920_105904/Training vs. Validation Loss_Training/events.out.tfevents.1695200350.msip-dell.ims.rwth-aachen.de.1247275.7 differ
diff --git a/runs/fashion_trainer_20230920_105904/Training vs. Validation Loss_Validation/events.out.tfevents.1695200350.msip-dell.ims.rwth-aachen.de.1247275.8 b/runs/fashion_trainer_20230920_105904/Training vs. Validation Loss_Validation/events.out.tfevents.1695200350.msip-dell.ims.rwth-aachen.de.1247275.8
new file mode 100644
index 0000000000000000000000000000000000000000..299d04c033ddec7dc8d37c0418261d5d9fa944ae
Binary files /dev/null and b/runs/fashion_trainer_20230920_105904/Training vs. Validation Loss_Validation/events.out.tfevents.1695200350.msip-dell.ims.rwth-aachen.de.1247275.8 differ
diff --git a/runs/fashion_trainer_20230920_105904/events.out.tfevents.1695200344.msip-dell.ims.rwth-aachen.de.1247275.6 b/runs/fashion_trainer_20230920_105904/events.out.tfevents.1695200344.msip-dell.ims.rwth-aachen.de.1247275.6
new file mode 100644
index 0000000000000000000000000000000000000000..5042d91c9a6b2a4039cbc10d989c8b3923cf2c25
Binary files /dev/null and b/runs/fashion_trainer_20230920_105904/events.out.tfevents.1695200344.msip-dell.ims.rwth-aachen.de.1247275.6 differ
diff --git a/runs/fashion_trainer_20230920_110154/Training vs. Validation Loss_Training/events.out.tfevents.1695200520.msip-dell.ims.rwth-aachen.de.1248870.1 b/runs/fashion_trainer_20230920_110154/Training vs. Validation Loss_Training/events.out.tfevents.1695200520.msip-dell.ims.rwth-aachen.de.1248870.1
new file mode 100644
index 0000000000000000000000000000000000000000..ea5052ab18db9ef5f1c6ce5830bcbf36b05f87c2
Binary files /dev/null and b/runs/fashion_trainer_20230920_110154/Training vs. Validation Loss_Training/events.out.tfevents.1695200520.msip-dell.ims.rwth-aachen.de.1248870.1 differ
diff --git a/runs/fashion_trainer_20230920_110154/Training vs. Validation Loss_Validation/events.out.tfevents.1695200520.msip-dell.ims.rwth-aachen.de.1248870.2 b/runs/fashion_trainer_20230920_110154/Training vs. Validation Loss_Validation/events.out.tfevents.1695200520.msip-dell.ims.rwth-aachen.de.1248870.2
new file mode 100644
index 0000000000000000000000000000000000000000..1b89dfe97d7bb1990fb69755b316b973d8d39980
Binary files /dev/null and b/runs/fashion_trainer_20230920_110154/Training vs. Validation Loss_Validation/events.out.tfevents.1695200520.msip-dell.ims.rwth-aachen.de.1248870.2 differ
diff --git a/runs/fashion_trainer_20230920_110154/events.out.tfevents.1695200514.msip-dell.ims.rwth-aachen.de.1248870.0 b/runs/fashion_trainer_20230920_110154/events.out.tfevents.1695200514.msip-dell.ims.rwth-aachen.de.1248870.0
new file mode 100644
index 0000000000000000000000000000000000000000..f210c423f788d331cc36f4a8ca9c61e10b185ce0
Binary files /dev/null and b/runs/fashion_trainer_20230920_110154/events.out.tfevents.1695200514.msip-dell.ims.rwth-aachen.de.1248870.0 differ
diff --git a/runs/fashion_trainer_20230920_110207/Training vs. Validation Loss_Training/events.out.tfevents.1695200533.msip-dell.ims.rwth-aachen.de.1248870.4 b/runs/fashion_trainer_20230920_110207/Training vs. Validation Loss_Training/events.out.tfevents.1695200533.msip-dell.ims.rwth-aachen.de.1248870.4
new file mode 100644
index 0000000000000000000000000000000000000000..2f4a3ccff81d01f49b902d6a615e8b5833b06237
Binary files /dev/null and b/runs/fashion_trainer_20230920_110207/Training vs. Validation Loss_Training/events.out.tfevents.1695200533.msip-dell.ims.rwth-aachen.de.1248870.4 differ
diff --git a/runs/fashion_trainer_20230920_110207/Training vs. Validation Loss_Validation/events.out.tfevents.1695200533.msip-dell.ims.rwth-aachen.de.1248870.5 b/runs/fashion_trainer_20230920_110207/Training vs. Validation Loss_Validation/events.out.tfevents.1695200533.msip-dell.ims.rwth-aachen.de.1248870.5
new file mode 100644
index 0000000000000000000000000000000000000000..ae09c6d4b75dc1b3580a5c9327a9e299d9e5edc4
Binary files /dev/null and b/runs/fashion_trainer_20230920_110207/Training vs. Validation Loss_Validation/events.out.tfevents.1695200533.msip-dell.ims.rwth-aachen.de.1248870.5 differ
diff --git a/runs/fashion_trainer_20230920_110207/events.out.tfevents.1695200527.msip-dell.ims.rwth-aachen.de.1248870.3 b/runs/fashion_trainer_20230920_110207/events.out.tfevents.1695200527.msip-dell.ims.rwth-aachen.de.1248870.3
new file mode 100644
index 0000000000000000000000000000000000000000..0c0bb953cb38e461e9575c60032683e437824474
Binary files /dev/null and b/runs/fashion_trainer_20230920_110207/events.out.tfevents.1695200527.msip-dell.ims.rwth-aachen.de.1248870.3 differ
diff --git a/runs/fashion_trainer_20230920_110220/Training vs. Validation Loss_Training/events.out.tfevents.1695200546.msip-dell.ims.rwth-aachen.de.1248870.7 b/runs/fashion_trainer_20230920_110220/Training vs. Validation Loss_Training/events.out.tfevents.1695200546.msip-dell.ims.rwth-aachen.de.1248870.7
new file mode 100644
index 0000000000000000000000000000000000000000..5fadc62bd0e21583dc1760ea4cf6e88748d418fa
Binary files /dev/null and b/runs/fashion_trainer_20230920_110220/Training vs. Validation Loss_Training/events.out.tfevents.1695200546.msip-dell.ims.rwth-aachen.de.1248870.7 differ
diff --git a/runs/fashion_trainer_20230920_110220/Training vs. Validation Loss_Validation/events.out.tfevents.1695200546.msip-dell.ims.rwth-aachen.de.1248870.8 b/runs/fashion_trainer_20230920_110220/Training vs. Validation Loss_Validation/events.out.tfevents.1695200546.msip-dell.ims.rwth-aachen.de.1248870.8
new file mode 100644
index 0000000000000000000000000000000000000000..44159b38282030446e6c4a64e209f543f07d17bd
Binary files /dev/null and b/runs/fashion_trainer_20230920_110220/Training vs. Validation Loss_Validation/events.out.tfevents.1695200546.msip-dell.ims.rwth-aachen.de.1248870.8 differ
diff --git a/runs/fashion_trainer_20230920_110220/events.out.tfevents.1695200540.msip-dell.ims.rwth-aachen.de.1248870.6 b/runs/fashion_trainer_20230920_110220/events.out.tfevents.1695200540.msip-dell.ims.rwth-aachen.de.1248870.6
new file mode 100644
index 0000000000000000000000000000000000000000..975892dac29e28d78a1229aeb8c7f069a2d4de1e
Binary files /dev/null and b/runs/fashion_trainer_20230920_110220/events.out.tfevents.1695200540.msip-dell.ims.rwth-aachen.de.1248870.6 differ
diff --git a/runs/fashion_trainer_20230920_110258/Training vs. Validation Loss_Training/events.out.tfevents.1695200584.msip-dell.ims.rwth-aachen.de.1249124.1 b/runs/fashion_trainer_20230920_110258/Training vs. Validation Loss_Training/events.out.tfevents.1695200584.msip-dell.ims.rwth-aachen.de.1249124.1
new file mode 100644
index 0000000000000000000000000000000000000000..43075962298057b4856c3b7d5ebbd920ccded848
Binary files /dev/null and b/runs/fashion_trainer_20230920_110258/Training vs. Validation Loss_Training/events.out.tfevents.1695200584.msip-dell.ims.rwth-aachen.de.1249124.1 differ
diff --git a/runs/fashion_trainer_20230920_110258/Training vs. Validation Loss_Validation/events.out.tfevents.1695200584.msip-dell.ims.rwth-aachen.de.1249124.2 b/runs/fashion_trainer_20230920_110258/Training vs. Validation Loss_Validation/events.out.tfevents.1695200584.msip-dell.ims.rwth-aachen.de.1249124.2
new file mode 100644
index 0000000000000000000000000000000000000000..9810a9bc5e95f416f3cf5406a445d88b48dc2733
Binary files /dev/null and b/runs/fashion_trainer_20230920_110258/Training vs. Validation Loss_Validation/events.out.tfevents.1695200584.msip-dell.ims.rwth-aachen.de.1249124.2 differ
diff --git a/runs/fashion_trainer_20230920_110258/events.out.tfevents.1695200578.msip-dell.ims.rwth-aachen.de.1249124.0 b/runs/fashion_trainer_20230920_110258/events.out.tfevents.1695200578.msip-dell.ims.rwth-aachen.de.1249124.0
new file mode 100644
index 0000000000000000000000000000000000000000..b42512f17ab226a173fafb2211243fb00ddc8073
Binary files /dev/null and b/runs/fashion_trainer_20230920_110258/events.out.tfevents.1695200578.msip-dell.ims.rwth-aachen.de.1249124.0 differ
diff --git a/runs/fashion_trainer_20230920_110311/Training vs. Validation Loss_Training/events.out.tfevents.1695200597.msip-dell.ims.rwth-aachen.de.1249124.4 b/runs/fashion_trainer_20230920_110311/Training vs. Validation Loss_Training/events.out.tfevents.1695200597.msip-dell.ims.rwth-aachen.de.1249124.4
new file mode 100644
index 0000000000000000000000000000000000000000..54cd51afc722836633c86ff2760664002a764f5d
Binary files /dev/null and b/runs/fashion_trainer_20230920_110311/Training vs. Validation Loss_Training/events.out.tfevents.1695200597.msip-dell.ims.rwth-aachen.de.1249124.4 differ
diff --git a/runs/fashion_trainer_20230920_110311/Training vs. Validation Loss_Validation/events.out.tfevents.1695200597.msip-dell.ims.rwth-aachen.de.1249124.5 b/runs/fashion_trainer_20230920_110311/Training vs. Validation Loss_Validation/events.out.tfevents.1695200597.msip-dell.ims.rwth-aachen.de.1249124.5
new file mode 100644
index 0000000000000000000000000000000000000000..327aab57909d27019efdf821936263adc7b5d8d1
Binary files /dev/null and b/runs/fashion_trainer_20230920_110311/Training vs. Validation Loss_Validation/events.out.tfevents.1695200597.msip-dell.ims.rwth-aachen.de.1249124.5 differ
diff --git a/runs/fashion_trainer_20230920_110311/events.out.tfevents.1695200591.msip-dell.ims.rwth-aachen.de.1249124.3 b/runs/fashion_trainer_20230920_110311/events.out.tfevents.1695200591.msip-dell.ims.rwth-aachen.de.1249124.3
new file mode 100644
index 0000000000000000000000000000000000000000..2a690c43fde2fb2f96e807f89589ffbf3e7bf367
Binary files /dev/null and b/runs/fashion_trainer_20230920_110311/events.out.tfevents.1695200591.msip-dell.ims.rwth-aachen.de.1249124.3 differ
diff --git a/runs/fashion_trainer_20230920_110324/Training vs. Validation Loss_Training/events.out.tfevents.1695200610.msip-dell.ims.rwth-aachen.de.1249124.7 b/runs/fashion_trainer_20230920_110324/Training vs. Validation Loss_Training/events.out.tfevents.1695200610.msip-dell.ims.rwth-aachen.de.1249124.7
new file mode 100644
index 0000000000000000000000000000000000000000..094385c50ef2ad3af87e3138df015687a520d113
Binary files /dev/null and b/runs/fashion_trainer_20230920_110324/Training vs. Validation Loss_Training/events.out.tfevents.1695200610.msip-dell.ims.rwth-aachen.de.1249124.7 differ
diff --git a/runs/fashion_trainer_20230920_110324/Training vs. Validation Loss_Validation/events.out.tfevents.1695200610.msip-dell.ims.rwth-aachen.de.1249124.8 b/runs/fashion_trainer_20230920_110324/Training vs. Validation Loss_Validation/events.out.tfevents.1695200610.msip-dell.ims.rwth-aachen.de.1249124.8
new file mode 100644
index 0000000000000000000000000000000000000000..57c13ce8cf1743342b072ee5b3cf68e81733c1c7
Binary files /dev/null and b/runs/fashion_trainer_20230920_110324/Training vs. Validation Loss_Validation/events.out.tfevents.1695200610.msip-dell.ims.rwth-aachen.de.1249124.8 differ
diff --git a/runs/fashion_trainer_20230920_110324/events.out.tfevents.1695200604.msip-dell.ims.rwth-aachen.de.1249124.6 b/runs/fashion_trainer_20230920_110324/events.out.tfevents.1695200604.msip-dell.ims.rwth-aachen.de.1249124.6
new file mode 100644
index 0000000000000000000000000000000000000000..3505c748ecaf5fed2c7c133b3653e67fa661c8f6
Binary files /dev/null and b/runs/fashion_trainer_20230920_110324/events.out.tfevents.1695200604.msip-dell.ims.rwth-aachen.de.1249124.6 differ
diff --git a/runs/fashion_trainer_20230920_110421/Training vs. Validation Loss_Training/events.out.tfevents.1695200667.msip-dell.ims.rwth-aachen.de.1249478.1 b/runs/fashion_trainer_20230920_110421/Training vs. Validation Loss_Training/events.out.tfevents.1695200667.msip-dell.ims.rwth-aachen.de.1249478.1
new file mode 100644
index 0000000000000000000000000000000000000000..5c055a12b85e58163bced65d76adecd5c9e07170
Binary files /dev/null and b/runs/fashion_trainer_20230920_110421/Training vs. Validation Loss_Training/events.out.tfevents.1695200667.msip-dell.ims.rwth-aachen.de.1249478.1 differ
diff --git a/runs/fashion_trainer_20230920_110421/Training vs. Validation Loss_Validation/events.out.tfevents.1695200667.msip-dell.ims.rwth-aachen.de.1249478.2 b/runs/fashion_trainer_20230920_110421/Training vs. Validation Loss_Validation/events.out.tfevents.1695200667.msip-dell.ims.rwth-aachen.de.1249478.2
new file mode 100644
index 0000000000000000000000000000000000000000..656077aced2264e511aab4669e6fcd9755f993de
Binary files /dev/null and b/runs/fashion_trainer_20230920_110421/Training vs. Validation Loss_Validation/events.out.tfevents.1695200667.msip-dell.ims.rwth-aachen.de.1249478.2 differ
diff --git a/runs/fashion_trainer_20230920_110421/events.out.tfevents.1695200661.msip-dell.ims.rwth-aachen.de.1249478.0 b/runs/fashion_trainer_20230920_110421/events.out.tfevents.1695200661.msip-dell.ims.rwth-aachen.de.1249478.0
new file mode 100644
index 0000000000000000000000000000000000000000..97e5eeb48f56dfb10d62429b397c2ef4dd1bec2e
Binary files /dev/null and b/runs/fashion_trainer_20230920_110421/events.out.tfevents.1695200661.msip-dell.ims.rwth-aachen.de.1249478.0 differ
diff --git a/runs/fashion_trainer_20230920_110523/Training vs. Validation Loss_Training/events.out.tfevents.1695200729.msip-dell.ims.rwth-aachen.de.1249983.1 b/runs/fashion_trainer_20230920_110523/Training vs. Validation Loss_Training/events.out.tfevents.1695200729.msip-dell.ims.rwth-aachen.de.1249983.1
new file mode 100644
index 0000000000000000000000000000000000000000..1ab47ad3fbac721907bdb4cbd085850a903704b3
Binary files /dev/null and b/runs/fashion_trainer_20230920_110523/Training vs. Validation Loss_Training/events.out.tfevents.1695200729.msip-dell.ims.rwth-aachen.de.1249983.1 differ
diff --git a/runs/fashion_trainer_20230920_110523/Training vs. Validation Loss_Validation/events.out.tfevents.1695200729.msip-dell.ims.rwth-aachen.de.1249983.2 b/runs/fashion_trainer_20230920_110523/Training vs. Validation Loss_Validation/events.out.tfevents.1695200729.msip-dell.ims.rwth-aachen.de.1249983.2
new file mode 100644
index 0000000000000000000000000000000000000000..181812bb8a6805ce854d82d6dc6fd098a1c5874d
Binary files /dev/null and b/runs/fashion_trainer_20230920_110523/Training vs. Validation Loss_Validation/events.out.tfevents.1695200729.msip-dell.ims.rwth-aachen.de.1249983.2 differ
diff --git a/runs/fashion_trainer_20230920_110523/events.out.tfevents.1695200723.msip-dell.ims.rwth-aachen.de.1249983.0 b/runs/fashion_trainer_20230920_110523/events.out.tfevents.1695200723.msip-dell.ims.rwth-aachen.de.1249983.0
new file mode 100644
index 0000000000000000000000000000000000000000..bafa30bec8d8007f2c2efeeba6a89a66413c5bde
Binary files /dev/null and b/runs/fashion_trainer_20230920_110523/events.out.tfevents.1695200723.msip-dell.ims.rwth-aachen.de.1249983.0 differ
diff --git a/runs/fashion_trainer_20230920_110607/Training vs. Validation Loss_Training/events.out.tfevents.1695200774.msip-dell.ims.rwth-aachen.de.1250258.1 b/runs/fashion_trainer_20230920_110607/Training vs. Validation Loss_Training/events.out.tfevents.1695200774.msip-dell.ims.rwth-aachen.de.1250258.1
new file mode 100644
index 0000000000000000000000000000000000000000..3c3a316feb3a0c782486129a052b792104126ee3
Binary files /dev/null and b/runs/fashion_trainer_20230920_110607/Training vs. Validation Loss_Training/events.out.tfevents.1695200774.msip-dell.ims.rwth-aachen.de.1250258.1 differ
diff --git a/runs/fashion_trainer_20230920_110607/Training vs. Validation Loss_Validation/events.out.tfevents.1695200774.msip-dell.ims.rwth-aachen.de.1250258.2 b/runs/fashion_trainer_20230920_110607/Training vs. Validation Loss_Validation/events.out.tfevents.1695200774.msip-dell.ims.rwth-aachen.de.1250258.2
new file mode 100644
index 0000000000000000000000000000000000000000..b6787a019aa477f6af41bde3c440664261df2d0f
Binary files /dev/null and b/runs/fashion_trainer_20230920_110607/Training vs. Validation Loss_Validation/events.out.tfevents.1695200774.msip-dell.ims.rwth-aachen.de.1250258.2 differ
diff --git a/runs/fashion_trainer_20230920_110607/events.out.tfevents.1695200767.msip-dell.ims.rwth-aachen.de.1250258.0 b/runs/fashion_trainer_20230920_110607/events.out.tfevents.1695200767.msip-dell.ims.rwth-aachen.de.1250258.0
new file mode 100644
index 0000000000000000000000000000000000000000..41f78c81599536688edec268d07f9034ebcb7a9c
Binary files /dev/null and b/runs/fashion_trainer_20230920_110607/events.out.tfevents.1695200767.msip-dell.ims.rwth-aachen.de.1250258.0 differ
diff --git a/runs/fashion_trainer_20230920_110705/Training vs. Validation Loss_Training/events.out.tfevents.1695200832.msip-dell.ims.rwth-aachen.de.1250617.1 b/runs/fashion_trainer_20230920_110705/Training vs. Validation Loss_Training/events.out.tfevents.1695200832.msip-dell.ims.rwth-aachen.de.1250617.1
new file mode 100644
index 0000000000000000000000000000000000000000..cb9a05ae00209cc784c8ea6b9fa1c4d1aff3346c
Binary files /dev/null and b/runs/fashion_trainer_20230920_110705/Training vs. Validation Loss_Training/events.out.tfevents.1695200832.msip-dell.ims.rwth-aachen.de.1250617.1 differ
diff --git a/runs/fashion_trainer_20230920_110705/Training vs. Validation Loss_Validation/events.out.tfevents.1695200832.msip-dell.ims.rwth-aachen.de.1250617.2 b/runs/fashion_trainer_20230920_110705/Training vs. Validation Loss_Validation/events.out.tfevents.1695200832.msip-dell.ims.rwth-aachen.de.1250617.2
new file mode 100644
index 0000000000000000000000000000000000000000..fffe1cdf02a8f481100409956fa430b8fb997142
Binary files /dev/null and b/runs/fashion_trainer_20230920_110705/Training vs. Validation Loss_Validation/events.out.tfevents.1695200832.msip-dell.ims.rwth-aachen.de.1250617.2 differ
diff --git a/runs/fashion_trainer_20230920_110705/events.out.tfevents.1695200825.msip-dell.ims.rwth-aachen.de.1250617.0 b/runs/fashion_trainer_20230920_110705/events.out.tfevents.1695200825.msip-dell.ims.rwth-aachen.de.1250617.0
new file mode 100644
index 0000000000000000000000000000000000000000..851c9b8498acbb0ce8767e31717ac3bf25bc03b1
Binary files /dev/null and b/runs/fashion_trainer_20230920_110705/events.out.tfevents.1695200825.msip-dell.ims.rwth-aachen.de.1250617.0 differ
diff --git a/runs/fashion_trainer_20230920_110754/Training vs. Validation Loss_Training/events.out.tfevents.1695200881.msip-dell.ims.rwth-aachen.de.1250813.1 b/runs/fashion_trainer_20230920_110754/Training vs. Validation Loss_Training/events.out.tfevents.1695200881.msip-dell.ims.rwth-aachen.de.1250813.1
new file mode 100644
index 0000000000000000000000000000000000000000..7ce3f124a815f03c57baafe115ce8d451d4bc067
Binary files /dev/null and b/runs/fashion_trainer_20230920_110754/Training vs. Validation Loss_Training/events.out.tfevents.1695200881.msip-dell.ims.rwth-aachen.de.1250813.1 differ
diff --git a/runs/fashion_trainer_20230920_110754/Training vs. Validation Loss_Validation/events.out.tfevents.1695200881.msip-dell.ims.rwth-aachen.de.1250813.2 b/runs/fashion_trainer_20230920_110754/Training vs. Validation Loss_Validation/events.out.tfevents.1695200881.msip-dell.ims.rwth-aachen.de.1250813.2
new file mode 100644
index 0000000000000000000000000000000000000000..87cd5e48d9bbaa8a6d938e34234e9966c9798846
Binary files /dev/null and b/runs/fashion_trainer_20230920_110754/Training vs. Validation Loss_Validation/events.out.tfevents.1695200881.msip-dell.ims.rwth-aachen.de.1250813.2 differ
diff --git a/runs/fashion_trainer_20230920_110754/events.out.tfevents.1695200874.msip-dell.ims.rwth-aachen.de.1250813.0 b/runs/fashion_trainer_20230920_110754/events.out.tfevents.1695200874.msip-dell.ims.rwth-aachen.de.1250813.0
new file mode 100644
index 0000000000000000000000000000000000000000..ae723603f8658c23f549052958aef64b0e1b4ece
Binary files /dev/null and b/runs/fashion_trainer_20230920_110754/events.out.tfevents.1695200874.msip-dell.ims.rwth-aachen.de.1250813.0 differ
diff --git a/runs/fashion_trainer_20230920_111246/Training vs. Validation Loss_Training/events.out.tfevents.1695201172.msip-dell.ims.rwth-aachen.de.1251658.1 b/runs/fashion_trainer_20230920_111246/Training vs. Validation Loss_Training/events.out.tfevents.1695201172.msip-dell.ims.rwth-aachen.de.1251658.1
new file mode 100644
index 0000000000000000000000000000000000000000..18b7d7208650172cccf1fdf21db8676b24c7056c
Binary files /dev/null and b/runs/fashion_trainer_20230920_111246/Training vs. Validation Loss_Training/events.out.tfevents.1695201172.msip-dell.ims.rwth-aachen.de.1251658.1 differ
diff --git a/runs/fashion_trainer_20230920_111246/Training vs. Validation Loss_Validation/events.out.tfevents.1695201172.msip-dell.ims.rwth-aachen.de.1251658.2 b/runs/fashion_trainer_20230920_111246/Training vs. Validation Loss_Validation/events.out.tfevents.1695201172.msip-dell.ims.rwth-aachen.de.1251658.2
new file mode 100644
index 0000000000000000000000000000000000000000..de95cb1c8bc0425b18051e135ee041dac05a9747
Binary files /dev/null and b/runs/fashion_trainer_20230920_111246/Training vs. Validation Loss_Validation/events.out.tfevents.1695201172.msip-dell.ims.rwth-aachen.de.1251658.2 differ
diff --git a/runs/fashion_trainer_20230920_111246/events.out.tfevents.1695201166.msip-dell.ims.rwth-aachen.de.1251658.0 b/runs/fashion_trainer_20230920_111246/events.out.tfevents.1695201166.msip-dell.ims.rwth-aachen.de.1251658.0
new file mode 100644
index 0000000000000000000000000000000000000000..a1e21754602c266c1f8dae24461732beb3c147de
Binary files /dev/null and b/runs/fashion_trainer_20230920_111246/events.out.tfevents.1695201166.msip-dell.ims.rwth-aachen.de.1251658.0 differ
diff --git a/runs/fashion_trainer_20230920_111735/Training vs. Validation Loss_Training/events.out.tfevents.1695201460.msip-dell.ims.rwth-aachen.de.1251658.4 b/runs/fashion_trainer_20230920_111735/Training vs. Validation Loss_Training/events.out.tfevents.1695201460.msip-dell.ims.rwth-aachen.de.1251658.4
new file mode 100644
index 0000000000000000000000000000000000000000..b4ab31f4e286d4521bba2185aec809bc38c5c011
Binary files /dev/null and b/runs/fashion_trainer_20230920_111735/Training vs. Validation Loss_Training/events.out.tfevents.1695201460.msip-dell.ims.rwth-aachen.de.1251658.4 differ
diff --git a/runs/fashion_trainer_20230920_111735/Training vs. Validation Loss_Validation/events.out.tfevents.1695201460.msip-dell.ims.rwth-aachen.de.1251658.5 b/runs/fashion_trainer_20230920_111735/Training vs. Validation Loss_Validation/events.out.tfevents.1695201460.msip-dell.ims.rwth-aachen.de.1251658.5
new file mode 100644
index 0000000000000000000000000000000000000000..a145cfa9b4c6350f6393f8535a0bfa2877282bae
Binary files /dev/null and b/runs/fashion_trainer_20230920_111735/Training vs. Validation Loss_Validation/events.out.tfevents.1695201460.msip-dell.ims.rwth-aachen.de.1251658.5 differ
diff --git a/runs/fashion_trainer_20230920_111735/events.out.tfevents.1695201455.msip-dell.ims.rwth-aachen.de.1251658.3 b/runs/fashion_trainer_20230920_111735/events.out.tfevents.1695201455.msip-dell.ims.rwth-aachen.de.1251658.3
new file mode 100644
index 0000000000000000000000000000000000000000..11c8540ca151641b63aa3e100334072723e91340
Binary files /dev/null and b/runs/fashion_trainer_20230920_111735/events.out.tfevents.1695201455.msip-dell.ims.rwth-aachen.de.1251658.3 differ
diff --git a/runs/fashion_trainer_20230920_112234/Training vs. Validation Loss_Training/events.out.tfevents.1695201760.msip-dell.ims.rwth-aachen.de.1251658.7 b/runs/fashion_trainer_20230920_112234/Training vs. Validation Loss_Training/events.out.tfevents.1695201760.msip-dell.ims.rwth-aachen.de.1251658.7
new file mode 100644
index 0000000000000000000000000000000000000000..2509371ea4197f22fd1325b3255ca7ecf8c4bdb3
Binary files /dev/null and b/runs/fashion_trainer_20230920_112234/Training vs. Validation Loss_Training/events.out.tfevents.1695201760.msip-dell.ims.rwth-aachen.de.1251658.7 differ
diff --git a/runs/fashion_trainer_20230920_112234/Training vs. Validation Loss_Validation/events.out.tfevents.1695201760.msip-dell.ims.rwth-aachen.de.1251658.8 b/runs/fashion_trainer_20230920_112234/Training vs. Validation Loss_Validation/events.out.tfevents.1695201760.msip-dell.ims.rwth-aachen.de.1251658.8
new file mode 100644
index 0000000000000000000000000000000000000000..ee9751fcf23885539f00767dddfdee6ee10bf74f
Binary files /dev/null and b/runs/fashion_trainer_20230920_112234/Training vs. Validation Loss_Validation/events.out.tfevents.1695201760.msip-dell.ims.rwth-aachen.de.1251658.8 differ
diff --git a/runs/fashion_trainer_20230920_112234/events.out.tfevents.1695201754.msip-dell.ims.rwth-aachen.de.1251658.6 b/runs/fashion_trainer_20230920_112234/events.out.tfevents.1695201754.msip-dell.ims.rwth-aachen.de.1251658.6
new file mode 100644
index 0000000000000000000000000000000000000000..19f88f8805ba0c37febbc1dec375e3b1ffb09ce4
Binary files /dev/null and b/runs/fashion_trainer_20230920_112234/events.out.tfevents.1695201754.msip-dell.ims.rwth-aachen.de.1251658.6 differ
diff --git a/runs/fashion_trainer_20230920_112747/Training vs. Validation Loss_Training/events.out.tfevents.1695202074.msip-dell.ims.rwth-aachen.de.1251658.10 b/runs/fashion_trainer_20230920_112747/Training vs. Validation Loss_Training/events.out.tfevents.1695202074.msip-dell.ims.rwth-aachen.de.1251658.10
new file mode 100644
index 0000000000000000000000000000000000000000..662707dbdcf5216dd881510bc46de7480841594c
Binary files /dev/null and b/runs/fashion_trainer_20230920_112747/Training vs. Validation Loss_Training/events.out.tfevents.1695202074.msip-dell.ims.rwth-aachen.de.1251658.10 differ
diff --git a/runs/fashion_trainer_20230920_112747/Training vs. Validation Loss_Validation/events.out.tfevents.1695202074.msip-dell.ims.rwth-aachen.de.1251658.11 b/runs/fashion_trainer_20230920_112747/Training vs. Validation Loss_Validation/events.out.tfevents.1695202074.msip-dell.ims.rwth-aachen.de.1251658.11
new file mode 100644
index 0000000000000000000000000000000000000000..91478d81875c7f1533eedfad12e16e73c294c26c
Binary files /dev/null and b/runs/fashion_trainer_20230920_112747/Training vs. Validation Loss_Validation/events.out.tfevents.1695202074.msip-dell.ims.rwth-aachen.de.1251658.11 differ
diff --git a/runs/fashion_trainer_20230920_112747/events.out.tfevents.1695202067.msip-dell.ims.rwth-aachen.de.1251658.9 b/runs/fashion_trainer_20230920_112747/events.out.tfevents.1695202067.msip-dell.ims.rwth-aachen.de.1251658.9
new file mode 100644
index 0000000000000000000000000000000000000000..cf52de693a0d82011cd784b2883c9b698182de35
Binary files /dev/null and b/runs/fashion_trainer_20230920_112747/events.out.tfevents.1695202067.msip-dell.ims.rwth-aachen.de.1251658.9 differ
diff --git a/runs/fashion_trainer_20230920_113325/Training vs. Validation Loss_Training/events.out.tfevents.1695202411.msip-dell.ims.rwth-aachen.de.1251658.13 b/runs/fashion_trainer_20230920_113325/Training vs. Validation Loss_Training/events.out.tfevents.1695202411.msip-dell.ims.rwth-aachen.de.1251658.13
new file mode 100644
index 0000000000000000000000000000000000000000..ab15b1f211f09971e62db4c9db1185ff9eb84247
Binary files /dev/null and b/runs/fashion_trainer_20230920_113325/Training vs. Validation Loss_Training/events.out.tfevents.1695202411.msip-dell.ims.rwth-aachen.de.1251658.13 differ
diff --git a/runs/fashion_trainer_20230920_113325/Training vs. Validation Loss_Validation/events.out.tfevents.1695202411.msip-dell.ims.rwth-aachen.de.1251658.14 b/runs/fashion_trainer_20230920_113325/Training vs. Validation Loss_Validation/events.out.tfevents.1695202411.msip-dell.ims.rwth-aachen.de.1251658.14
new file mode 100644
index 0000000000000000000000000000000000000000..ebfd8e07d1274add08788a5b4efe1425d8f4a8a1
Binary files /dev/null and b/runs/fashion_trainer_20230920_113325/Training vs. Validation Loss_Validation/events.out.tfevents.1695202411.msip-dell.ims.rwth-aachen.de.1251658.14 differ
diff --git a/runs/fashion_trainer_20230920_113325/events.out.tfevents.1695202405.msip-dell.ims.rwth-aachen.de.1251658.12 b/runs/fashion_trainer_20230920_113325/events.out.tfevents.1695202405.msip-dell.ims.rwth-aachen.de.1251658.12
new file mode 100644
index 0000000000000000000000000000000000000000..05477dd091b82fc0c94c7e2c7c2738d0e7bc42bb
Binary files /dev/null and b/runs/fashion_trainer_20230920_113325/events.out.tfevents.1695202405.msip-dell.ims.rwth-aachen.de.1251658.12 differ
diff --git a/runs/fashion_trainer_20230920_113905/Training vs. Validation Loss_Training/events.out.tfevents.1695202753.msip-dell.ims.rwth-aachen.de.1251658.16 b/runs/fashion_trainer_20230920_113905/Training vs. Validation Loss_Training/events.out.tfevents.1695202753.msip-dell.ims.rwth-aachen.de.1251658.16
new file mode 100644
index 0000000000000000000000000000000000000000..d85b30277916f467b092d4c0dabef2a63673766a
Binary files /dev/null and b/runs/fashion_trainer_20230920_113905/Training vs. Validation Loss_Training/events.out.tfevents.1695202753.msip-dell.ims.rwth-aachen.de.1251658.16 differ
diff --git a/runs/fashion_trainer_20230920_113905/Training vs. Validation Loss_Validation/events.out.tfevents.1695202753.msip-dell.ims.rwth-aachen.de.1251658.17 b/runs/fashion_trainer_20230920_113905/Training vs. Validation Loss_Validation/events.out.tfevents.1695202753.msip-dell.ims.rwth-aachen.de.1251658.17
new file mode 100644
index 0000000000000000000000000000000000000000..20dfa3e73c056d7bc3d4b6435c5a59c26c6bd171
Binary files /dev/null and b/runs/fashion_trainer_20230920_113905/Training vs. Validation Loss_Validation/events.out.tfevents.1695202753.msip-dell.ims.rwth-aachen.de.1251658.17 differ
diff --git a/runs/fashion_trainer_20230920_113905/events.out.tfevents.1695202745.msip-dell.ims.rwth-aachen.de.1251658.15 b/runs/fashion_trainer_20230920_113905/events.out.tfevents.1695202745.msip-dell.ims.rwth-aachen.de.1251658.15
new file mode 100644
index 0000000000000000000000000000000000000000..090f934abd0588f5edc799f7f5b38cdd986bd39d
Binary files /dev/null and b/runs/fashion_trainer_20230920_113905/events.out.tfevents.1695202745.msip-dell.ims.rwth-aachen.de.1251658.15 differ
diff --git a/runs/fashion_trainer_20230920_114523/Training vs. Validation Loss_Training/events.out.tfevents.1695203129.msip-dell.ims.rwth-aachen.de.1251658.19 b/runs/fashion_trainer_20230920_114523/Training vs. Validation Loss_Training/events.out.tfevents.1695203129.msip-dell.ims.rwth-aachen.de.1251658.19
new file mode 100644
index 0000000000000000000000000000000000000000..8df9a830cbd9ea8ee098a9af6c3f5d683db486ea
Binary files /dev/null and b/runs/fashion_trainer_20230920_114523/Training vs. Validation Loss_Training/events.out.tfevents.1695203129.msip-dell.ims.rwth-aachen.de.1251658.19 differ
diff --git a/runs/fashion_trainer_20230920_114523/Training vs. Validation Loss_Validation/events.out.tfevents.1695203129.msip-dell.ims.rwth-aachen.de.1251658.20 b/runs/fashion_trainer_20230920_114523/Training vs. Validation Loss_Validation/events.out.tfevents.1695203129.msip-dell.ims.rwth-aachen.de.1251658.20
new file mode 100644
index 0000000000000000000000000000000000000000..e97186f0c3f64d49ee6b79e8b141bcd2576f2892
Binary files /dev/null and b/runs/fashion_trainer_20230920_114523/Training vs. Validation Loss_Validation/events.out.tfevents.1695203129.msip-dell.ims.rwth-aachen.de.1251658.20 differ
diff --git a/runs/fashion_trainer_20230920_114523/events.out.tfevents.1695203123.msip-dell.ims.rwth-aachen.de.1251658.18 b/runs/fashion_trainer_20230920_114523/events.out.tfevents.1695203123.msip-dell.ims.rwth-aachen.de.1251658.18
new file mode 100644
index 0000000000000000000000000000000000000000..c41916c3652cb5cf6097608c3f744fb82b4fe6aa
Binary files /dev/null and b/runs/fashion_trainer_20230920_114523/events.out.tfevents.1695203123.msip-dell.ims.rwth-aachen.de.1251658.18 differ
diff --git a/runs/fashion_trainer_20230920_115044/Training vs. Validation Loss_Training/events.out.tfevents.1695203451.msip-dell.ims.rwth-aachen.de.1251658.22 b/runs/fashion_trainer_20230920_115044/Training vs. Validation Loss_Training/events.out.tfevents.1695203451.msip-dell.ims.rwth-aachen.de.1251658.22
new file mode 100644
index 0000000000000000000000000000000000000000..f55d7e2aba891f63462b2fbd583bdd59724dc58f
Binary files /dev/null and b/runs/fashion_trainer_20230920_115044/Training vs. Validation Loss_Training/events.out.tfevents.1695203451.msip-dell.ims.rwth-aachen.de.1251658.22 differ
diff --git a/runs/fashion_trainer_20230920_115044/Training vs. Validation Loss_Validation/events.out.tfevents.1695203451.msip-dell.ims.rwth-aachen.de.1251658.23 b/runs/fashion_trainer_20230920_115044/Training vs. Validation Loss_Validation/events.out.tfevents.1695203451.msip-dell.ims.rwth-aachen.de.1251658.23
new file mode 100644
index 0000000000000000000000000000000000000000..7b8c9062fcd3ad38ad1933706b9775d6849117cb
Binary files /dev/null and b/runs/fashion_trainer_20230920_115044/Training vs. Validation Loss_Validation/events.out.tfevents.1695203451.msip-dell.ims.rwth-aachen.de.1251658.23 differ
diff --git a/runs/fashion_trainer_20230920_115044/events.out.tfevents.1695203444.msip-dell.ims.rwth-aachen.de.1251658.21 b/runs/fashion_trainer_20230920_115044/events.out.tfevents.1695203444.msip-dell.ims.rwth-aachen.de.1251658.21
new file mode 100644
index 0000000000000000000000000000000000000000..d78b46e17566e127be4ca751d8ca87e312ed8fb0
Binary files /dev/null and b/runs/fashion_trainer_20230920_115044/events.out.tfevents.1695203444.msip-dell.ims.rwth-aachen.de.1251658.21 differ
diff --git a/runs/fashion_trainer_20230920_121637/Training vs. Validation Loss_Training/events.out.tfevents.1695205003.msip-dell.ims.rwth-aachen.de.1256049.1 b/runs/fashion_trainer_20230920_121637/Training vs. Validation Loss_Training/events.out.tfevents.1695205003.msip-dell.ims.rwth-aachen.de.1256049.1
new file mode 100644
index 0000000000000000000000000000000000000000..1fef785d585ae70dc80a6ed6c6250b23fcafb29a
Binary files /dev/null and b/runs/fashion_trainer_20230920_121637/Training vs. Validation Loss_Training/events.out.tfevents.1695205003.msip-dell.ims.rwth-aachen.de.1256049.1 differ
diff --git a/runs/fashion_trainer_20230920_121637/Training vs. Validation Loss_Validation/events.out.tfevents.1695205003.msip-dell.ims.rwth-aachen.de.1256049.2 b/runs/fashion_trainer_20230920_121637/Training vs. Validation Loss_Validation/events.out.tfevents.1695205003.msip-dell.ims.rwth-aachen.de.1256049.2
new file mode 100644
index 0000000000000000000000000000000000000000..7125c2815650fc16ee036f3710a7075774860472
Binary files /dev/null and b/runs/fashion_trainer_20230920_121637/Training vs. Validation Loss_Validation/events.out.tfevents.1695205003.msip-dell.ims.rwth-aachen.de.1256049.2 differ
diff --git a/runs/fashion_trainer_20230920_121637/events.out.tfevents.1695204997.msip-dell.ims.rwth-aachen.de.1256049.0 b/runs/fashion_trainer_20230920_121637/events.out.tfevents.1695204997.msip-dell.ims.rwth-aachen.de.1256049.0
new file mode 100644
index 0000000000000000000000000000000000000000..c3c17ea7be0d18f2fd7884d5c3aeaf438ed76988
Binary files /dev/null and b/runs/fashion_trainer_20230920_121637/events.out.tfevents.1695204997.msip-dell.ims.rwth-aachen.de.1256049.0 differ
diff --git a/runs/fashion_trainer_20230920_121844/Training vs. Validation Loss_Training/events.out.tfevents.1695205130.msip-dell.ims.rwth-aachen.de.1256728.1 b/runs/fashion_trainer_20230920_121844/Training vs. Validation Loss_Training/events.out.tfevents.1695205130.msip-dell.ims.rwth-aachen.de.1256728.1
new file mode 100644
index 0000000000000000000000000000000000000000..44ef46befc11ab0c14e9cd224e70e96fd205f602
Binary files /dev/null and b/runs/fashion_trainer_20230920_121844/Training vs. Validation Loss_Training/events.out.tfevents.1695205130.msip-dell.ims.rwth-aachen.de.1256728.1 differ
diff --git a/runs/fashion_trainer_20230920_121844/Training vs. Validation Loss_Validation/events.out.tfevents.1695205130.msip-dell.ims.rwth-aachen.de.1256728.2 b/runs/fashion_trainer_20230920_121844/Training vs. Validation Loss_Validation/events.out.tfevents.1695205130.msip-dell.ims.rwth-aachen.de.1256728.2
new file mode 100644
index 0000000000000000000000000000000000000000..1e6f967fc0f9cfc7f9810dd76a2ea7c75b5bea77
Binary files /dev/null and b/runs/fashion_trainer_20230920_121844/Training vs. Validation Loss_Validation/events.out.tfevents.1695205130.msip-dell.ims.rwth-aachen.de.1256728.2 differ
diff --git a/runs/fashion_trainer_20230920_121844/events.out.tfevents.1695205124.msip-dell.ims.rwth-aachen.de.1256728.0 b/runs/fashion_trainer_20230920_121844/events.out.tfevents.1695205124.msip-dell.ims.rwth-aachen.de.1256728.0
new file mode 100644
index 0000000000000000000000000000000000000000..1b7016f0b1f545ad38310d12e8678d0dfdf64aa1
Binary files /dev/null and b/runs/fashion_trainer_20230920_121844/events.out.tfevents.1695205124.msip-dell.ims.rwth-aachen.de.1256728.0 differ
diff --git a/runs/fashion_trainer_20230920_121904/Training vs. Validation Loss_Training/events.out.tfevents.1695205150.msip-dell.ims.rwth-aachen.de.1256728.4 b/runs/fashion_trainer_20230920_121904/Training vs. Validation Loss_Training/events.out.tfevents.1695205150.msip-dell.ims.rwth-aachen.de.1256728.4
new file mode 100644
index 0000000000000000000000000000000000000000..340afa1227420c25285db3807429ba538e79c5dd
Binary files /dev/null and b/runs/fashion_trainer_20230920_121904/Training vs. Validation Loss_Training/events.out.tfevents.1695205150.msip-dell.ims.rwth-aachen.de.1256728.4 differ
diff --git a/runs/fashion_trainer_20230920_121904/Training vs. Validation Loss_Validation/events.out.tfevents.1695205150.msip-dell.ims.rwth-aachen.de.1256728.5 b/runs/fashion_trainer_20230920_121904/Training vs. Validation Loss_Validation/events.out.tfevents.1695205150.msip-dell.ims.rwth-aachen.de.1256728.5
new file mode 100644
index 0000000000000000000000000000000000000000..acf3dbf9cfe79c16bdd91e74c02af0397b5eb0d1
Binary files /dev/null and b/runs/fashion_trainer_20230920_121904/Training vs. Validation Loss_Validation/events.out.tfevents.1695205150.msip-dell.ims.rwth-aachen.de.1256728.5 differ
diff --git a/runs/fashion_trainer_20230920_121904/events.out.tfevents.1695205144.msip-dell.ims.rwth-aachen.de.1256728.3 b/runs/fashion_trainer_20230920_121904/events.out.tfevents.1695205144.msip-dell.ims.rwth-aachen.de.1256728.3
new file mode 100644
index 0000000000000000000000000000000000000000..d0803e66f9bb729410541668d36090e03a69ca72
Binary files /dev/null and b/runs/fashion_trainer_20230920_121904/events.out.tfevents.1695205144.msip-dell.ims.rwth-aachen.de.1256728.3 differ
diff --git a/runs/fashion_trainer_20230920_122303/Training vs. Validation Loss_Training/events.out.tfevents.1695205391.msip-dell.ims.rwth-aachen.de.1258240.1 b/runs/fashion_trainer_20230920_122303/Training vs. Validation Loss_Training/events.out.tfevents.1695205391.msip-dell.ims.rwth-aachen.de.1258240.1
new file mode 100644
index 0000000000000000000000000000000000000000..6167cd59a16f12faf1feb3f4c8d5a49a08dfbae5
Binary files /dev/null and b/runs/fashion_trainer_20230920_122303/Training vs. Validation Loss_Training/events.out.tfevents.1695205391.msip-dell.ims.rwth-aachen.de.1258240.1 differ
diff --git a/runs/fashion_trainer_20230920_122303/Training vs. Validation Loss_Training/events.out.tfevents.1695205391.msip-dell.ims.rwth-aachen.de.1258241.1 b/runs/fashion_trainer_20230920_122303/Training vs. Validation Loss_Training/events.out.tfevents.1695205391.msip-dell.ims.rwth-aachen.de.1258241.1
new file mode 100644
index 0000000000000000000000000000000000000000..2f8a04220e08040f7b0764bcd0eb7583044498b1
Binary files /dev/null and b/runs/fashion_trainer_20230920_122303/Training vs. Validation Loss_Training/events.out.tfevents.1695205391.msip-dell.ims.rwth-aachen.de.1258241.1 differ
diff --git a/runs/fashion_trainer_20230920_122303/Training vs. Validation Loss_Validation/events.out.tfevents.1695205391.msip-dell.ims.rwth-aachen.de.1258240.2 b/runs/fashion_trainer_20230920_122303/Training vs. Validation Loss_Validation/events.out.tfevents.1695205391.msip-dell.ims.rwth-aachen.de.1258240.2
new file mode 100644
index 0000000000000000000000000000000000000000..2dc50fc68a93fd6fb885926234df72ce539e8486
Binary files /dev/null and b/runs/fashion_trainer_20230920_122303/Training vs. Validation Loss_Validation/events.out.tfevents.1695205391.msip-dell.ims.rwth-aachen.de.1258240.2 differ
diff --git a/runs/fashion_trainer_20230920_122303/Training vs. Validation Loss_Validation/events.out.tfevents.1695205391.msip-dell.ims.rwth-aachen.de.1258241.2 b/runs/fashion_trainer_20230920_122303/Training vs. Validation Loss_Validation/events.out.tfevents.1695205391.msip-dell.ims.rwth-aachen.de.1258241.2
new file mode 100644
index 0000000000000000000000000000000000000000..810086fddb68f5961db20c0836694071ff069c56
Binary files /dev/null and b/runs/fashion_trainer_20230920_122303/Training vs. Validation Loss_Validation/events.out.tfevents.1695205391.msip-dell.ims.rwth-aachen.de.1258241.2 differ
diff --git a/runs/fashion_trainer_20230920_122303/events.out.tfevents.1695205383.msip-dell.ims.rwth-aachen.de.1258240.0 b/runs/fashion_trainer_20230920_122303/events.out.tfevents.1695205383.msip-dell.ims.rwth-aachen.de.1258240.0
new file mode 100644
index 0000000000000000000000000000000000000000..3cae220b561a725d4c79e00986417d25d59b3f89
Binary files /dev/null and b/runs/fashion_trainer_20230920_122303/events.out.tfevents.1695205383.msip-dell.ims.rwth-aachen.de.1258240.0 differ
diff --git a/runs/fashion_trainer_20230920_122303/events.out.tfevents.1695205383.msip-dell.ims.rwth-aachen.de.1258241.0 b/runs/fashion_trainer_20230920_122303/events.out.tfevents.1695205383.msip-dell.ims.rwth-aachen.de.1258241.0
new file mode 100644
index 0000000000000000000000000000000000000000..e609c56f39f4dbd95c9ab75a7729f1a1b261af44
Binary files /dev/null and b/runs/fashion_trainer_20230920_122303/events.out.tfevents.1695205383.msip-dell.ims.rwth-aachen.de.1258241.0 differ
diff --git a/runs/fashion_trainer_20230920_122947/Training vs. Validation Loss_Training/events.out.tfevents.1695205794.msip-dell.ims.rwth-aachen.de.1260391.1 b/runs/fashion_trainer_20230920_122947/Training vs. Validation Loss_Training/events.out.tfevents.1695205794.msip-dell.ims.rwth-aachen.de.1260391.1
new file mode 100644
index 0000000000000000000000000000000000000000..b2458a042498dc41be37e5f58d2a5e5135345cac
Binary files /dev/null and b/runs/fashion_trainer_20230920_122947/Training vs. Validation Loss_Training/events.out.tfevents.1695205794.msip-dell.ims.rwth-aachen.de.1260391.1 differ
diff --git a/runs/fashion_trainer_20230920_122947/Training vs. Validation Loss_Validation/events.out.tfevents.1695205794.msip-dell.ims.rwth-aachen.de.1260391.2 b/runs/fashion_trainer_20230920_122947/Training vs. Validation Loss_Validation/events.out.tfevents.1695205794.msip-dell.ims.rwth-aachen.de.1260391.2
new file mode 100644
index 0000000000000000000000000000000000000000..46bc56e87b1596f0cfc39d6c4cb0d8c497f36d72
Binary files /dev/null and b/runs/fashion_trainer_20230920_122947/Training vs. Validation Loss_Validation/events.out.tfevents.1695205794.msip-dell.ims.rwth-aachen.de.1260391.2 differ
diff --git a/runs/fashion_trainer_20230920_122947/events.out.tfevents.1695205787.msip-dell.ims.rwth-aachen.de.1260391.0 b/runs/fashion_trainer_20230920_122947/events.out.tfevents.1695205787.msip-dell.ims.rwth-aachen.de.1260391.0
new file mode 100644
index 0000000000000000000000000000000000000000..e6809bf461b52f95693d9455a8cc44cc899caee7
Binary files /dev/null and b/runs/fashion_trainer_20230920_122947/events.out.tfevents.1695205787.msip-dell.ims.rwth-aachen.de.1260391.0 differ
diff --git a/runs/fashion_trainer_20230920_123059/Training vs. Validation Loss_Training/events.out.tfevents.1695205867.msip-dell.ims.rwth-aachen.de.1260826.1 b/runs/fashion_trainer_20230920_123059/Training vs. Validation Loss_Training/events.out.tfevents.1695205867.msip-dell.ims.rwth-aachen.de.1260826.1
new file mode 100644
index 0000000000000000000000000000000000000000..e8ef4088d1396eca0a1ec7033b5b87eafa4107b2
Binary files /dev/null and b/runs/fashion_trainer_20230920_123059/Training vs. Validation Loss_Training/events.out.tfevents.1695205867.msip-dell.ims.rwth-aachen.de.1260826.1 differ
diff --git a/runs/fashion_trainer_20230920_123059/Training vs. Validation Loss_Validation/events.out.tfevents.1695205867.msip-dell.ims.rwth-aachen.de.1260826.2 b/runs/fashion_trainer_20230920_123059/Training vs. Validation Loss_Validation/events.out.tfevents.1695205867.msip-dell.ims.rwth-aachen.de.1260826.2
new file mode 100644
index 0000000000000000000000000000000000000000..3957dc1fa5de69073d03344087bc239d2cad02d1
Binary files /dev/null and b/runs/fashion_trainer_20230920_123059/Training vs. Validation Loss_Validation/events.out.tfevents.1695205867.msip-dell.ims.rwth-aachen.de.1260826.2 differ
diff --git a/runs/fashion_trainer_20230920_123059/events.out.tfevents.1695205859.msip-dell.ims.rwth-aachen.de.1260826.0 b/runs/fashion_trainer_20230920_123059/events.out.tfevents.1695205859.msip-dell.ims.rwth-aachen.de.1260826.0
new file mode 100644
index 0000000000000000000000000000000000000000..cbd0deae1ed6dc85dc83736084380bc38e0e4fe6
Binary files /dev/null and b/runs/fashion_trainer_20230920_123059/events.out.tfevents.1695205859.msip-dell.ims.rwth-aachen.de.1260826.0 differ
diff --git a/runs/fashion_trainer_20230920_123649/Training vs. Validation Loss_Training/events.out.tfevents.1695206217.msip-dell.ims.rwth-aachen.de.1260391.4 b/runs/fashion_trainer_20230920_123649/Training vs. Validation Loss_Training/events.out.tfevents.1695206217.msip-dell.ims.rwth-aachen.de.1260391.4
new file mode 100644
index 0000000000000000000000000000000000000000..14ac639a4d6342354fe69bb07965395ebac2188a
Binary files /dev/null and b/runs/fashion_trainer_20230920_123649/Training vs. Validation Loss_Training/events.out.tfevents.1695206217.msip-dell.ims.rwth-aachen.de.1260391.4 differ
diff --git a/runs/fashion_trainer_20230920_123649/Training vs. Validation Loss_Validation/events.out.tfevents.1695206217.msip-dell.ims.rwth-aachen.de.1260391.5 b/runs/fashion_trainer_20230920_123649/Training vs. Validation Loss_Validation/events.out.tfevents.1695206217.msip-dell.ims.rwth-aachen.de.1260391.5
new file mode 100644
index 0000000000000000000000000000000000000000..0d1f292c0cc85971579330dd53a7e956b41a2531
Binary files /dev/null and b/runs/fashion_trainer_20230920_123649/Training vs. Validation Loss_Validation/events.out.tfevents.1695206217.msip-dell.ims.rwth-aachen.de.1260391.5 differ
diff --git a/runs/fashion_trainer_20230920_123649/events.out.tfevents.1695206209.msip-dell.ims.rwth-aachen.de.1260391.3 b/runs/fashion_trainer_20230920_123649/events.out.tfevents.1695206209.msip-dell.ims.rwth-aachen.de.1260391.3
new file mode 100644
index 0000000000000000000000000000000000000000..237838f356ed1b52cca59e741ae30effc513e2dd
Binary files /dev/null and b/runs/fashion_trainer_20230920_123649/events.out.tfevents.1695206209.msip-dell.ims.rwth-aachen.de.1260391.3 differ
diff --git a/runs/fashion_trainer_20230920_123731/Training vs. Validation Loss_Training/events.out.tfevents.1695206258.msip-dell.ims.rwth-aachen.de.1260826.4 b/runs/fashion_trainer_20230920_123731/Training vs. Validation Loss_Training/events.out.tfevents.1695206258.msip-dell.ims.rwth-aachen.de.1260826.4
new file mode 100644
index 0000000000000000000000000000000000000000..550e1e0a59868bd2df4c903daa4835f32bcf5be7
Binary files /dev/null and b/runs/fashion_trainer_20230920_123731/Training vs. Validation Loss_Training/events.out.tfevents.1695206258.msip-dell.ims.rwth-aachen.de.1260826.4 differ
diff --git a/runs/fashion_trainer_20230920_123731/Training vs. Validation Loss_Validation/events.out.tfevents.1695206258.msip-dell.ims.rwth-aachen.de.1260826.5 b/runs/fashion_trainer_20230920_123731/Training vs. Validation Loss_Validation/events.out.tfevents.1695206258.msip-dell.ims.rwth-aachen.de.1260826.5
new file mode 100644
index 0000000000000000000000000000000000000000..e0c4c199b6b61c466cc7f52fb3ca513af686f695
Binary files /dev/null and b/runs/fashion_trainer_20230920_123731/Training vs. Validation Loss_Validation/events.out.tfevents.1695206258.msip-dell.ims.rwth-aachen.de.1260826.5 differ
diff --git a/runs/fashion_trainer_20230920_123731/events.out.tfevents.1695206251.msip-dell.ims.rwth-aachen.de.1260826.3 b/runs/fashion_trainer_20230920_123731/events.out.tfevents.1695206251.msip-dell.ims.rwth-aachen.de.1260826.3
new file mode 100644
index 0000000000000000000000000000000000000000..c9de5a42ef27f8522ed32c1f6bfac68f29af7fa5
Binary files /dev/null and b/runs/fashion_trainer_20230920_123731/events.out.tfevents.1695206251.msip-dell.ims.rwth-aachen.de.1260826.3 differ
diff --git a/runs/fashion_trainer_20230920_124350/Training vs. Validation Loss_Training/events.out.tfevents.1695206638.msip-dell.ims.rwth-aachen.de.1260826.7 b/runs/fashion_trainer_20230920_124350/Training vs. Validation Loss_Training/events.out.tfevents.1695206638.msip-dell.ims.rwth-aachen.de.1260826.7
new file mode 100644
index 0000000000000000000000000000000000000000..e0cd4f8dd210107805b050c619cf32015a58a084
Binary files /dev/null and b/runs/fashion_trainer_20230920_124350/Training vs. Validation Loss_Training/events.out.tfevents.1695206638.msip-dell.ims.rwth-aachen.de.1260826.7 differ
diff --git a/runs/fashion_trainer_20230920_124350/Training vs. Validation Loss_Validation/events.out.tfevents.1695206638.msip-dell.ims.rwth-aachen.de.1260826.8 b/runs/fashion_trainer_20230920_124350/Training vs. Validation Loss_Validation/events.out.tfevents.1695206638.msip-dell.ims.rwth-aachen.de.1260826.8
new file mode 100644
index 0000000000000000000000000000000000000000..0b2739dd148ed61c5520417d5dc8123cd231e3ee
Binary files /dev/null and b/runs/fashion_trainer_20230920_124350/Training vs. Validation Loss_Validation/events.out.tfevents.1695206638.msip-dell.ims.rwth-aachen.de.1260826.8 differ
diff --git a/runs/fashion_trainer_20230920_124350/events.out.tfevents.1695206630.msip-dell.ims.rwth-aachen.de.1260826.6 b/runs/fashion_trainer_20230920_124350/events.out.tfevents.1695206630.msip-dell.ims.rwth-aachen.de.1260826.6
new file mode 100644
index 0000000000000000000000000000000000000000..8a6eacb50cb24e51785a34973aeceab9a88654bc
Binary files /dev/null and b/runs/fashion_trainer_20230920_124350/events.out.tfevents.1695206630.msip-dell.ims.rwth-aachen.de.1260826.6 differ
diff --git a/runs/fashion_trainer_20230920_124356/Training vs. Validation Loss_Training/events.out.tfevents.1695206644.msip-dell.ims.rwth-aachen.de.1260391.7 b/runs/fashion_trainer_20230920_124356/Training vs. Validation Loss_Training/events.out.tfevents.1695206644.msip-dell.ims.rwth-aachen.de.1260391.7
new file mode 100644
index 0000000000000000000000000000000000000000..75fea67fb4815afd134beef67b42869687e4ee06
Binary files /dev/null and b/runs/fashion_trainer_20230920_124356/Training vs. Validation Loss_Training/events.out.tfevents.1695206644.msip-dell.ims.rwth-aachen.de.1260391.7 differ
diff --git a/runs/fashion_trainer_20230920_124356/Training vs. Validation Loss_Validation/events.out.tfevents.1695206644.msip-dell.ims.rwth-aachen.de.1260391.8 b/runs/fashion_trainer_20230920_124356/Training vs. Validation Loss_Validation/events.out.tfevents.1695206644.msip-dell.ims.rwth-aachen.de.1260391.8
new file mode 100644
index 0000000000000000000000000000000000000000..ba5531eaadf7f5d6079130e4d38eabcb8576cda9
Binary files /dev/null and b/runs/fashion_trainer_20230920_124356/Training vs. Validation Loss_Validation/events.out.tfevents.1695206644.msip-dell.ims.rwth-aachen.de.1260391.8 differ
diff --git a/runs/fashion_trainer_20230920_124356/events.out.tfevents.1695206636.msip-dell.ims.rwth-aachen.de.1260391.6 b/runs/fashion_trainer_20230920_124356/events.out.tfevents.1695206636.msip-dell.ims.rwth-aachen.de.1260391.6
new file mode 100644
index 0000000000000000000000000000000000000000..657916f83203c73f54232e9717face0e5950bf82
Binary files /dev/null and b/runs/fashion_trainer_20230920_124356/events.out.tfevents.1695206636.msip-dell.ims.rwth-aachen.de.1260391.6 differ
diff --git a/runs/fashion_trainer_20230920_125034/Training vs. Validation Loss_Training/events.out.tfevents.1695207042.msip-dell.ims.rwth-aachen.de.1260826.10 b/runs/fashion_trainer_20230920_125034/Training vs. Validation Loss_Training/events.out.tfevents.1695207042.msip-dell.ims.rwth-aachen.de.1260826.10
new file mode 100644
index 0000000000000000000000000000000000000000..809f0afda0d69e5d57ce9317c0d63d16503a6555
Binary files /dev/null and b/runs/fashion_trainer_20230920_125034/Training vs. Validation Loss_Training/events.out.tfevents.1695207042.msip-dell.ims.rwth-aachen.de.1260826.10 differ
diff --git a/runs/fashion_trainer_20230920_125034/Training vs. Validation Loss_Validation/events.out.tfevents.1695207042.msip-dell.ims.rwth-aachen.de.1260826.11 b/runs/fashion_trainer_20230920_125034/Training vs. Validation Loss_Validation/events.out.tfevents.1695207042.msip-dell.ims.rwth-aachen.de.1260826.11
new file mode 100644
index 0000000000000000000000000000000000000000..fce7b814e46221ca443315b48a7f61cccd1414f7
Binary files /dev/null and b/runs/fashion_trainer_20230920_125034/Training vs. Validation Loss_Validation/events.out.tfevents.1695207042.msip-dell.ims.rwth-aachen.de.1260826.11 differ
diff --git a/runs/fashion_trainer_20230920_125034/events.out.tfevents.1695207034.msip-dell.ims.rwth-aachen.de.1260826.9 b/runs/fashion_trainer_20230920_125034/events.out.tfevents.1695207034.msip-dell.ims.rwth-aachen.de.1260826.9
new file mode 100644
index 0000000000000000000000000000000000000000..da959139a763319cded9af268e4f6f6949b57297
Binary files /dev/null and b/runs/fashion_trainer_20230920_125034/events.out.tfevents.1695207034.msip-dell.ims.rwth-aachen.de.1260826.9 differ
diff --git a/runs/fashion_trainer_20230920_125038/Training vs. Validation Loss_Training/events.out.tfevents.1695207047.msip-dell.ims.rwth-aachen.de.1260391.10 b/runs/fashion_trainer_20230920_125038/Training vs. Validation Loss_Training/events.out.tfevents.1695207047.msip-dell.ims.rwth-aachen.de.1260391.10
new file mode 100644
index 0000000000000000000000000000000000000000..e9aed5a60b7c90a129311829dd6853691cb97aab
Binary files /dev/null and b/runs/fashion_trainer_20230920_125038/Training vs. Validation Loss_Training/events.out.tfevents.1695207047.msip-dell.ims.rwth-aachen.de.1260391.10 differ
diff --git a/runs/fashion_trainer_20230920_125038/Training vs. Validation Loss_Validation/events.out.tfevents.1695207047.msip-dell.ims.rwth-aachen.de.1260391.11 b/runs/fashion_trainer_20230920_125038/Training vs. Validation Loss_Validation/events.out.tfevents.1695207047.msip-dell.ims.rwth-aachen.de.1260391.11
new file mode 100644
index 0000000000000000000000000000000000000000..5be26635587646efee2a5c0d8789786cb90736f5
Binary files /dev/null and b/runs/fashion_trainer_20230920_125038/Training vs. Validation Loss_Validation/events.out.tfevents.1695207047.msip-dell.ims.rwth-aachen.de.1260391.11 differ
diff --git a/runs/fashion_trainer_20230920_125038/events.out.tfevents.1695207038.msip-dell.ims.rwth-aachen.de.1260391.9 b/runs/fashion_trainer_20230920_125038/events.out.tfevents.1695207038.msip-dell.ims.rwth-aachen.de.1260391.9
new file mode 100644
index 0000000000000000000000000000000000000000..6df9a372e0c8a9665ca0bd89bb0f3e16ddefd167
Binary files /dev/null and b/runs/fashion_trainer_20230920_125038/events.out.tfevents.1695207038.msip-dell.ims.rwth-aachen.de.1260391.9 differ
diff --git a/runs/fashion_trainer_20230920_125719/Training vs. Validation Loss_Training/events.out.tfevents.1695207447.msip-dell.ims.rwth-aachen.de.1260826.13 b/runs/fashion_trainer_20230920_125719/Training vs. Validation Loss_Training/events.out.tfevents.1695207447.msip-dell.ims.rwth-aachen.de.1260826.13
new file mode 100644
index 0000000000000000000000000000000000000000..f31fd6dd972507cf25e4572173cf217a4d128792
Binary files /dev/null and b/runs/fashion_trainer_20230920_125719/Training vs. Validation Loss_Training/events.out.tfevents.1695207447.msip-dell.ims.rwth-aachen.de.1260826.13 differ
diff --git a/runs/fashion_trainer_20230920_125719/Training vs. Validation Loss_Validation/events.out.tfevents.1695207447.msip-dell.ims.rwth-aachen.de.1260826.14 b/runs/fashion_trainer_20230920_125719/Training vs. Validation Loss_Validation/events.out.tfevents.1695207447.msip-dell.ims.rwth-aachen.de.1260826.14
new file mode 100644
index 0000000000000000000000000000000000000000..aca20841d6d4cee4ba8ee30c6e3d58fb6cc86a15
Binary files /dev/null and b/runs/fashion_trainer_20230920_125719/Training vs. Validation Loss_Validation/events.out.tfevents.1695207447.msip-dell.ims.rwth-aachen.de.1260826.14 differ
diff --git a/runs/fashion_trainer_20230920_125719/events.out.tfevents.1695207439.msip-dell.ims.rwth-aachen.de.1260826.12 b/runs/fashion_trainer_20230920_125719/events.out.tfevents.1695207439.msip-dell.ims.rwth-aachen.de.1260826.12
new file mode 100644
index 0000000000000000000000000000000000000000..a2de79b86bddafa9d4442d244ff424ef0788bc9a
Binary files /dev/null and b/runs/fashion_trainer_20230920_125719/events.out.tfevents.1695207439.msip-dell.ims.rwth-aachen.de.1260826.12 differ
diff --git a/runs/fashion_trainer_20230920_125753/Training vs. Validation Loss_Training/events.out.tfevents.1695207482.msip-dell.ims.rwth-aachen.de.1260391.13 b/runs/fashion_trainer_20230920_125753/Training vs. Validation Loss_Training/events.out.tfevents.1695207482.msip-dell.ims.rwth-aachen.de.1260391.13
new file mode 100644
index 0000000000000000000000000000000000000000..b9aedab80cb1c64378ca17aae698057c37fd0995
Binary files /dev/null and b/runs/fashion_trainer_20230920_125753/Training vs. Validation Loss_Training/events.out.tfevents.1695207482.msip-dell.ims.rwth-aachen.de.1260391.13 differ
diff --git a/runs/fashion_trainer_20230920_125753/Training vs. Validation Loss_Validation/events.out.tfevents.1695207482.msip-dell.ims.rwth-aachen.de.1260391.14 b/runs/fashion_trainer_20230920_125753/Training vs. Validation Loss_Validation/events.out.tfevents.1695207482.msip-dell.ims.rwth-aachen.de.1260391.14
new file mode 100644
index 0000000000000000000000000000000000000000..ce45670b48d2212d1dc9c18abdf25ad8a552f2f4
Binary files /dev/null and b/runs/fashion_trainer_20230920_125753/Training vs. Validation Loss_Validation/events.out.tfevents.1695207482.msip-dell.ims.rwth-aachen.de.1260391.14 differ
diff --git a/runs/fashion_trainer_20230920_125753/events.out.tfevents.1695207473.msip-dell.ims.rwth-aachen.de.1260391.12 b/runs/fashion_trainer_20230920_125753/events.out.tfevents.1695207473.msip-dell.ims.rwth-aachen.de.1260391.12
new file mode 100644
index 0000000000000000000000000000000000000000..7dfb89439345e0d07f20ac286339890139103ce8
Binary files /dev/null and b/runs/fashion_trainer_20230920_125753/events.out.tfevents.1695207473.msip-dell.ims.rwth-aachen.de.1260391.12 differ
diff --git a/runs/fashion_trainer_20230920_130340/Training vs. Validation Loss_Training/events.out.tfevents.1695207828.msip-dell.ims.rwth-aachen.de.1260826.16 b/runs/fashion_trainer_20230920_130340/Training vs. Validation Loss_Training/events.out.tfevents.1695207828.msip-dell.ims.rwth-aachen.de.1260826.16
new file mode 100644
index 0000000000000000000000000000000000000000..444c96e6115294f23cbe67077be0b0610b9b573d
Binary files /dev/null and b/runs/fashion_trainer_20230920_130340/Training vs. Validation Loss_Training/events.out.tfevents.1695207828.msip-dell.ims.rwth-aachen.de.1260826.16 differ
diff --git a/runs/fashion_trainer_20230920_130340/Training vs. Validation Loss_Validation/events.out.tfevents.1695207828.msip-dell.ims.rwth-aachen.de.1260826.17 b/runs/fashion_trainer_20230920_130340/Training vs. Validation Loss_Validation/events.out.tfevents.1695207828.msip-dell.ims.rwth-aachen.de.1260826.17
new file mode 100644
index 0000000000000000000000000000000000000000..e316ec9af12fcde81500ca47b74e4b577acf05c9
Binary files /dev/null and b/runs/fashion_trainer_20230920_130340/Training vs. Validation Loss_Validation/events.out.tfevents.1695207828.msip-dell.ims.rwth-aachen.de.1260826.17 differ
diff --git a/runs/fashion_trainer_20230920_130340/events.out.tfevents.1695207820.msip-dell.ims.rwth-aachen.de.1260826.15 b/runs/fashion_trainer_20230920_130340/events.out.tfevents.1695207820.msip-dell.ims.rwth-aachen.de.1260826.15
new file mode 100644
index 0000000000000000000000000000000000000000..2bb4663ae5b788c8960e09f6e9a1038ed7658ecd
Binary files /dev/null and b/runs/fashion_trainer_20230920_130340/events.out.tfevents.1695207820.msip-dell.ims.rwth-aachen.de.1260826.15 differ
diff --git a/runs/fashion_trainer_20230920_130507/Training vs. Validation Loss_Training/events.out.tfevents.1695207915.msip-dell.ims.rwth-aachen.de.1260391.16 b/runs/fashion_trainer_20230920_130507/Training vs. Validation Loss_Training/events.out.tfevents.1695207915.msip-dell.ims.rwth-aachen.de.1260391.16
new file mode 100644
index 0000000000000000000000000000000000000000..6270b0d4172d0d69086f0dc470e3c0e83f2af746
Binary files /dev/null and b/runs/fashion_trainer_20230920_130507/Training vs. Validation Loss_Training/events.out.tfevents.1695207915.msip-dell.ims.rwth-aachen.de.1260391.16 differ
diff --git a/runs/fashion_trainer_20230920_130507/Training vs. Validation Loss_Validation/events.out.tfevents.1695207915.msip-dell.ims.rwth-aachen.de.1260391.17 b/runs/fashion_trainer_20230920_130507/Training vs. Validation Loss_Validation/events.out.tfevents.1695207915.msip-dell.ims.rwth-aachen.de.1260391.17
new file mode 100644
index 0000000000000000000000000000000000000000..fbb55c5fcf847d397dd20a11c0980faacd0fd108
Binary files /dev/null and b/runs/fashion_trainer_20230920_130507/Training vs. Validation Loss_Validation/events.out.tfevents.1695207915.msip-dell.ims.rwth-aachen.de.1260391.17 differ
diff --git a/runs/fashion_trainer_20230920_130507/events.out.tfevents.1695207907.msip-dell.ims.rwth-aachen.de.1260391.15 b/runs/fashion_trainer_20230920_130507/events.out.tfevents.1695207907.msip-dell.ims.rwth-aachen.de.1260391.15
new file mode 100644
index 0000000000000000000000000000000000000000..07779b048b320968df78d6276c502a8a88a30357
Binary files /dev/null and b/runs/fashion_trainer_20230920_130507/events.out.tfevents.1695207907.msip-dell.ims.rwth-aachen.de.1260391.15 differ
diff --git a/runs/fashion_trainer_20230920_131026/Training vs. Validation Loss_Training/events.out.tfevents.1695208234.msip-dell.ims.rwth-aachen.de.1260826.19 b/runs/fashion_trainer_20230920_131026/Training vs. Validation Loss_Training/events.out.tfevents.1695208234.msip-dell.ims.rwth-aachen.de.1260826.19
new file mode 100644
index 0000000000000000000000000000000000000000..4952ef90b754e9ecefdedae9c9453a499e5d9d49
Binary files /dev/null and b/runs/fashion_trainer_20230920_131026/Training vs. Validation Loss_Training/events.out.tfevents.1695208234.msip-dell.ims.rwth-aachen.de.1260826.19 differ
diff --git a/runs/fashion_trainer_20230920_131026/Training vs. Validation Loss_Validation/events.out.tfevents.1695208234.msip-dell.ims.rwth-aachen.de.1260826.20 b/runs/fashion_trainer_20230920_131026/Training vs. Validation Loss_Validation/events.out.tfevents.1695208234.msip-dell.ims.rwth-aachen.de.1260826.20
new file mode 100644
index 0000000000000000000000000000000000000000..0be5d8b698305d1a6697201bba1cd9cdb3c60dce
Binary files /dev/null and b/runs/fashion_trainer_20230920_131026/Training vs. Validation Loss_Validation/events.out.tfevents.1695208234.msip-dell.ims.rwth-aachen.de.1260826.20 differ
diff --git a/runs/fashion_trainer_20230920_131026/events.out.tfevents.1695208226.msip-dell.ims.rwth-aachen.de.1260826.18 b/runs/fashion_trainer_20230920_131026/events.out.tfevents.1695208226.msip-dell.ims.rwth-aachen.de.1260826.18
new file mode 100644
index 0000000000000000000000000000000000000000..9d4d2cfe2da0d7fd5bee0b8561f3c8d60443a681
Binary files /dev/null and b/runs/fashion_trainer_20230920_131026/events.out.tfevents.1695208226.msip-dell.ims.rwth-aachen.de.1260826.18 differ
diff --git a/runs/fashion_trainer_20230920_131218/Training vs. Validation Loss_Training/events.out.tfevents.1695208346.msip-dell.ims.rwth-aachen.de.1260391.19 b/runs/fashion_trainer_20230920_131218/Training vs. Validation Loss_Training/events.out.tfevents.1695208346.msip-dell.ims.rwth-aachen.de.1260391.19
new file mode 100644
index 0000000000000000000000000000000000000000..5972b9154a147660e88d7469a7c78cd307b5eae4
Binary files /dev/null and b/runs/fashion_trainer_20230920_131218/Training vs. Validation Loss_Training/events.out.tfevents.1695208346.msip-dell.ims.rwth-aachen.de.1260391.19 differ
diff --git a/runs/fashion_trainer_20230920_131218/Training vs. Validation Loss_Validation/events.out.tfevents.1695208346.msip-dell.ims.rwth-aachen.de.1260391.20 b/runs/fashion_trainer_20230920_131218/Training vs. Validation Loss_Validation/events.out.tfevents.1695208346.msip-dell.ims.rwth-aachen.de.1260391.20
new file mode 100644
index 0000000000000000000000000000000000000000..bf4eb732eb8058c0cd6ce51aba86eee01f690c83
Binary files /dev/null and b/runs/fashion_trainer_20230920_131218/Training vs. Validation Loss_Validation/events.out.tfevents.1695208346.msip-dell.ims.rwth-aachen.de.1260391.20 differ
diff --git a/runs/fashion_trainer_20230920_131218/events.out.tfevents.1695208338.msip-dell.ims.rwth-aachen.de.1260391.18 b/runs/fashion_trainer_20230920_131218/events.out.tfevents.1695208338.msip-dell.ims.rwth-aachen.de.1260391.18
new file mode 100644
index 0000000000000000000000000000000000000000..df04f3383d8d7a9365e2c39d5235102f4bc3c0d5
Binary files /dev/null and b/runs/fashion_trainer_20230920_131218/events.out.tfevents.1695208338.msip-dell.ims.rwth-aachen.de.1260391.18 differ
diff --git a/runs/fashion_trainer_20230920_131718/Training vs. Validation Loss_Training/events.out.tfevents.1695208647.msip-dell.ims.rwth-aachen.de.1260826.22 b/runs/fashion_trainer_20230920_131718/Training vs. Validation Loss_Training/events.out.tfevents.1695208647.msip-dell.ims.rwth-aachen.de.1260826.22
new file mode 100644
index 0000000000000000000000000000000000000000..ee927447a89dc878ed1884d003a2d1682dbe0f72
Binary files /dev/null and b/runs/fashion_trainer_20230920_131718/Training vs. Validation Loss_Training/events.out.tfevents.1695208647.msip-dell.ims.rwth-aachen.de.1260826.22 differ
diff --git a/runs/fashion_trainer_20230920_131718/Training vs. Validation Loss_Validation/events.out.tfevents.1695208647.msip-dell.ims.rwth-aachen.de.1260826.23 b/runs/fashion_trainer_20230920_131718/Training vs. Validation Loss_Validation/events.out.tfevents.1695208647.msip-dell.ims.rwth-aachen.de.1260826.23
new file mode 100644
index 0000000000000000000000000000000000000000..87ddf2cccbfb5c557a1483463b90b03d7751007e
Binary files /dev/null and b/runs/fashion_trainer_20230920_131718/Training vs. Validation Loss_Validation/events.out.tfevents.1695208647.msip-dell.ims.rwth-aachen.de.1260826.23 differ
diff --git a/runs/fashion_trainer_20230920_131718/events.out.tfevents.1695208638.msip-dell.ims.rwth-aachen.de.1260826.21 b/runs/fashion_trainer_20230920_131718/events.out.tfevents.1695208638.msip-dell.ims.rwth-aachen.de.1260826.21
new file mode 100644
index 0000000000000000000000000000000000000000..64450bb53fdc30d3a975e97710892dce957598ed
Binary files /dev/null and b/runs/fashion_trainer_20230920_131718/events.out.tfevents.1695208638.msip-dell.ims.rwth-aachen.de.1260826.21 differ
diff --git a/runs/fashion_trainer_20230920_131838/Training vs. Validation Loss_Training/events.out.tfevents.1695208726.msip-dell.ims.rwth-aachen.de.1260391.22 b/runs/fashion_trainer_20230920_131838/Training vs. Validation Loss_Training/events.out.tfevents.1695208726.msip-dell.ims.rwth-aachen.de.1260391.22
new file mode 100644
index 0000000000000000000000000000000000000000..a7a41bf4700d82acfa40c808f3c9d26210aa1db7
Binary files /dev/null and b/runs/fashion_trainer_20230920_131838/Training vs. Validation Loss_Training/events.out.tfevents.1695208726.msip-dell.ims.rwth-aachen.de.1260391.22 differ
diff --git a/runs/fashion_trainer_20230920_131838/Training vs. Validation Loss_Validation/events.out.tfevents.1695208726.msip-dell.ims.rwth-aachen.de.1260391.23 b/runs/fashion_trainer_20230920_131838/Training vs. Validation Loss_Validation/events.out.tfevents.1695208726.msip-dell.ims.rwth-aachen.de.1260391.23
new file mode 100644
index 0000000000000000000000000000000000000000..c2b4fcb005c8c7f048f4dc7237e6c7b1a557809a
Binary files /dev/null and b/runs/fashion_trainer_20230920_131838/Training vs. Validation Loss_Validation/events.out.tfevents.1695208726.msip-dell.ims.rwth-aachen.de.1260391.23 differ
diff --git a/runs/fashion_trainer_20230920_131838/events.out.tfevents.1695208718.msip-dell.ims.rwth-aachen.de.1260391.21 b/runs/fashion_trainer_20230920_131838/events.out.tfevents.1695208718.msip-dell.ims.rwth-aachen.de.1260391.21
new file mode 100644
index 0000000000000000000000000000000000000000..22c62695aa97a1602ac449c200ae4c175a6f7f64
Binary files /dev/null and b/runs/fashion_trainer_20230920_131838/events.out.tfevents.1695208718.msip-dell.ims.rwth-aachen.de.1260391.21 differ
diff --git a/train_URWF.py b/train_URWF.py
index bf9682d4ff2caa03a592afea76df0156836878ea..3d7e5e39dff7aec8cdc4648435d3d2d94d187c83 100644
--- a/train_URWF.py
+++ b/train_URWF.py
@@ -1,7 +1,9 @@
 import torch
 import numpy as np
+import matplotlib.pyplot as plt
 import math
 import generating
+import tikzplotlib
 from torch.utils.data import DataLoader
 from datetime import datetime
 from torch.utils.data import DataLoader, SubsetRandomSampler
@@ -9,6 +11,16 @@ from torch.utils.data import DataLoader, SubsetRandomSampler
 from torch.utils.tensorboard import SummaryWriter
 
 
+def tikzplotlib_fix_ncols(obj):
+    """
+    workaround for matplotlib 3.6 renamed legend's _ncol to _ncols, which breaks tikzplotlib
+    """
+    if hasattr(obj, "_ncols"):
+        obj._ncol = obj._ncols
+    for child in obj.get_children():
+        tikzplotlib_fix_ncols(child)
+
+
 class URWF(torch.nn.Module):
     def __init__(
         self,
@@ -88,17 +100,31 @@ class URWF(torch.nn.Module):
                     self.unit_matrix.cfloat(), second_divide.cfloat()
                 )
             elif self.scenario == 3:
+                z = z - mu * torch.linalg.matmul(
+                    (
+                        torch.linalg.matmul(self.unit_matrix.T, self.unit_matrix)
+                    ).cfloat(),
+                    second_divide.cfloat(),
+                )
+            elif self.scenario == 4:
                 z = z - mu * self.unit_vector[t] * torch.linalg.matmul(
                     self.unit_matrix.cfloat(), second_divide.cfloat()
                 )
-            elif self.scenario == 4:
+            elif self.scenario == 5:
+                z = z - mu * self.unit_vector[t] * torch.linalg.matmul(
+                    (
+                        torch.linalg.matmul(self.unit_matrix.T, self.unit_matrix)
+                    ).cfloat(),
+                    second_divide.cfloat(),
+                )
+            elif self.scenario == 6:
                 z = z - mu * torch.linalg.matmul(
                     self.unit_tensor[t].cfloat(), second_divide.cfloat()
                 )
-            elif self.scenario == 5:
+            elif self.scenario == 7:
                 z = z - mu * torch.linalg.matmul(
                     (
-                        torch.linalg.matmul(self.unit_matrix.T, self.unit_matrix)
+                        torch.linalg.matmul(self.unit_tensor[t].T, self.unit_tensor[t])
                     ).cfloat(),
                     second_divide.cfloat(),
                 )
@@ -144,11 +170,24 @@ def train_URWF(
     tensor,
     EPOCHS,
 ):
+    # print("dalam")
     if torch.cuda.is_available() & cuda_flag:
         DEVICE = "cuda"
     else:
         DEVICE = "cpu"
     n = x.shape[0]
+    model_RWF = URWF(
+        cuda_flag,
+        n,
+        cplx_flag,
+        npower_iter,
+        T,
+        SCENARIO,
+        scalar,
+        vector,
+        matrix,
+        tensor,
+    )
     model_URWF = URWF(
         cuda_flag,
         n,
@@ -161,9 +200,48 @@ def train_URWF(
         matrix,
         tensor,
     )
+    err_RWF_train = np.zeros(EPOCHS)
+    err_RWF_test = np.zeros(EPOCHS)
+    # print("sambalam")
+    for epoch in range(EPOCHS):
+        data = torch.cat([x, y], dim=0)
+        s_ratio = 0.1
+        n = x.shape[0]
+        N_total = x.shape[1]
+        N_test = int(s_ratio * N_total)
+        # m = y.shape[0]
+        suffled_indices = torch.randperm(N_total)
+        train_indices = suffled_indices[:-N_test]
+        data_train = data[:, train_indices]
+        test_indices = suffled_indices[-N_test:]
+        data_test = data[:, test_indices]
+        train_loader = DataLoader(data_train.T, batch_size=2)
+        test_loader = DataLoader(data_test.T, batch_size=2)
+        running_loss = 0.0
+        last_loss = 0.0
+        # n = x.shape[0]
+        x_split_test = data_test[0:n, :]
+        # print(x_split_test.shape)
+        y_split_test = torch.abs(data_test[n:, :])
+        # print("datenkar:", y_split_test.shape)
+        x_pred_test, distance_test = model_URWF(x_split_test, y_split_test, Amatrix)
+        # print(x_pred_test.shape, distance_test.shape)
+        loss_test = model_URWF._distance(x_pred_test, x_split_test)
+        err_RWF_test[epoch] = loss_test.mean()
+        # loss_test_untrained = model_RWF._distance(x_pred_test, x_split_test)
+        # err_RWF_test[epoch_index] = loss_test_untrained.mean()
+        x_split_train = data_train[0:n, :]
+        y_split_train = torch.abs(data_train[n:, :])
+        x_pred_train, distance_train = model_URWF(x_split_train, y_split_train, Amatrix)
+        # print(x_pred_train.shape, distance_train.shape)
+        loss_train = model_URWF._distance(x_split_train, x_pred_train)
+        err_RWF_train[epoch] = loss_train.mean()
+
     err_URWF_train = np.zeros(EPOCHS)
     err_URWF_test = np.zeros(EPOCHS)
+
     optimizer = torch.optim.Adam(model_URWF.parameters(), amsgrad=True, lr=LR)
+    # print("ishtekhbakhen")
 
     def train_one_epoch_URWF(epoch_index, tb_writer):
         data = torch.cat([x, y], dim=0)
@@ -190,12 +268,16 @@ def train_URWF(
         # print(x_pred_test.shape, distance_test.shape)
         loss_test = model_URWF._distance(x_pred_test, x_split_test)
         err_URWF_test[epoch_index] = loss_test.mean()
+        # loss_test_untrained = model_RWF._distance(x_pred_test, x_split_test)
+        # err_RWF_test[epoch_index] = loss_test_untrained.mean()
         x_split_train = data_train[0:n, :]
         y_split_train = torch.abs(data_train[n:, :])
         x_pred_train, distance_train = model_URWF(x_split_train, y_split_train, Amatrix)
         # print(x_pred_train.shape, distance_train.shape)
         loss_train = model_URWF._distance(x_split_train, x_pred_train)
         err_URWF_train[epoch_index] = loss_train.mean()
+        # loss_train_untrained = model_RWF._distance(x_split_train, x_pred_train)
+        # err_RWF_train[epoch_index] = loss_train_untrained.mean()
         # print(
         #     "  loss_train_URWF {} loss_test_URWF: {}".format(
         #         loss_train.mean(), loss_test.mean()
@@ -250,7 +332,9 @@ def train_URWF(
     x_val_pred = model_URWF(x_val, y_val, Amatrix)
     # err_URWF_knot = model_URWF._distance(x_val, x_val_pred)
     # print(err_URWF_knot)
+    # print("nakhtabam")
     for epoch in range(EPOCHS):
+        # print("epoch", epoch)
         # print("EPOCH_URWF {}:".format(epoch_number + 1))
         # Make sure gradient tracking is on, and do a pass over the data
         model_URWF.train(True)
@@ -283,41 +367,116 @@ def train_URWF(
         writer.flush()
 
         # Track best performance, and save the model's state
-        if avg_vloss < best_vloss:
-            best_vloss = avg_vloss
-            model_path = "URWF_{}_{}".format(timestamp, epoch_number)
-            # torch.save(model.state_dict(), model_path)
-            torch.save(model_URWF.state_dict(), "./models_URWF/" + str(model_path))
-
+        # if avg_vloss < best_vloss:
+        # best_vloss = avg_vloss
+        # model_path = "URWF_{}_{}".format(timestamp, epoch_number)
+        # torch.save(model.state_dict(), model_path)
+        # torch.save(model_URWF.state_dict(), "./models_URWF/" + str(model_path))
+        # print(err_URWF_train[epoch])
+        # print(err_URWF_test[epoch])
+        # print(err_RWF_train[epoch])
+        # print(err_RWF_test[epoch])
+        # print("##########")
         epoch_number += 1
 
     x_val_pred, distance_val = model_URWF(x_val, y_val, Amatrix)
     err_URWF_inf = distance_val
     # print(err_URWF_inf.mean())
     # return err_URWF_inf.mean()
+    # print(err_URWF_train)
+    # print(err_URWF_test)
+    # print(err_RWF_train)
+    # print(err_RWF_test)
+    # plt.rcParams["text.usetex"] = True
+    # plt.style.use("ggplot")
+
+    # plt.figure(1)
+    plt.semilogy(
+        np.arange(0, EPOCHS),
+        err_URWF_train,
+        color="red",
+        label="During Training on Train Data",
+    )
+    plt.semilogy(
+        np.arange(0, EPOCHS),
+        err_URWF_test,
+        color="blue",
+        label="During Training on Test Data",
+    )
+    plt.semilogy(
+        np.arange(0, EPOCHS),
+        err_RWF_train,
+        color="orange",
+        label="Untrained Model on Train Data",
+    )
+    plt.semilogy(
+        np.arange(0, EPOCHS),
+        err_RWF_test,
+        color="green",
+        label="Untrained Model on Test Data",
+    )
+    plt.xlabel("Epochs")
+    plt.ylabel("Average Error")
+    plt.title("Average Error vs Epochs")
+    plt.legend()
+    fig = plt.gcf()
+    tikzplotlib_fix_ncols(fig)
+    # plt.title("Coded Diffaction Pattern Combined with \n Wirtinger Flow on the Sat Phone Image")
+    # plt.grid(True, which="both")
+    plt.grid(True)
+    import tikzplotlib
+
+    # plt.grid(True)
+    # plt.show()
+
+    plt.savefig(
+        "./models_URWF/Scenario = "
+        + str(SCENARIO)
+        + ", Layers = "
+        + str(T)
+        + ", Epochs = "
+        + str(EPOCHS)
+        + ", LR = "
+        + str(LR)
+        + ", Learning_Process.pdf"
+    )
+    tikzplotlib.save(
+        "./models_URWF/Scenario = "
+        + str(SCENARIO)
+        + ", Layers = "
+        + str(T)
+        + ", Epochs = "
+        + str(EPOCHS)
+        + ", LR = "
+        + str(LR)
+        + ", Learning_Process"
+        + ".tex"
+    )
+    plt.close()
+    # print("finished")
     return err_URWF_test[-1]
 
 
-for scenario in [0, 1, 2, 3, 4, 5]:
-    x, x_val, Amatrix, y, y_val = generating.gen_x_Amatrix_y(
-        n=64, m=10 * 64, N=100, cplx_flag=1, cuda_flag=1
-    )
-    err = train_URWF(
-        x,
-        x_val,
-        Amatrix,
-        y,
-        y_val,
-        SCENARIO=scenario,
-        LR=1e-3,
-        cuda_flag=1,
-        cplx_flag=1,
-        npower_iter=30,
-        T=5,
-        scalar=True,
-        vector=True,
-        matrix=True,
-        tensor=True,
-        EPOCHS=2,
-    )
-    # print("test error is:", err)
+# for scenario in [0, 1, 2, 3, 4, 5, 6, 7]:
+#     x, x_val, Amatrix, y, y_val = generating.gen_x_Amatrix_y(
+#         n=64, m=10 * 64, N=100, cplx_flag=1, cuda_flag=1
+#     )
+#     err = train_URWF(
+#         x,
+#         x_val,
+#         Amatrix,
+#         y,
+#         y_val,
+#         SCENARIO=scenario,
+#         LR=1e-3,
+#         cuda_flag=1,
+#         cplx_flag=1,
+#         npower_iter=30,
+#         T=30,
+#         scalar=True,
+#         vector=True,
+#         matrix=True,
+#         tensor=True,
+#         EPOCHS=50,
+#     )
+# print("test error is:", err)
diff --git a/train_UWF.py b/train_UWF.py
new file mode 100644
index 0000000000000000000000000000000000000000..8e2e2e50ecc7900e7bbbb2ce76b9f93d4ac2f054
--- /dev/null
+++ b/train_UWF.py
@@ -0,0 +1,520 @@
+import torch
+import numpy as np
+import matplotlib.pyplot as plt
+import math
+import generating
+import tikzplotlib
+from torch.utils.data import DataLoader
+from datetime import datetime
+from torch.utils.data import DataLoader, SubsetRandomSampler
+
+from torch.utils.tensorboard import SummaryWriter
+
+
+def tikzplotlib_fix_ncols(obj):
+    """
+    workaround for matplotlib 3.6 renamed legend's _ncol to _ncols, which breaks tikzplotlib
+    """
+    if hasattr(obj, "_ncols"):
+        obj._ncol = obj._ncols
+    for child in obj.get_children():
+        tikzplotlib_fix_ncols(child)
+
+
+class UWF(torch.nn.Module):
+    def __init__(
+        self,
+        cuda_flag,
+        n,
+        cplx_flag,
+        npower_iter,
+        tau0,
+        T,
+        scenario,
+        scalar,
+        vector,
+        matrix,
+        tensor,
+    ):
+        super().__init__()
+        self.cuda_flag = cuda_flag
+        if torch.cuda.is_available() & self.cuda_flag:
+            self.DEVICE = "cuda"
+        else:
+            self.DEVICE = "cpu"
+        self.cplx_flag = cplx_flag
+        self.npower_iter = npower_iter
+        self.tau0 = tau0
+        self.T = T
+        self.scenario = scenario
+
+        # self.DEVICE = DEVICE
+        self.unit_scalar = torch.nn.Parameter(
+            torch.ones(1, device=self.DEVICE), requires_grad=scalar
+        )
+        self.unit_vector = torch.nn.Parameter(
+            torch.ones(T + 1, device=self.DEVICE), requires_grad=vector
+        )
+        self.unit_matrix = torch.nn.Parameter(
+            torch.eye(n, device=self.DEVICE), requires_grad=matrix
+        )
+        Tensor = torch.zeros(T + 1, n, n, device=self.DEVICE)
+        for i in range(T + 1):
+            for k in range(n):
+                Tensor[i][k][k] = 1.0
+        self.unit_tensor = torch.nn.Parameter(Tensor, requires_grad=tensor)
+
+    def forward(self, x, y, Amatrix):
+        mu = 0.8 + 0.4 * self.cplx_flag
+        m = y.shape[0]
+        z0 = torch.randn(x.shape, dtype=x.dtype, device=self.DEVICE)
+        z0 = z0 / torch.linalg.norm(z0, dim=0)
+        # tmp_r = math.sqrt(math.pi / 2) * (1 - self.cplx_flag)
+        # tmp_c = math.sqrt(4 / math.pi) * self.cplx_flag
+        # y_m = torch.sum(y, dim=0) / m
+
+        # ytr = torch.multiply(y, (torch.abs(y) > 1 * norm_est))  # truncated version
+
+        for i in range(self.npower_iter):
+            A_z0 = self._A(Amatrix, z0)
+            mul = torch.multiply(y, A_z0)
+            z0 = self._Ah(Amatrix, mul)
+            z0 = z0 / torch.linalg.norm(z0, dim=0)
+        norm_est = math.sqrt(torch.sum(y)) / m
+        z0 = norm_est * z0
+        z = z0
+        normest = torch.sqrt(torch.sum(y**2, dim=0) / m)
+        for t in range(self.T + 1):
+            yz = self._A(Amatrix, z)
+            mul_diff = torch.multiply(abs(yz) ** 2 - y**2, yz)
+            grad = 1 / m * self._Ah(Amatrix, mul_diff)
+            tau = min(1 - math.exp(-i / self.tau0), 0.2)
+            mu = tau
+            # z = z - tau / normest**2 * grad
+            second_divide = 1 / normest**2 * grad
+            # ang_tr = torch.angle(torch.trace(x.H * z))
+            # diff = x - torch.exp(-1j * ang_tr) * z
+            # norm = torch.linalg.norm(x)
+            # err = torch.linalg.norm(diff) / norm
+            # print(err)
+            # yz_abs = torch.abs(yz)
+            # first_divide = torch.divide(yz, yz_abs)
+            # first_multi = torch.multiply(y, first_divide)
+            # sub = yz - first_multi
+            # second_multi = self._Ah(Amatrix, sub)
+            # second_divide = torch.divide(second_multi, m)
+
+            if self.scenario == 0:
+                z = z - mu * self.unit_scalar * second_divide
+            elif self.scenario == 1:
+                z = z - mu * self.unit_vector[t] * second_divide
+            elif self.scenario == 2:
+                z = z - mu * torch.linalg.matmul(
+                    self.unit_matrix.cfloat(), second_divide.cfloat()
+                )
+            elif self.scenario == 3:
+                z = z - mu * torch.linalg.matmul(
+                    (
+                        torch.linalg.matmul(self.unit_matrix.T, self.unit_matrix)
+                    ).cfloat(),
+                    second_divide.cfloat(),
+                )
+            elif self.scenario == 4:
+                z = z - mu * self.unit_vector[t] * torch.linalg.matmul(
+                    self.unit_matrix.cfloat(), second_divide.cfloat()
+                )
+            elif self.scenario == 5:
+                z = z - mu * self.unit_vector[t] * torch.linalg.matmul(
+                    (
+                        torch.linalg.matmul(self.unit_matrix.T, self.unit_matrix)
+                    ).cfloat(),
+                    second_divide.cfloat(),
+                )
+            elif self.scenario == 6:
+                z = z - mu * torch.linalg.matmul(
+                    self.unit_tensor[t].cfloat(), second_divide.cfloat()
+                )
+            elif self.scenario == 7:
+                z = z - mu * torch.linalg.matmul(
+                    (
+                        torch.linalg.matmul(self.unit_tensor[t].T, self.unit_tensor[t])
+                    ).cfloat(),
+                    second_divide.cfloat(),
+                )
+
+        return z, self._distance(z, x)
+
+    def _A(self, Matrix, X):
+        return torch.linalg.matmul(Matrix, X)
+
+    def _Ah(self, Matrix, X):
+        return torch.linalg.matmul(Matrix.adjoint(), X)
+
+    def _distance(self, x_pred, x):
+        N_train = x.shape[1]
+        distance = torch.zeros(N_train, device=self.DEVICE)
+        for tt in range(N_train):
+            X_pred_f = torch.flatten(x_pred[:, tt])
+            X_f = torch.flatten(x[:, tt])
+            dot_prod = torch.dot(X_f.conj_physical(), X_pred_f)
+            angle = torch.angle(dot_prod)
+            X_f_norm = torch.linalg.norm(X_f)
+            X_pred_f_angle = torch.exp(-1j * angle) * X_pred_f
+            diff = X_f - X_pred_f_angle
+            distance[tt] = torch.linalg.norm(diff) / X_f_norm
+        return distance
+
+
+def train_UWF(
+    x,
+    x_val,
+    Amatrix,
+    y,
+    y_val,
+    LR,
+    cuda_flag,
+    cplx_flag,
+    npower_iter,
+    tau0,
+    T,
+    SCENARIO,
+    scalar,
+    vector,
+    matrix,
+    tensor,
+    EPOCHS,
+):
+    # print("dalam")
+    if torch.cuda.is_available() & cuda_flag:
+        DEVICE = "cuda"
+    else:
+        DEVICE = "cpu"
+    n = x.shape[0]
+    model_WF = UWF(
+        cuda_flag,
+        n,
+        cplx_flag,
+        npower_iter,
+        tau0,
+        T,
+        SCENARIO,
+        scalar,
+        vector,
+        matrix,
+        tensor,
+    )
+    model_UWF = UWF(
+        cuda_flag,
+        n,
+        cplx_flag,
+        npower_iter,
+        tau0,
+        T,
+        SCENARIO,
+        scalar,
+        vector,
+        matrix,
+        tensor,
+    )
+    err_WF_train = np.zeros(EPOCHS)
+    err_WF_test = np.zeros(EPOCHS)
+    # print("sambalam")
+    for epoch in range(EPOCHS):
+        data = torch.cat([x, y], dim=0)
+        s_ratio = 0.1
+        n = x.shape[0]
+        N_total = x.shape[1]
+        N_test = int(s_ratio * N_total)
+        # m = y.shape[0]
+        suffled_indices = torch.randperm(N_total)
+        train_indices = suffled_indices[:-N_test]
+        data_train = data[:, train_indices]
+        test_indices = suffled_indices[-N_test:]
+        data_test = data[:, test_indices]
+        train_loader = DataLoader(data_train.T, batch_size=2)
+        test_loader = DataLoader(data_test.T, batch_size=2)
+        running_loss = 0.0
+        last_loss = 0.0
+        # n = x.shape[0]
+        x_split_test = data_test[0:n, :]
+        # print(x_split_test.shape)
+        y_split_test = torch.abs(data_test[n:, :])
+        # print("datenkar:", y_split_test.shape)
+        x_pred_test, distance_test = model_UWF(x_split_test, y_split_test, Amatrix)
+        # print(x_pred_test.shape, distance_test.shape)
+        loss_test = model_UWF._distance(x_pred_test, x_split_test)
+        err_WF_test[epoch] = loss_test.mean()
+        # loss_test_untrained = model_RWF._distance(x_pred_test, x_split_test)
+        # err_RWF_test[epoch_index] = loss_test_untrained.mean()
+        x_split_train = data_train[0:n, :]
+        y_split_train = torch.abs(data_train[n:, :])
+        x_pred_train, distance_train = model_UWF(x_split_train, y_split_train, Amatrix)
+        # print(x_pred_train.shape, distance_train.shape)
+        loss_train = model_UWF._distance(x_split_train, x_pred_train)
+        err_WF_train[epoch] = loss_train.mean()
+
+    err_UWF_train = np.zeros(EPOCHS)
+    err_UWF_test = np.zeros(EPOCHS)
+
+    optimizer = torch.optim.Adam(model_UWF.parameters(), amsgrad=True, lr=LR)
+    # print("ishtekhbakhen")
+
+    def train_one_epoch_UWF(epoch_index, tb_writer):
+        data = torch.cat([x, y], dim=0)
+        s_ratio = 0.1
+        n = x.shape[0]
+        N_total = x.shape[1]
+        N_test = int(s_ratio * N_total)
+        # m = y.shape[0]
+        suffled_indices = torch.randperm(N_total)
+        train_indices = suffled_indices[:-N_test]
+        data_train = data[:, train_indices]
+        test_indices = suffled_indices[-N_test:]
+        data_test = data[:, test_indices]
+        train_loader = DataLoader(data_train.T, batch_size=2)
+        test_loader = DataLoader(data_test.T, batch_size=2)
+        running_loss = 0.0
+        last_loss = 0.0
+        # n = x.shape[0]
+        x_split_test = data_test[0:n, :]
+        # print(x_split_test.shape)
+        y_split_test = torch.abs(data_test[n:, :])
+        # print("datenkar:", y_split_test.shape)
+        x_pred_test, distance_test = model_UWF(x_split_test, y_split_test, Amatrix)
+        # print(x_pred_test.shape, distance_test.shape)
+        loss_test = model_UWF._distance(x_pred_test, x_split_test)
+        err_UWF_test[epoch_index] = loss_test.mean()
+        # loss_test_untrained = model_RWF._distance(x_pred_test, x_split_test)
+        # err_RWF_test[epoch_index] = loss_test_untrained.mean()
+        x_split_train = data_train[0:n, :]
+        y_split_train = torch.abs(data_train[n:, :])
+        x_pred_train, distance_train = model_UWF(x_split_train, y_split_train, Amatrix)
+        # print(x_pred_train.shape, distance_train.shape)
+        loss_train = model_UWF._distance(x_split_train, x_pred_train)
+        err_UWF_train[epoch_index] = loss_train.mean()
+        # loss_train_untrained = model_RWF._distance(x_split_train, x_pred_train)
+        # err_RWF_train[epoch_index] = loss_train_untrained.mean()
+        # print(
+        #     "  loss_train_URWF {} loss_test_URWF: {}".format(
+        #         loss_train.mean(), loss_test.mean()
+        #     )
+        # )
+        # Here, we use enumerate(training_loader) instead of
+        # iter(training_loader) so that we can track the batch
+        # index and do some intra-epoch reporting
+        for i, data_train in enumerate(train_loader):
+            # Every data instance is an input + label pair
+            # inputs, labels = data
+
+            x_train = data_train[:, 0:n].T
+            # print("DATEN,:", x_split.shape)
+            # y_split = data[:, params.n:].to(dtype=torch.double)
+            # y_split = torch.abs(data_train[n:, :])
+
+            y_train = torch.abs(data_train[:, n:]).T
+            # print("DATEN,:", y_train.shape)
+            # y_split = torch.abs(data_train[:, n:])
+
+            # Zero your gradients for every batch!
+            optimizer.zero_grad()
+
+            # Make predictions for this batch
+            # print(x_train.shape, y_train.shape)
+
+            x_train_pred, distance_train = model_UWF(x_train, y_train, Amatrix)
+            # Compute the loss and its gradients
+            loss = model_UWF._distance(x_train_pred, x_train).mean()
+            loss.backward()
+
+            # Adjust learning weights
+            optimizer.step()
+
+            # Gather data and report
+            running_loss += loss.item()
+            # if i % 1000 == 999:
+            last_loss = running_loss / 1000  # loss per batch
+
+            # print('  batch {} loss: {}'.format(i + 1, last_loss))
+            tb_x = epoch_index * len(train_loader) + i + 1
+            tb_writer.add_scalar("Loss/train", last_loss, tb_x)
+            running_loss = 0.0
+
+        return last_loss, data_train, data_test
+
+    timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
+    writer = SummaryWriter("runs/fashion_trainer_{}".format(timestamp))
+    epoch_number = 0
+    best_vloss = 1_000_000.0
+    x_val_pred = model_UWF(x_val, y_val, Amatrix)
+    # err_URWF_knot = model_URWF._distance(x_val, x_val_pred)
+    # print(err_URWF_knot)
+    # print("nakhtabam")
+    for epoch in range(EPOCHS):
+        # print("epoch", epoch)
+        # print("EPOCH_URWF {}:".format(epoch_number + 1))
+        # Make sure gradient tracking is on, and do a pass over the data
+        model_UWF.train(True)
+        avg_loss, data_train, data_test = train_one_epoch_UWF(epoch_number, writer)
+        train_loader = DataLoader(data_train.T, batch_size=2)
+        test_loader = DataLoader(data_test.T, batch_size=2)
+        running_vloss = 0.0
+        # Set the model to evaluation mode, disabling dropout and using population
+        # statistics for batch normalization.
+        model_UWF.eval()
+        # Disable gradient computation and reduce memory consumption.
+        with torch.no_grad():
+            for i, vdata in enumerate(test_loader):
+                x_split_test = data_test[0:n, :]
+                y_split_test = torch.abs(data_test[n:, :])
+                x_pred, vloss = model_UWF(x_split_test, y_split_test, Amatrix)
+                # vloss = model_URWF._distance(x_pred, x_split_test).mean()
+                running_vloss += vloss.mean()
+
+        avg_vloss = running_vloss / (i + 1)
+        # print('LOSS train {} valid {}'.format(avg_loss, avg_vloss))
+
+        # Log the running loss averaged per batch
+        # for both training and validation
+        writer.add_scalars(
+            "Training vs. Validation Loss",
+            {"Training": avg_loss, "Validation": avg_vloss},
+            epoch_number + 1,
+        )
+        writer.flush()
+
+        # Track best performance, and save the model's state
+        # if avg_vloss < best_vloss:
+        # best_vloss = avg_vloss
+        # model_path = "URWF_{}_{}".format(timestamp, epoch_number)
+        # torch.save(model.state_dict(), model_path)
+        # torch.save(model_URWF.state_dict(), "./models_URWF/" + str(model_path))
+        # print(err_URWF_train[epoch])
+        # print(err_URWF_test[epoch])
+        # print(err_RWF_train[epoch])
+        # print(err_RWF_test[epoch])
+        # print("##########")
+        epoch_number += 1
+
+    x_val_pred, distance_val = model_UWF(x_val, y_val, Amatrix)
+    err_UWF_inf = distance_val
+    # print(err_URWF_inf.mean())
+    # return err_URWF_inf.mean()
+    # print(err_URWF_train)
+    # print(err_URWF_test)
+    # print(err_RWF_train)
+    # print(err_RWF_test)
+    # plt.rcParams["text.usetex"] = True
+    # plt.style.use("ggplot")
+
+    # plt.figure(1)
+    plt.semilogy(
+        np.arange(0, EPOCHS),
+        err_UWF_train,
+        color="red",
+        label="During Training on Train Data",
+    )
+    plt.semilogy(
+        np.arange(0, EPOCHS),
+        err_UWF_test,
+        color="blue",
+        label="During Training on Test Data",
+    )
+    plt.semilogy(
+        np.arange(0, EPOCHS),
+        err_WF_train,
+        color="orange",
+        label="Untrained Model on Train Data",
+    )
+    plt.semilogy(
+        np.arange(0, EPOCHS),
+        err_WF_test,
+        color="green",
+        label="Untrained Model on Test Data",
+    )
+    plt.xlabel("Epochs")
+    plt.ylabel("Average Error")
+    plt.title("Average Error vs Epochs")
+    plt.legend()
+    fig = plt.gcf()
+    tikzplotlib_fix_ncols(fig)
+    # plt.title("Coded Diffaction Pattern Combined with \n Wirtinger Flow on the Sat Phone Image")
+    # plt.grid(True, which="both")
+    plt.grid(True)
+    import tikzplotlib
+
+    # plt.grid(True)
+    # plt.show()
+
+    plt.savefig(
+        "./models_UWF/Scenario = "
+        + str(SCENARIO)
+        + ", Layers = "
+        + str(T)
+        + ", Epochs = "
+        + str(EPOCHS)
+        + ", LR = "
+        + str(LR)
+        + ", Learning_Process.pdf"
+    )
+    tikzplotlib.save(
+        "./models_UWF/Scenario = "
+        + str(SCENARIO)
+        + ", Layers = "
+        + str(T)
+        + ", Epochs = "
+        + str(EPOCHS)
+        + ", LR = "
+        + str(LR)
+        + ", Learning_Process"
+        + ".tex"
+    )
+    plt.close()
+    # print("finished")
+    return err_UWF_test[-1]
+
+
+# for scenario in [0, 1, 2, 3, 4, 5, 6, 7]:
+#     x, x_val, Amatrix, y, y_val = generating.gen_x_Amatrix_y(
+#         n=64, m=10 * 64, N=100, cplx_flag=1, cuda_flag=1
+#     )
+#     err = train_UWF(
+#         x,
+#         x_val,
+#         Amatrix,
+#         y,
+#         y_val,
+#         SCENARIO=scenario,
+#         LR=1e-3,
+#         cuda_flag=1,
+#         cplx_flag=1,
+#         npower_iter=30,
+#         tau0=100,
+#         T=160,
+#         scalar=True,
+#         vector=True,
+#         matrix=True,
+#         tensor=True,
+#         EPOCHS=50,
+#     )
+# print("test error is:", err)
+# for scenario in [0, 1, 2, 3, 4, 5, 6, 7]:
+#     x, x_val, Amatrix, y, y_val = generating.gen_x_Amatrix_y(
+#         n=64, m=10 * 64, N=100, cplx_flag=1, cuda_flag=1
+#     )
+#     model_UWF = UWF(
+#         n=64,
+#         cuda_flag=1,
+#         cplx_flag=1,
+#         npower_iter=30,
+#         tau0=100,
+#         T=800,
+#         scenario=scenario,
+#         scalar=True,
+#         vector=True,
+#         matrix=True,
+#         tensor=True,
+#     )
+#     x_pred, distance = model_UWF(x, y, Amatrix)
+#     err = distance.mean()
+#     print("err", err)
+#