Baraaqasem commited on
Commit
7a1a342
·
verified ·
1 Parent(s): e8cea11

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -7,9 +7,8 @@ ae = "WFVAEModel_D8_4x8x8"
7
  ae_path = "path/to/vae"
8
  caption_refiner = "path/to/refiner"
9
  text_encoder_name_1 = "path/to/text_enc"
10
- rescale_betas_zero_snr = "--rescale_betas_zero_snr"
11
 
12
- # تشغيل الأمر
13
  cmd = [
14
  "python", "-m", "opensora.serve.gradio_web_server",
15
  "--model_path", model_path,
@@ -17,7 +16,7 @@ cmd = [
17
  "--ae_path", ae_path,
18
  "--caption_refiner", caption_refiner,
19
  "--text_encoder_name_1", text_encoder_name_1,
20
- rescale_betas_zero_snr
21
  ]
22
 
23
  subprocess.run(cmd)
 
7
  ae_path = "path/to/vae"
8
  caption_refiner = "path/to/refiner"
9
  text_encoder_name_1 = "path/to/text_enc"
 
10
 
11
+ # تشغيل الأمر (بدون المعامل غير المدعوم)
12
  cmd = [
13
  "python", "-m", "opensora.serve.gradio_web_server",
14
  "--model_path", model_path,
 
16
  "--ae_path", ae_path,
17
  "--caption_refiner", caption_refiner,
18
  "--text_encoder_name_1", text_encoder_name_1,
19
+ # يمكنك إضافة المزيد من الخيارات المدعومة هنا
20
  ]
21
 
22
  subprocess.run(cmd)