File size: 801 Bytes
3404d44 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | #!/bin/bash
# Run Experiment 2-A for Molmo
# Run this with: conda activate molmo && ./run_exp2a_molmo.sh
set -e
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
OUTPUT_DIR="/data/shared/Qwen/experiments/exp2a_results"
SAMPLES=${1:-50} # Default 50 samples per category
SEED=42
echo "=============================================="
echo "Experiment 2-A: Molmo"
echo "=============================================="
echo "Output directory: $OUTPUT_DIR"
echo "Samples per category: $SAMPLES"
echo ""
python "$SCRIPT_DIR/exp2a_embedding_analysis.py" \
--model_type molmo \
--scales vanilla 80k 400k 800k \
--output_dir "$OUTPUT_DIR" \
--samples_per_category $SAMPLES \
--seed $SEED
echo ""
echo "Molmo experiments completed!"
echo "Results saved to: $OUTPUT_DIR/molmo"
|