TheBloke commited on
Commit
3dbc347
1 Parent(s): 5fbe47e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
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: