hey @Aayushhh ,
The reason for loss to not be lowering more is that either the model has reached it’s convergence or is stuck at any local minima , and as your are using very low learning rate , then it is also not able to come out of that local minima point.
What you can do to improve is,
- although we know that we are currently stuck at local minima , but we can try using more lower learning rate with increased number of iterations , this can help the model to come out of local minima.
- Try getting more data or improving your model by adding more layers or something else modifications.
- Try model hyper parameter tuning. ( means changing the number of nodes in each hidden layer and taking the best combinations that performs best. )
- Changing model optimizer
I hope these points may help you .
Thank You and happy Learning
.