File size: 824 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 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"