-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheval_graph.sh
More file actions
executable file
·41 lines (34 loc) · 904 Bytes
/
eval_graph.sh
File metadata and controls
executable file
·41 lines (34 loc) · 904 Bytes
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
export
# --- 1. Get model and dataset name from command line ---
BASE_MODEL=$1 # qwen_3b
DATASET=$2 # cora
MP=$3 # mp layer
C_RATIO=0.1 # compression ratio
###### setting for model ######
echo "Eval on model: $BASE_MODEL with MP layer = $MP"
echo "Eval on dataset: $DATASET"
OUTPUT_DIR="./${BASE_MODEL}/"
###### setting for model ######
BASE_MODEL_DIR="./output/finetune/${BASE_MODEL}/${DATASET}/model/"
###### setting for dataset ######
case "$DATASET" in
cora)
DATASET="academic_cora_v1"
;;
*)
echo "Error: Unknown dataset '$DATASET'!"
;;
esac
###### setting for dataset ######
python -m eval_graph_model \
--data_root /eval_data \
--output_dir $OUTPUT_DIR \
--model_name_or_path $BASE_MODEL_DIR \
--max_length 15500 \
--enable_beacon True \
--local_window 3500 \
--memory_stride 1024 \
--mp_layer_num $MP \
--c_ratio $C_RATIO \
--beacon_param q k v o \
--eval_data $DATASET