Update README.md
Browse files
README.md
CHANGED
@@ -125,7 +125,7 @@ Now join the three `split` files, which can be done with the following Python co
|
|
125 |
import glob
|
126 |
|
127 |
# Get the list of all files matching the pattern
|
128 |
-
files = glob.glob('gptq_model-4bit--1g.JOINBEFOREUSE.split-*.safetensors')
|
129 |
|
130 |
# Open the output file in binary write mode
|
131 |
with open('gptq_model-4bit--1g.safetensors', 'wb') as outfile:
|
|
|
125 |
import glob
|
126 |
|
127 |
# Get the list of all files matching the pattern
|
128 |
+
files = sorted(glob.glob('gptq_model-4bit--1g.JOINBEFOREUSE.split-*.safetensors'))
|
129 |
|
130 |
# Open the output file in binary write mode
|
131 |
with open('gptq_model-4bit--1g.safetensors', 'wb') as outfile:
|