VigneshDark commited on
Commit
5626d1e
·
1 Parent(s): fa7dacc

fix: added description

Browse files
Files changed (3) hide show
  1. .gitignore +2 -0
  2. __pycache__/helper.cpython-312.pyc +0 -0
  3. app.py +4 -4
.gitignore CHANGED
@@ -1 +1,3 @@
1
  /.venv
 
 
 
1
  /.venv
2
+ /__pycache__/
3
+ /.mypy_cache/
__pycache__/helper.cpython-312.pyc DELETED
Binary file (3.25 kB)
 
app.py CHANGED
@@ -64,16 +64,16 @@ with gr.Blocks() as app:
64
  maximum=30,
65
  value=0,
66
  step=1,
67
- label="Alpha (dB)",
68
- info="Adjust alpha from -30 to +30 dB"
69
  )
70
  beta_slider = gr.Slider(
71
  minimum=-30,
72
  maximum=30,
73
  value=0,
74
  step=1,
75
- label="Beta (dB)",
76
- info="Adjust beta from -30 to +30 dB"
77
  )
78
 
79
  # Submit button
 
64
  maximum=30,
65
  value=0,
66
  step=1,
67
+ label="Alpha (Speech Control)",
68
+ info="Controls speech loudness: Left (-30) reduces volume, Right (+30) increases volume" # noqa: E501
69
  )
70
  beta_slider = gr.Slider(
71
  minimum=-30,
72
  maximum=30,
73
  value=0,
74
  step=1,
75
+ label="Beta (Noise Control)",
76
+ info="Controls noise loudness: Left (-30) reduces volume, Right (+30) increases volume" # noqa: E501
77
  )
78
 
79
  # Submit button