Update app.py
Browse files
app.py
CHANGED
@@ -22,7 +22,7 @@ seeds_dict = dict() # activation -> list of seeds
|
|
22 |
neurons_dict = dict() # (activation, seed) -> list of neuron counts
|
23 |
|
24 |
for act in os.listdir(os.path.join(unzip_dir, 'Models')):
|
25 |
-
act_path = os.path.join(unzip_dir, act)
|
26 |
if os.path.isdir(act_path) and not act.startswith("linear_models"):
|
27 |
activations.append(act)
|
28 |
seeds = []
|
|
|
22 |
neurons_dict = dict() # (activation, seed) -> list of neuron counts
|
23 |
|
24 |
for act in os.listdir(os.path.join(unzip_dir, 'Models')):
|
25 |
+
act_path = os.path.join(os.path.join(unzip_dir, 'Models'), act)
|
26 |
if os.path.isdir(act_path) and not act.startswith("linear_models"):
|
27 |
activations.append(act)
|
28 |
seeds = []
|