Spaces:
Running on Zero
Running on Zero
forgot comma
Browse files
app.py
CHANGED
|
@@ -113,7 +113,7 @@ with gr.Blocks(title="RFD3 Test") as demo:
|
|
| 113 |
if config_ready is None or scaffold_ready is None:
|
| 114 |
return None, None
|
| 115 |
if config_ready == "upload" and scaffold_ready == "no_input":
|
| 116 |
-
gen_directory, gen_results = generation_with_input_config(config_upload, scaffold_upload num_batches, num_designs_per_batch, extra_args)
|
| 117 |
return gen_directory, gen_results
|
| 118 |
if config_ready=="upload" and scaffold_ready=="upload":
|
| 119 |
gen_directory, gen_results = generation_with_input_config(config_upload, scaffold_upload, num_batches, num_designs_per_batch, extra_args)
|
|
|
|
| 113 |
if config_ready is None or scaffold_ready is None:
|
| 114 |
return None, None
|
| 115 |
if config_ready == "upload" and scaffold_ready == "no_input":
|
| 116 |
+
gen_directory, gen_results = generation_with_input_config(config_upload, scaffold_upload, num_batches, num_designs_per_batch, extra_args)
|
| 117 |
return gen_directory, gen_results
|
| 118 |
if config_ready=="upload" and scaffold_ready=="upload":
|
| 119 |
gen_directory, gen_results = generation_with_input_config(config_upload, scaffold_upload, num_batches, num_designs_per_batch, extra_args)
|