I have a question: a have neural net file model.py
with some parameters set. I have sent it to the slurm queue. When doing squeue
I can see that it is still waiting because there are other jobs running. Now, I want to send another variation of model.py
but changing the params. Do you know if I change it right now, will it change the params of the first instance sent to the queue?
I mean: suppose that the first instance has param = 20. I send it to the queue. Still not running. Now, I change it to param = 50 and send the second instance to the machine. Will the first have param = 20 or param = 50 ?
Thank you in advance!