We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80965bb commit 02d5bb5Copy full SHA for 02d5bb5
koboldcpp.py
@@ -723,7 +723,7 @@ def read_data(datatype):
723
return
724
725
fsize = os.path.getsize(file_path)
726
- if fsize < (chunk_size + 256): #ignore files under file size limit
+ if fsize < 512: #ignore files under file size limit
727
print("This GGUF file is too small to analyze. Please ensure it is valid.")
728
729
with open(file_path, 'rb') as f:
0 commit comments