allow loading embeddings from subdirectories
This commit is contained in:
parent
310b71f669
commit
81133d4168
1 changed files with 11 additions and 10 deletions
|
@ -149,9 +149,10 @@ class EmbeddingDatabase:
|
||||||
else:
|
else:
|
||||||
self.skipped_embeddings[name] = embedding
|
self.skipped_embeddings[name] = embedding
|
||||||
|
|
||||||
for fn in os.listdir(self.embeddings_dir):
|
for root, dirs, fns in os.walk(self.embeddings_dir):
|
||||||
|
for fn in fns:
|
||||||
try:
|
try:
|
||||||
fullfn = os.path.join(self.embeddings_dir, fn)
|
fullfn = os.path.join(root, fn)
|
||||||
|
|
||||||
if os.stat(fullfn).st_size == 0:
|
if os.stat(fullfn).st_size == 0:
|
||||||
continue
|
continue
|
||||||
|
|
Loading…
Reference in a new issue