Are you sure you want to delete this access key?
ckpt_root_dir
)experiment_name
)experiment_name
for transparency when updating your training recipe.experiment_name
has its individual run
directory, ensuring no overwrites.run_id
)run
.run_id
is generated for every training, regardless of identical parameters.experiment_name
maintain distinct logs and checkpoints, courtesy of their separate run directories.<ckpt_root_dir>
│
├── <experiment_name>
│ │
│ ├─── <run_dir>
│ │ ├─ ckpt_best.pth # Best performance during validation
│ │ ├─ ckpt_latest.pth # End of the most recent epoch
│ │ ├─ average_model.pth # Averaged over specified epochs
│ │ ├─ ckpt_epoch_*.pth # Checkpoints from certain epochs (e.g., epoch 10, 15)
│ │ ├─ events.out.tfevents.* # Tensorflow run artifacts
│ │ └─ log_<timestamp>.txt # Trainer logs of that particular run
│ │
│ └─── <other_run_dir>
│ └─ ...
│
└─── <other_experiment_name>
│
├─── <run_dir>
│ └─ ...
│
└─── <another_run_dir>
└─ ...
Manually navigate using <ckpt_root_dir>/<experiment_name>/<run_dir>
or utilize the following programmatic approach:
from super_gradients.common.environment.checkpoints_dir_utils import get_checkpoints_dir_path
checkpoints_dir_path = get_checkpoints_dir_path(experiment_name="<experiment_name>", run_id="<run_id>")
from super_gradients.common.environment.checkpoints_dir_utils import get_latest_run_id
run_id = get_latest_run_id(experiment_name="<experiment_name>")
Combine with the above utility to fetch the path of the latest run directory.
Next Steps:
Press p or to see the previous file or, n or to see the next file
Browsing data directories saved to S3 is possible with DAGsHub. Let's configure your repository to easily display your data in the context of any commit!
super-gradients is now integrated with AWS S3!
Are you sure you want to delete this access key?
Browsing data directories saved to Google Cloud Storage is possible with DAGsHub. Let's configure your repository to easily display your data in the context of any commit!
super-gradients is now integrated with Google Cloud Storage!
Are you sure you want to delete this access key?
Browsing data directories saved to Azure Cloud Storage is possible with DAGsHub. Let's configure your repository to easily display your data in the context of any commit!
super-gradients is now integrated with Azure Cloud Storage!
Are you sure you want to delete this access key?
Browsing data directories saved to S3 compatible storage is possible with DAGsHub. Let's configure your repository to easily display your data in the context of any commit!
super-gradients is now integrated with your S3 compatible storage!
Are you sure you want to delete this access key?