Update app.py
Browse files
app.py
CHANGED
@@ -21,7 +21,7 @@ activations = []
|
|
21 |
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)
|
|
|
21 |
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)
|