adrienbanse commited on
Commit
56b18b9
1 Parent(s): 2abdf04

fix: order of mixes parameters

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -148,7 +148,7 @@ def model_total_params_fn(model_name: str, n_param: float):
148
 
149
  def mix_fn(country_code: str, mix_adpe: float, mix_pe: float, mix_gwp: float):
150
  if country_code == CUSTOM:
151
- return mix_gwp, mix_adpe, mix_pe
152
  return find_mix(country_code)
153
 
154
  with gr.Blocks() as demo:
 
148
 
149
  def mix_fn(country_code: str, mix_adpe: float, mix_pe: float, mix_gwp: float):
150
  if country_code == CUSTOM:
151
+ return mix_adpe, mix_pe, mix_gwp
152
  return find_mix(country_code)
153
 
154
  with gr.Blocks() as demo: