13 lines
397 B
Bash
13 lines
397 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
export CUDA_VISIBLE_DEVICES=0
|
|
source /opt/miniconda/etc/profile.d/conda.sh
|
|
conda activate focallora
|
|
|
|
python ./Ident_IH_01_attn_sep.py \
|
|
--model ../../models/Qwen3-4B \
|
|
--dataset-sep ../2-1_head_identification_preprocess/head_ident_scoring_dataset/SEP/sep_head_ident.jsonl \
|
|
--output-dir head_scoring/llama31-8b_injsq_dev \
|
|
--split-size 1000 \
|
|
# --max-data 5
|