#!/bin/bash # Run Experiment 2-A for Qwen2.5-VL # Run this WITHOUT any conda environment (conda deactivate multiple times) 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: Qwen2.5-VL" echo "==============================================" echo "Output directory: $OUTPUT_DIR" echo "Samples per category: $SAMPLES" echo "" python "$SCRIPT_DIR/exp2a_embedding_analysis.py" \ --model_type qwen \ --scales vanilla 80k 400k 800k 2m \ --output_dir "$OUTPUT_DIR" \ --samples_per_category $SAMPLES \ --seed $SEED echo "" echo "Qwen experiments completed!" echo "Results saved to: $OUTPUT_DIR/qwen"