Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -259,7 +259,7 @@ def get_script_args_info(exclude_args=None):
|
|
| 259 |
{
|
| 260 |
"name": "--learning_rate_warmup_fraction",
|
| 261 |
"type": "slider",
|
| 262 |
-
"default": 0.
|
| 263 |
"min": 0.0,
|
| 264 |
"max": 1.0,
|
| 265 |
"step": 0.01,
|
|
@@ -295,13 +295,6 @@ def get_script_args_info(exclude_args=None):
|
|
| 295 |
"precision": 0,
|
| 296 |
"help": "Number of rounds to choose the starting height map from.",
|
| 297 |
},
|
| 298 |
-
{
|
| 299 |
-
"name": "--num_init_cluster_layers",
|
| 300 |
-
"type": "number",
|
| 301 |
-
"default": 35,
|
| 302 |
-
"precision": 0,
|
| 303 |
-
"help": "Number of layer clusters for the initialization.",
|
| 304 |
-
},
|
| 305 |
]
|
| 306 |
return [arg for arg in all_args_info if arg["name"] not in exclude_args]
|
| 307 |
|
|
|
|
| 259 |
{
|
| 260 |
"name": "--learning_rate_warmup_fraction",
|
| 261 |
"type": "slider",
|
| 262 |
+
"default": 0.2,
|
| 263 |
"min": 0.0,
|
| 264 |
"max": 1.0,
|
| 265 |
"step": 0.01,
|
|
|
|
| 295 |
"precision": 0,
|
| 296 |
"help": "Number of rounds to choose the starting height map from.",
|
| 297 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 298 |
]
|
| 299 |
return [arg for arg in all_args_info if arg["name"] not in exclude_args]
|
| 300 |
|