Views
No views yet
| Quant Level | Perplexity Score |
|---|---|
| 7.0 | 4.5859 |
| 6.0 | 4.6252 |
| 5.5 | 4.6493 |
| 5.0 | 4.6937 |
| 4.5 | 4.8029 |
| 4.0 | 4.9372 |
| 3.5 | 5.1336 |
| 3.25 | 5.3636 |
| 3.0 | 5.5468 |
| 2.75 | 5.8255 |
| 2.5 | 6.3362 |
| 2.25 | 7.7763 |
1#!/bin/bash
2
3# Activate the conda environment
4source ~/miniconda3/etc/profile.d/conda.sh
5conda activate exllamav2
6
7DATA_SET=/root/wikitext/wikitext-2-v1.parquet
8
9# Set the model name and bit size
10MODEL_NAME="WizardLM-2-8x22B"
11BIT_PRECISIONS=(6.0 5.5 5.0 4.5 4.0 3.5 3.25 3.0 2.75 2.5 2.25)
12
13# Print the markdown table header
14echo "| Quant Level | Perplexity Score |"
15echo "|-------------|------------------|"
16
17for BIT_PRECISION in "${BIT_PRECISIONS[@]}"
18do
19 LOCAL_FOLDER="/root/models/${MODEL_NAME}_exl2_${BIT_PRECISION}bpw"
20 REMOTE_FOLDER="Dracones/${MODEL_NAME}_exl2_${BIT_PRECISION}bpw"
21
22 if [ ! -d "$LOCAL_FOLDER" ]; then
23 huggingface-cli download --local-dir-use-symlinks=False --local-dir "${LOCAL_FOLDER}" "${REMOTE_FOLDER}" >> /root/download.log 2>&1
24 fi
25
26 output=$(python test_inference.py -m "$LOCAL_FOLDER" -gs 40,40,40,40 -ed "$DATA_SET")
27 score=$(echo "$output" | grep -oP 'Evaluation perplexity: \K[\d.]+')
28 echo "| $BIT_PRECISION | $score |"
29 # rm -rf "${LOCAL_FOLDER}"
30done1#!/bin/bash
2
3# Activate the conda environment
4source ~/miniconda3/etc/profile.d/conda.sh
5conda activate exllamav2
6
7# Set the model name and bit size
8MODEL_NAME="WizardLM-2-8x22B"
9
10# Define variables
11MODEL_DIR="/mnt/storage/models/$MODEL_NAME"
12OUTPUT_DIR="exl2_$MODEL_NAME"
13MEASUREMENT_FILE="measurements/$MODEL_NAME.json"
14
15# Create the measurement file if needed
16if [ ! -f "$MEASUREMENT_FILE" ]; then
17 echo "Creating $MEASUREMENT_FILE"
18 # Create directories
19 if [ -d "$OUTPUT_DIR" ]; then
20 rm -r "$OUTPUT_DIR"
21 fi
22 mkdir "$OUTPUT_DIR"
23
24 python convert.py -i $MODEL_DIR -o $OUTPUT_DIR -nr -om $MEASUREMENT_FILE
25fi
26
27# Choose one of the below. Either create a single quant for testing or a batch of them.
28# BIT_PRECISIONS=(2.25)
29BIT_PRECISIONS=(5.0 4.5 4.0 3.5 3.0 2.75 2.5 2.25)
30
31for BIT_PRECISION in "${BIT_PRECISIONS[@]}"
32do
33 CONVERTED_FOLDER="models/${MODEL_NAME}_exl2_${BIT_PRECISION}bpw"
34
35 # If it doesn't already exist, make the quant
36 if [ ! -d "$CONVERTED_FOLDER" ]; then
37
38 echo "Creating $CONVERTED_FOLDER"
39
40 # Create directories
41 if [ -d "$OUTPUT_DIR" ]; then
42 rm -r "$OUTPUT_DIR"
43 fi
44 mkdir "$OUTPUT_DIR"
45 mkdir "$CONVERTED_FOLDER"
46
47 # Run conversion commands
48 python convert.py -i $MODEL_DIR -o $OUTPUT_DIR -nr -m $MEASUREMENT_FILE -b $BIT_PRECISION -cf $CONVERTED_FOLDER
49
50 fi
51done