Skip to content

Add scripts to automate evaluation on llm-jp-eval v1.3.1 #24

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions evaluation/installers/llm-jp-eval-v1.3.1/scripts/cron.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
#!/bin/bash

# This script is intended to be run as a cron job to evaluate new checkpoints.
# Usage:
# bash cron.sh <checkpoint_glob_pattern> <log_file>

set -eux

# Get the path to the evaluation script
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
SCRIPT_PATH="${SCRIPT_DIR}/run_llm-jp-eval.sh"

# Arguments
CHECKPOINT_GLOB_PATTERN=$1
LOG_FILE=$2

# Create log file if it doesn't exist
touch "$LOG_FILE"

for checkpoint_path in $CHECKPOINT_GLOB_PATTERN; do
# Skip if the checkpoint has already been evaluated
if grep -qx $checkpoint_path $LOG_FILE; then
continue
fi

# Log the checkpoint path
# NOTE: This is done before evaluation to avoid re-evaluating the same checkpoint
echo $checkpoint_path >> $LOG_FILE

# Evaluate the checkpoint
echo "Evaluating checkpoint $checkpoint_path"
wandb_run_name=$(basename $checkpoint_path)
sbatch $SCRIPT_PATH $checkpoint_path $wandb_run_name
done