diff --git a/.github/workflows/amd_workflow.yml b/.github/workflows/amd_workflow.yml index c6bf169..9dff331 100644 --- a/.github/workflows/amd_workflow.yml +++ b/.github/workflows/amd_workflow.yml @@ -92,15 +92,6 @@ jobs: cat training.log # Debug: show output fi - - name: Extract score - shell: bash - run: | - # Extract only the last occurrence of "score:" - score=$(grep -oP 'score:\s*\d+(\.\d+)?' training.log | tail -n 1 | awk '{print $2}') - - echo "Score extracted: $score" - echo "::set-output name=score::$score" - - name: Upload training artifacts uses: actions/upload-artifact@v4 if: always() diff --git a/.github/workflows/nvidia_workflow.yml b/.github/workflows/nvidia_workflow.yml index 7647e38..1d6a191 100644 --- a/.github/workflows/nvidia_workflow.yml +++ b/.github/workflows/nvidia_workflow.yml @@ -120,15 +120,6 @@ jobs: cat training.log # Debug: show output fi - - name: Extract score - shell: bash - run: | - # Extract only the last occurrence of "score:" - score=$(grep -oP 'score:\s*\d+(\.\d+)?' training.log | tail -n 1 | awk '{print $2}') - - echo "Score extracted: $score" - echo "::set-output name=score::$score" - - name: Upload training artifacts uses: actions/upload-artifact@v4 if: always()