Views
No views yet
| Quant Level | Perplexity Score |
|---|---|
| 8.0 | 10.8767 |
| 7.0 | 10.8824 |
| 6.0 | 10.8876 |
| 5.0 | 10.9341 |
| 4.0 | 11.1726 |
| 3.5 | 11.4286 |
| 3.0 | 12.3887 |
| 2.75 | 12.8403 |
| 2.5 | 13.6661 |
1#!/bin/bash
2
3source ~/miniconda3/etc/profile.d/conda.sh
4conda activate exllamav2
5
6# Set the model name and bit size
7MODEL_NAME="CodeQwen1.5-7B"
8BIT_PRECISIONS=(8.0 7.0 6.0 5.0 4.0 3.5 3.0 2.75 2.5)
9
10# Print the markdown table header
11echo "| Quant Level | Perplexity Score |"
12echo "|-------------|------------------|"
13
14for BIT_PRECISION in "${BIT_PRECISIONS[@]}"
15do
16 MODEL_DIR="models/${MODEL_NAME}_exl2_${BIT_PRECISION}bpw"
17 if [ -d "$MODEL_DIR" ]; then
18 output=$(python test_inference.py -m "$MODEL_DIR" -gs 17,24 -ed data/wikitext/wikitext-2-v1.parquet)
19 score=$(echo "$output" | grep -oP 'Evaluation perplexity: \K[\d.]+')
20 echo "| $BIT_PRECISION | $score |"
21 fi
22done1#!/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="CodeQwen1.5-7B"
9
10# Define variables
11MODEL_DIR="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=(8.0 7.0 6.0 5.0 4.0 3.5 3.0 2.75 2.5)
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