File size: 348 Bytes
8eb4303
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
from options.test_options import TestOptions
import pickle as pkl

# run in the <geneface> root dir!
opt = TestOptions().parse()  # get test options
opt.name='facerecon'
opt.epoch=20
opt.bfm_folder='deep_3drecon/BFM/'
opt.checkpoints_dir='deep_3drecon/checkpoints/'

with open("deep_3drecon/reconstructor_opt.pkl", 'wb') as f:
    pkl.dump(opt, f)