robinwitch commited on
Commit
6ee5c65
·
1 Parent(s): 26b89f7
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -274,7 +274,7 @@ class BaseTrainer(object):
274
  except:
275
  print("debug9: return fail, use pickle load file")
276
  with open("tmp_file", "rb") as tmp_file:
277
- net_out = pickle.loads(tmp_file)
278
  tar_pose = net_out['tar_pose']
279
  rec_pose = net_out['rec_pose']
280
  tar_exps = net_out['tar_exps']
 
274
  except:
275
  print("debug9: return fail, use pickle load file")
276
  with open("tmp_file", "rb") as tmp_file:
277
+ net_out = pickle.load(tmp_file)
278
  tar_pose = net_out['tar_pose']
279
  rec_pose = net_out['rec_pose']
280
  tar_exps = net_out['tar_exps']