mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 12:32:30 +08:00
Fix:limit random sampling range in check_embedding (#11337)
### What problem does this PR solve? issue: [#11319](https://github.com/infiniflow/ragflow/issues/11319) change: limit random sampling range in check_embedding ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
@ -819,7 +819,7 @@ def check_embedding():
|
|||||||
return []
|
return []
|
||||||
|
|
||||||
n = min(n, total)
|
n = min(n, total)
|
||||||
offsets = sorted(random.sample(range(total), n))
|
offsets = sorted(random.sample(range(min(total,1000)), n))
|
||||||
out = []
|
out = []
|
||||||
|
|
||||||
for off in offsets:
|
for off in offsets:
|
||||||
|
|||||||
Reference in New Issue
Block a user