Skip to content

Instantly share code, notes, and snippets.

@jeasinema
Created December 14, 2017 02:46
Show Gist options
  • Save jeasinema/20cfe77aa792f9286ec4d2f12321e107 to your computer and use it in GitHub Desktop.
Save jeasinema/20cfe77aa792f9286ec4d2f12321e107 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# -*- coding:UTF-8 -*-
# File Name : train_hook.py
# Purpose :
# Creation Date : 14-12-2017
# Last Modified : 2017-12-14 Thu 00:59:06
# Created By : Jeasine Ma [jeasinema[at]gmail[dot]com]
import os
import argparse
import pickle
import numpy as np
def check_if_should_pause(tag):
fname = tag + '.pause.pkl'
ret = False
if os.path.exists(fname):
s = pickle.load(open(tag + '.pause.pkl', 'rb'))
if s == 'pause':
ret = True
os.remove(fname)
return ret
def pause_trainer():
fname = args.tag + '.pause.pkl'
if os.path.exists(fname):
os.remove(fname)
pickle.dump('pause', open(fname, 'wb'))
if __name__ == '__main__':
parser = argparse.ArgumentParser(description='training')
parser.add_argument('--tag', type=str, nargs='?', default='default')
args = parser.parse_args()
pause_trainer()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment