Consider the following stage:
stages:
stage_1:
cmd: python train.py
deps:
- train.py
params:
- stage_1.dropout
What steps must I follow to safely rename the stage and its dependency names? For example, stage_1
to new_stage
and train.py
to new_train.py
.
NOTE: I have run a few experiments already with this stage.