Unverified Commit fd627278 authored by Isaac Poulton's avatar Isaac Poulton Committed by GitHub
Browse files

Sort hypernetworks

parent 81973091
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -224,7 +224,7 @@ def list_hypernetworks(path):
        # Prevent a hypothetical "None.pt" from being listed.
        if name != "None":
            res[name] = filename
    return res
    return dict(sorted(res.items()))


def load_hypernetwork(filename):