in neuron-explainer/neuron_explainer/activations/activations.py [0:0]
def get_sorted_layers(dataset_path: str) -> List[str]:
"""
Return the indices of all layers in this dataset, in ascending numerical order, as strings.
"""
return [
str(x)
for x in sorted(
[int(x) for x in bf.listdir(bf.join(dataset_path, "neurons")) if x.isnumeric()]
)
]