run_gradio.sh 8.5 KB
Newer Older
gushiqiao's avatar
gushiqiao committed
1
2
#!/bin/bash

gushiqiao's avatar
gushiqiao committed
3
4
# Lightx2v Gradio Demo Startup Script
# Supports both Image-to-Video (i2v) and Text-to-Video (t2v) modes
gushiqiao's avatar
gushiqiao committed
5

gushiqiao's avatar
gushiqiao committed
6
7
8
9
10
11
12
13
14
15
16
# ==================== Configuration Area ====================
# ⚠️  Important: Please modify the following paths according to your actual environment

# 🚨 Storage Performance Tips 🚨
# 💾 Strongly recommend storing model files on SSD solid-state drives!
# 📈 SSD can significantly improve model loading speed and inference performance
# 🐌 Using mechanical hard drives (HDD) may cause slow model loading and affect overall experience


# Lightx2v project root directory path
# Example: /home/user/lightx2v or /data/video_gen/lightx2v
gushiqiao's avatar
gushiqiao committed
17
lightx2v_path=/data/video_gen/LightX2V
gushiqiao's avatar
gushiqiao committed
18
19
20
# Model path configuration
# Image-to-video model path (for i2v tasks)
# Example: /path/to/Wan2.1-I2V-14B-720P-Lightx2v
gushiqiao's avatar
gushiqiao committed
21
i2v_model_path=/wan_0726/wan_test/fp8
gushiqiao's avatar
gushiqiao committed
22
23
24
25
26

# Text-to-video model path (for t2v tasks)
# Example: /path/to/Wan2.1-T2V-1.3B
t2v_model_path=/path/to/Wan2.1-T2V-1.3B

gushiqiao's avatar
gushiqiao committed
27
28
29
30
# Model size configuration
# Default model size (14b, 1.3b)
model_size="14b"

gushiqiao's avatar
gushiqiao committed
31
32
33
34
# Model class configuration
# Default model class (wan2.1, wan2.1_distill)
model_cls="wan2.1"

gushiqiao's avatar
gushiqiao committed
35
36
37
38
# Server configuration
server_name="0.0.0.0"
server_port=8032

gushiqiao's avatar
gushiqiao committed
39
40
41
# Output directory configuration
output_dir="./outputs"

gushiqiao's avatar
gushiqiao committed
42
43
44
45
46
# GPU configuration
gpu_id=0

# ==================== Environment Variables Setup ====================
export CUDA_VISIBLE_DEVICES=$gpu_id
gushiqiao's avatar
gushiqiao committed
47
48
49
50
51
export CUDA_LAUNCH_BLOCKING=1
export PYTHONPATH=${lightx2v_path}:$PYTHONPATH
export ENABLE_PROFILING_DEBUG=true
export PYTORCH_CUDA_ALLOC_CONF=expandable_segments:True

gushiqiao's avatar
gushiqiao committed
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# ==================== Parameter Parsing ====================
# Default task type
task="i2v"
# Default interface language
lang="zh"

# 解析命令行参数
while [[ $# -gt 0 ]]; do
    case $1 in
        --task)
            task="$2"
            shift 2
            ;;
        --lang)
            lang="$2"
            shift 2
            ;;
        --port)
            server_port="$2"
            shift 2
            ;;
        --gpu)
            gpu_id="$2"
            export CUDA_VISIBLE_DEVICES=$gpu_id
            shift 2
            ;;
gushiqiao's avatar
gushiqiao committed
78
79
80
81
        --model_size)
            model_size="$2"
            shift 2
            ;;
gushiqiao's avatar
gushiqiao committed
82
83
84
85
        --model_cls)
            model_cls="$2"
            shift 2
            ;;
gushiqiao's avatar
gushiqiao committed
86
87
88
89
        --output_dir)
            output_dir="$2"
            shift 2
            ;;
gushiqiao's avatar
gushiqiao committed
90
91
92
93
94
95
96
97
98
99
100
101
102
103
        --help)
            echo "🎬 Lightx2v Gradio Demo Startup Script"
            echo "=========================================="
            echo "Usage: $0 [options]"
            echo ""
            echo "📋 Available options:"
            echo "  --task i2v|t2v    Task type (default: i2v)"
            echo "                     i2v: Image-to-video generation"
            echo "                     t2v: Text-to-video generation"
            echo "  --lang zh|en      Interface language (default: zh)"
            echo "                     zh: Chinese interface"
            echo "                     en: English interface"
            echo "  --port PORT       Server port (default: 8032)"
            echo "  --gpu GPU_ID      GPU device ID (default: 0)"
gushiqiao's avatar
gushiqiao committed
104
105
106
107
            echo "  --model_size MODEL_SIZE"
            echo "                     Model size (default: 14b)"
            echo "                     14b: 14 billion parameters model"
            echo "                     1.3b: 1.3 billion parameters model"
gushiqiao's avatar
gushiqiao committed
108
109
110
111
112
113
114
                echo "  --model_cls MODEL_CLASS"
    echo "                     Model class (default: wan2.1)"
    echo "                     wan2.1: Standard model variant"
    echo "                     wan2.1_distill: Distilled model variant for faster inference"
    echo "  --output_dir OUTPUT_DIR"
    echo "                     Output video save directory (default: ./saved_videos)"
    echo "  --help            Show this help message"
gushiqiao's avatar
gushiqiao committed
115
116
117
118
119
120
            echo ""
            echo "🚀 Usage examples:"
            echo "  $0                                    # Default startup for image-to-video mode"
            echo "  $0 --task i2v --lang zh --port 8032   # Start with specified parameters"
            echo "  $0 --task t2v --lang en --port 7860   # Text-to-video with English interface"
            echo "  $0 --task i2v --gpu 1 --port 8032     # Use GPU 1"
