Commit d64ff424 authored by bluelovers's avatar bluelovers

remove changes in textual_inversion.py

parent fd672a79
......@@ -129,7 +129,7 @@ class EmbeddingDatabase:
if first_id not in self.ids_lookup:
self.ids_lookup[first_id] = []
self.ids_lookup[first_id] = sorted(self.ids_lookup[first_id] + [(ids, embedding)], key=lambda x: (len(x[0]), x[0].casefold()), reverse=True)
self.ids_lookup[first_id] = sorted(self.ids_lookup[first_id] + [(ids, embedding)], key=lambda x: len(x[0]), reverse=True)
return embedding
......@@ -196,7 +196,7 @@ class EmbeddingDatabase:
return
for root, dirs, fns in os.walk(embdir.path, followlinks=True):
for fn in sorted(fns, key=str.lower):
for fn in fns:
try:
fullfn = os.path.join(root, fn)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment