forked from Ksuriuri/index-tts-vllm
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconvert_hf_format.sh
More file actions
39 lines (30 loc) · 1.08 KB
/
Copy pathconvert_hf_format.sh
File metadata and controls
39 lines (30 loc) · 1.08 KB
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
#!/bin/bash
set -e # Exit on any error
MODEL_DIR=$1
GPT_DIR="$MODEL_DIR/gpt"
if [ -z "$MODEL_DIR" ]; then
echo "Error: MODEL_DIR not provided"
exit 1
fi
echo "Creating gpt directory: $GPT_DIR"
mkdir -p "$GPT_DIR"
echo "Downloading tokenizer files..."
if ! wget https://modelscope.cn/models/openai-community/gpt2/resolve/master/tokenizer.json -O "$GPT_DIR/tokenizer.json"; then
echo "Error: Failed to download tokenizer.json"
exit 1
fi
if ! wget https://modelscope.cn/models/openai-community/gpt2/resolve/master/tokenizer_config.json -O "$GPT_DIR/tokenizer_config.json"; then
echo "Error: Failed to download tokenizer_config.json"
exit 1
fi
if ! wget https://modelscope.cn/models/Qwen/Qwen2-Audio-7B-Instruct/resolve/master/preprocessor_config.json -O "$GPT_DIR/preprocessor_config.json"; then
echo "Error: Failed to download tokenizer_config.json"
exit 1
fi
echo "Converting model format..."
if ! python convert_hf_format.py --model_dir "$MODEL_DIR"; then
echo "Error: Model conversion failed"
exit 1
fi
echo "All operations completed successfully!"
exit 0