SachinSaud's picture
Upload folder using huggingface_hub
6ac44e1 verified
#!/usr/bin/env python
import os
# Import existing plotting and visualization utilities
from plot_lr import plot_training_loss
from plot_eval import plot_evaluation_loss
def main():
exp_dir = '/home/gd_user1/AnK/project_PINN/Project_Fatigue/Fatigue_Life/output_shaft_extra/regDGCNN_seg/shaft_low_extra2_/EXPERIMENT_multi_feat_exponent_k60_500_shaft_low_extra2/Thu-Oct--9-10-57-48-2025'
epoch = 500
# Plot training loss & learning rate
plot_training_loss(exp_dir, epoch)
# Plot evaluation loss
plot_evaluation_loss(exp_dir, epoch)
if __name__ == '__main__':
main()