-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathrun_debug.sh
executable file
·36 lines (32 loc) · 999 Bytes
/
run_debug.sh
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
# Please make sure to set the correct environment variables in the .env file before running this script
#
# If you are using Azure AI Foundry, you can set the following environment variables in the .env file:
# AZURE_AI_INFERENCE_KEY=<your-ai-inference-key>
# AZURE_AI_INFERENCE_ENDPOINT=https://<your-endpoint-name>.services.ai.azure.com/models
# AZURE_AI_DEPLOYMENT_NAME=Phi-4
### CLIcK
python click_main.py \
--is_debug True \
--model_provider azureai \
--batch_size 10 \
--max_tokens 256 \
--temperature 0.01 \
--template_type chat
### HAERAE 1.0
python haerae_main.py \
--is_debug True \
--model_provider azureai \
--batch_size 10 \
--max_tokens 256 \
--temperature 0.01 \
--template_type chat
## KMMLU
# python kmmlu_main.py \
# --is_debug True \
# --model_provider azureai \
# --batch_size 10 \
# --max_tokens 256 \
# --temperature 0.01 \
# --template_type chat \
# --is_hard False \
# --use_few_shot False