File size: 1,516 Bytes
8f1a330
 
 
 
 
 
 
 
 
 
 
 
 
 
 
886e3cc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
#!/bin/sh

BASEDIR=$(dirname "$0")
cd $BASEDIR
echo Current Directory:
pwd

nvidia-smi
uname -a
cat /etc/os-release
lscpu
grep MemTotal /proc/meminfo

pip install -r requirements.txt

# Evaluating Models (from Smallest to Largest) for the MS MARCO Dataset
./eval_modules/eval-hf_v2.sh google gemma-1.1-2b-it true

./scripts/eval-hf_v2.sh microsoft Phi-3-mini-128k-instruct true

./eval_modules/eval-hf_v2.sh google gemma-1.1-7b-it true

./eval_modules/eval-hf_v2.sh mistralai Mistral-7B-Instruct-v0.2 true

./eval_modules/eval-hf_v2.sh meta-llama Llama-2-7b-chat-hf true

./eval_modules/eval-hf_v2.sh meta-llama Llama-2-13b-chat-hf true

./eval_modules/eval-hf_v2.sh meta-llama Llama-2-70b-chat-hf true

./eval_modules/eval-hf_v2.sh meta-llama Meta-Llama-3-8B-Instruct true

./eval_modules/eval-hf_v2.sh meta-llama Meta-Llama-3-70B-Instruct true

# Evaluating Models (from Smallest to Largest) for the WebQSP Dataset
./eval_modules/eval-hf_v2.sh google gemma-1.1-2b-it false

./scripts/eval-hf_v2.sh microsoft Phi-3-mini-128k-instruct false

./eval_modules/eval-hf_v2.sh google gemma-1.1-7b-it false

./eval_modules/eval-hf_v2.sh mistralai Mistral-7B-Instruct-v0.2 false

./eval_modules/eval-hf_v2.sh meta-llama Llama-2-7b-chat-hf false

./eval_modules/eval-hf_v2.sh meta-llama Llama-2-13b-chat-hf false

./eval_modules/eval-hf_v2.sh meta-llama Llama-2-70b-chat-hf false

./eval_modules/eval-hf_v2.sh meta-llama Meta-Llama-3-8B-Instruct false

./eval_modules/eval-hf_v2.sh meta-llama Meta-Llama-3-70B-Instruct false