File size: 358 Bytes
cb51fed |
1 2 3 4 5 6 7 8 9 10 |
import os
import shutil
if not os.path.exists('variables'):
os.makedirs('variables')
shutil.move('variables.data-00000-of-00001', 'variables')
shutil.move('variables.index', 'variables')
if not os.path.exists('tokenizer'):
os.makedirs('tokenizer')
shutil.move('tokenizer_config.json', 'tokeizer')
shutil.move('vocab.txt', 'tokenizer') |