gushiqiao's avatar
gushiqiao committed
121
122
123
124
                echo "  $0 --task t2v --model_size 1.3b       # Use 1.3B model"
    echo "  $0 --task i2v --model_size 14b        # Use 14B model"
    echo "  $0 --task i2v --model_cls wan2.1_distill  # Use distilled model"
    echo "  $0 --task i2v --output_dir ./custom_output  # Use custom output directory"
gushiqiao's avatar
gushiqiao committed
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
            echo ""
            echo "📝 Notes:"
            echo "  - Edit script to configure model paths before first use"
            echo "  - Ensure required Python dependencies are installed"
            echo "  - Recommended to use GPU with 8GB+ VRAM"
            echo "  - 🚨 Strongly recommend storing models on SSD for better performance"
            exit 0
            ;;
        *)
            echo "Unknown parameter: $1"
            echo "Use --help to see help information"
            exit 1
            ;;
    esac
done

# ==================== Parameter Validation ====================
if [[ "$task" != "i2v" && "$task" != "t2v" ]]; then
    echo "Error: Task type must be 'i2v' or 't2v'"
    exit 1
fi

if [[ "$lang" != "zh" && "$lang" != "en" ]]; then
    echo "Error: Language must be 'zh' or 'en'"
    exit 1
fi

gushiqiao's avatar
gushiqiao committed
152
153
154
155
156
157
# Validate model size
if [[ "$model_size" != "14b" && "$model_size" != "1.3b" ]]; then
    echo "Error: Model size must be '14b' or '1.3b'"
    exit 1
fi

gushiqiao's avatar
gushiqiao committed
158
159
160
161
162
163
# Validate model class
if [[ "$model_cls" != "wan2.1" && "$model_cls" != "wan2.1_distill" ]]; then
    echo "Error: Model class must be 'wan2.1' or 'wan2.1_distill'"
    exit 1
fi

gushiqiao's avatar
gushiqiao committed
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
# Select model path based on task type
if [[ "$task" == "i2v" ]]; then
    model_path=$i2v_model_path
    echo "🎬 Starting Image-to-Video mode"
else
    model_path=$t2v_model_path
    echo "🎬 Starting Text-to-Video mode"
fi

# Check if model path exists
if [[ ! -d "$model_path" ]]; then
    echo "❌ Error: Model path does not exist"
    echo "📁 Path: $model_path"
    echo "🔧 Solutions:"
    echo "  1. Check model path configuration in script"
    echo "  2. Ensure model files are properly downloaded"
    echo "  3. Verify path permissions are correct"
    echo "  4. 💾 Recommend storing models on SSD for faster loading"
    exit 1
fi

# Select demo file based on language
if [[ "$lang" == "zh" ]]; then
    demo_file="gradio_demo_zh.py"
    echo "🌏 Using Chinese interface"
else
    demo_file="gradio_demo.py"
    echo "🌏 Using English interface"
fi

# Check if demo file exists
if [[ ! -f "$demo_file" ]]; then
    echo "❌ Error: Demo file does not exist"
    echo "📄 File: $demo_file"
    echo "🔧 Solutions:"
    echo "  1. Ensure script is run in the correct directory"
    echo "  2. Check if file has been renamed or moved"
    echo "  3. Re-clone or download project files"
    exit 1
fi

# ==================== System Information Display ====================
echo "=========================================="
echo "🚀 Lightx2v Gradio Demo Starting..."
echo "=========================================="
echo "📁 Project path: $lightx2v_path"
echo "🤖 Model path: $model_path"
echo "🎯 Task type: $task"
gushiqiao's avatar
gushiqiao committed
212
echo "🤖 Model size: $model_size"
gushiqiao's avatar
gushiqiao committed
213
echo "🤖 Model class: $model_cls"
gushiqiao's avatar
gushiqiao committed
214
215
216
echo "🌏 Interface language: $lang"
echo "🖥️  GPU device: $gpu_id"
echo "🌐 Server address: $server_name:$server_port"
gushiqiao's avatar
gushiqiao committed
217
echo "📁 Output directory: $output_dir"
gushiqiao's avatar
gushiqiao committed
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
echo "=========================================="

# Display system resource information
echo "💻 System resource information:"
free -h | grep -E "Mem|Swap"
echo ""

# Display GPU information
if command -v nvidia-smi &> /dev/null; then
    echo "🎮 GPU information:"
    nvidia-smi --query-gpu=name,memory.total,memory.free --format=csv,noheader,nounits | head -1
    echo ""
fi

# ==================== Start Demo ====================
echo "🎬 Starting Gradio demo..."
echo "📱 Please access in browser: http://$server_name:$server_port"
echo "⏹️  Press Ctrl+C to stop service"
gushiqiao's avatar
gushiqiao committed
236
echo "🔄 First startup may take several minutes to load resources..."
gushiqiao's avatar
gushiqiao committed
237
238
239
240
241
echo "=========================================="

# Start Python demo
python $demo_file \
    --model_path "$model_path" \
gushiqiao's avatar
gushiqiao committed
242
    --model_cls "$model_cls" \
gushiqiao's avatar
gushiqiao committed
243
244
    --task "$task" \
    --server_name "$server_name" \
gushiqiao's avatar
gushiqiao committed
245
    --server_port "$server_port" \
gushiqiao's avatar
gushiqiao committed
246
247
    --model_size "$model_size" \
    --output_dir "$output_dir"
gushiqiao's avatar
gushiqiao committed
248

gushiqiao's avatar
gushiqiao committed
249
250
251
252
253
# Display final system resource usage
echo ""
echo "=========================================="
echo "📊 Final system resource usage:"
free -h | grep -E "Mem|Swap"