File size: 2,954 Bytes
18ce00c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/bin/bash
export PATH=/venv/main/bin:/usr/local/bin:/usr/bin:/bin
export PYTHONDONTWRITEBYTECODE=1
export CUDA_VISIBLE_DEVICES=0
export WORK=/dev/shm/eval
export QUIP_DIR=$WORK/quip-sharp
export HF_DATASETS_TRUST_REMOTE_CODE=1
export PYTORCH_CUDA_ALLOC_CONF=expandable_segments:True

log() { echo "[$(date '+%Y-%m-%d %H:%M:%S')] $*"; }

# 1. Wait for MC run (PID 9529) to finish
log "Waiting for MC run (PID 9529) to finish..."
while ps -p 9529 > /dev/null 2>&1; do
    sleep 60
done
log "MC run finished!"

# 2. Print MC results
log "============================================"
log "  MC RESULTS"
log "============================================"
python3 $WORK/print_results.py $WORK/results_mc/full_results.json 2>&1 || log "MC results not found"

# 3. Run generative tasks (with optimized generate: max_gen_toks=64, newline stop)
log "============================================"
log "  STARTING: Generative core tasks (6 regex)"
log "============================================"
cd $WORK/lm-evaluation-harness

python $WORK/eval_polish_quip.py \
    --model_path $WORK/model \
    --tokenizer speakleash/Bielik-11B-v2.3-Instruct \
    --output_dir $WORK/results_gen \
    --num_fewshot 5 \
    --batch_size 8 \
    --tasks polemo2_in polemo2_out polish_8tags_regex polish_cbd_regex \
        polish_ppc_regex polish_psc_regex \
    2>&1

log "Generative tasks done!"
log "============================================"
log "  GENERATIVE RESULTS"
log "============================================"
python3 $WORK/print_results.py $WORK/results_gen/full_results.json 2>&1 || log "Gen results not found"

# 4. Run remaining tasks
log "============================================"
log "  STARTING: Remaining tasks (13)"
log "============================================"

python $WORK/eval_polish_quip.py \
    --model_path $WORK/model \
    --tokenizer speakleash/Bielik-11B-v2.3-Instruct \
    --output_dir $WORK/results_remaining \
    --num_fewshot 5 \
    --batch_size 8 \
    --tasks polish_belebele_mc polish_belebele_regex \
        polish_dyk_multiple_choice polish_dyk_regex \
        polish_klej_ner_multiple_choice polish_klej_ner_regex \
        polish_polqa_reranking_multiple_choice polish_polqa_open_book polish_polqa_closed_book \
        polish_poquad_open_book \
        polish_eq_bench polish_eq_bench_first_turn \
        polish_poleval2018_task3_test_10k \
    2>&1

log "Remaining tasks done!"
log "============================================"
log "  REMAINING RESULTS"
log "============================================"
python3 $WORK/print_results.py $WORK/results_remaining/full_results.json 2>&1 || log "Remaining results not found"

log "============================================"
log "  ALL COMPLETE"
log "============================================"
log "MC:        $WORK/results_mc/full_results.json"
log "Generative:$WORK/results_gen/full_results.json"
log "Remaining: $WORK/results_remaining/full_results.json"