kagle_util.py 9.9 KB
Newer Older
X
xiexionghang 已提交
1 2 3
"""
Util lib
"""
X
xiexionghang 已提交
4 5 6 7 8
import os
import sys
import time
import datetime
import numpy as np
X
xiexionghang 已提交
9
import kagle.kagle_fs as kagle_fs
X
xiexionghang 已提交
10 11 12
from paddle.fluid.incubate.fleet.parameter_server.pslib import fleet

def get_env_value(env_name):
X
xiexionghang 已提交
13 14 15
    """
    get os environment value
    """
X
xiexionghang 已提交
16 17
    return os.popen("echo -n ${" + env_name + "}").read().strip()

X
xiexionghang 已提交
18

X
xiexionghang 已提交
19
def now_time_str():
X
xiexionghang 已提交
20 21 22 23
    """
    get current format str_time
    """
    return "\n" + time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()) + "[0]:"
X
xiexionghang 已提交
24

X
xiexionghang 已提交
25

X
xiexionghang 已提交
26
def get_absolute_path(path, params):
X
xiexionghang 已提交
27 28
    """R
    """
X
xiexionghang 已提交
29 30 31 32 33 34 35 36 37
    if path.startswith('afs:') or path.startswith('hdfs:'):
        sub_path = path.split('fs:')[1]
        if ':' in sub_path: #such as afs://xxx:prot/xxxx
            return path
        elif 'fs_name' in params:
            return params['fs_name'] + sub_path
    else:
        return path

X
xiexionghang 已提交
38

X
xiexionghang 已提交
39
def make_datetime(date_str, fmt=None):
X
xiexionghang 已提交
40 41 42 43 44 45 46 47
    """
    create a datetime instance by date_string
    Args:
        date_str: such as 2020-01-14
        date_str_format: "%Y-%m-%d"
    Return:
        datetime 
    """
X
xiexionghang 已提交
48 49 50 51 52 53 54 55 56
    if fmt is None:
        if len(date_str) == 8: #%Y%m%d
            return datetime.datetime.strptime(date_str, '%Y%m%d')
        if len(date_str) == 12: #%Y%m%d%H%M
            return datetime.datetime.strptime(date_str, '%Y%m%d%H%M')
    return datetime.datetime.strptime(date_str, fmt)


def wroker_numric_opt(value, opt):
X
xiexionghang 已提交
57 58 59 60 61 62 63 64
    """
    numric count opt for workers
    Args:
        value: value for count
        opt: count operator, SUM/MAX/MIN/AVG
    Return:
        count result
    """
X
xiexionghang 已提交
65 66 67 68 69
    local_value = np.array([value])
    global_value = np.copy(local_value) * 0
    fleet._role_maker._node_type_comm.Allreduce(local_value, global_value, op=opt)
    return global_value[0]

X
xiexionghang 已提交
70

X
xiexionghang 已提交
71
def worker_numric_sum(value):
X
xiexionghang 已提交
72 73
    """R
    """
X
xiexionghang 已提交
74 75
    from mpi4py import MPI
    return wroker_numric_opt(value, MPI.SUM)
X
xiexionghang 已提交
76

X
xiexionghang 已提交
77

X
xiexionghang 已提交
78
def worker_numric_avg(value):
X
xiexionghang 已提交
79 80
    """R
    """
X
xiexionghang 已提交
81
    return worker_numric_sum(value) / fleet.worker_num()
X
xiexionghang 已提交
82

X
xiexionghang 已提交
83

X
xiexionghang 已提交
84
def worker_numric_min(value):
X
xiexionghang 已提交
85 86
    """R
    """
X
xiexionghang 已提交
87 88
    from mpi4py import MPI
    return wroker_numric_opt(value, MPI.MIN)
X
xiexionghang 已提交
89

X
xiexionghang 已提交
90

X
xiexionghang 已提交
91
def worker_numric_max(value):
X
xiexionghang 已提交
92 93
    """R
    """
X
xiexionghang 已提交
94 95 96 97 98
    from mpi4py import MPI
    return wroker_numric_opt(value, MPI.MAX)
    

def rank0_print(log_str):
X
xiexionghang 已提交
99 100
    """R
    """
X
xiexionghang 已提交
101 102
    print_log(log_str, {'master': True})

X
xiexionghang 已提交
103

X
xiexionghang 已提交
104
def print_log(log_str, params):
X
xiexionghang 已提交
105 106
    """R
    """
X
xiexionghang 已提交
107 108 109 110 111 112 113 114 115
    if params['master']:
        if fleet.worker_index() == 0:
            print(log_str)
            sys.stdout.flush()
    else:
        print(log_str)
    if 'stdout' in params:
        params['stdout'] += str(datetime.datetime.now()) + log_str
             
X
xiexionghang 已提交
116

X
xiexionghang 已提交
117
def print_cost(cost, params):
X
xiexionghang 已提交
118 119
    """R
    """
X
xiexionghang 已提交
120 121 122 123 124
    log_str = params['log_format'] % cost
    print_log(log_str, params) 
    return log_str
        

X
xiexionghang 已提交
125
class CostPrinter(object):
X
xiexionghang 已提交
126 127 128
    """
    For count cost time && print cost log
    """
X
xiexionghang 已提交
129
    def __init__(self, callback, callback_params):
X
xiexionghang 已提交
130 131
        """R
        """
X
xiexionghang 已提交
132 133 134 135
        self.reset(callback, callback_params)
        pass
        
    def __del__(self):
X
xiexionghang 已提交
136 137
        """R
        """
X
xiexionghang 已提交
138 139 140 141 142
        if not self._done:
            self.done()
        pass
        
    def reset(self, callback, callback_params):
X
xiexionghang 已提交
143 144
        """R
        """
X
xiexionghang 已提交
145 146 147 148 149 150 151
        self._done = False
        self._callback = callback
        self._callback_params = callback_params
        self._begin_time = time.time()
        pass
        
    def done(self):
X
xiexionghang 已提交
152 153
        """R
        """
X
xiexionghang 已提交
154 155 156 157 158
        cost = time.time() - self._begin_time
        log_str = self._callback(cost, self._callback_params) #cost(s)
        self._done = True
        return cost, log_str

X
xiexionghang 已提交
159 160

class PathGenerator(object):
X
xiexionghang 已提交
161 162 163
    """
    generate path with template & runtime variables
    """
X
xiexionghang 已提交
164
    def __init__(self, config):
X
xiexionghang 已提交
165 166
        """R
        """
X
xiexionghang 已提交
167 168 169 170 171
	self._templates = {}
        self.add_path_template(config)
        pass
    
    def add_path_template(self, config):
X
xiexionghang 已提交
172 173
        """R
        """
X
xiexionghang 已提交
174 175 176 177 178 179
        if 'templates' in config:
            for template in config['templates']:
                self._templates[template['name']] = template['template']
        pass

    def generate_path(self, template_name, param):
X
xiexionghang 已提交
180 181
        """R
        """
X
xiexionghang 已提交
182 183 184 185 186 187 188 189
        if template_name in self._templates:
            if 'time_format' in param:
                str = param['time_format'].strftime(self._templates[template_name])
                return str.format(**param)
            return self._templates[template_name].format(**param)
        else:
            return ""

X
xiexionghang 已提交
190

X
xiexionghang 已提交
191
class TimeTrainPass(object):
X
xiexionghang 已提交
192 193 194 195
    """
    timely pass
    define pass time_interval && start_time && end_time
    """
X
xiexionghang 已提交
196
    def __init__(self, global_config):
X
xiexionghang 已提交
197 198
        """R
        """
X
xiexionghang 已提交
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
        self._config = global_config['epoch']
        if '+' in self._config['days']:
            day_str = self._config['days'].replace(' ', '')
            day_fields = day_str.split('+')
            self._begin_day = make_datetime(day_fields[0].strip())
            if len(day_fields) == 1 or len(day_fields[1]) == 0:
                #100 years, meaning to continuous running
                self._end_day = self._begin_day + datetime.timedelta(days=36500) 
            else:                     
                # example: 2020212+10 
                run_day = int(day_fields[1].strip())
                self._end_day =self._begin_day + datetime.timedelta(days=run_day)
        else: 
            # example: {20191001..20191031}
            days = os.popen("echo -n " + self._config['days']).read().split(" ")
            self._begin_day = make_datetime(days[0])
            self._end_day = make_datetime(days[len(days) - 1])
        self._checkpoint_interval = self._config['checkpoint_interval']
        self._dump_inference_interval = self._config['dump_inference_interval']
        self._interval_per_pass = self._config['train_time_interval'] #train N min data per pass

        self._pass_id = 0
        self._inference_pass_id = 0
        self._pass_donefile_handler = None
        if 'pass_donefile_name' in self._config:
            self._train_pass_donefile = global_config['output_path'] + '/' + self._config['pass_donefile_name']
            if kagle_fs.is_afs_path(self._train_pass_donefile):
                self._pass_donefile_handler = kagle_fs.FileHandler(global_config['io']['afs'])
            else:
                self._pass_donefile_handler = kagle_fs.FileHandler(global_config['io']['local_fs'])
            
            last_done = self._pass_donefile_handler.cat(self._train_pass_donefile).strip().split('\n')[-1]
            done_fileds = last_done.split('\t')
            if len(done_fileds) > 4:
                self._base_key = done_fileds[1]
                self._checkpoint_model_path = done_fileds[2]
                self._checkpoint_pass_id = int(done_fileds[3])
                self._inference_pass_id =  int(done_fileds[4])
                self.init_pass_by_id(done_fileds[0], self._checkpoint_pass_id)

    def max_pass_num_day(self):
X
xiexionghang 已提交
240 241
        """R
        """
X
xiexionghang 已提交
242 243 244
        return 24 * 60 / self._interval_per_pass
    
    def save_train_progress(self, day, pass_id, base_key, model_path, is_checkpoint):
X
xiexionghang 已提交
245 246
        """R
        """
X
xiexionghang 已提交
247 248 249 250 251 252 253 254 255
        if is_checkpoint:
            self._checkpoint_pass_id = pass_id
            self._checkpoint_model_path = model_path
        done_content  = "%s\t%s\t%s\t%s\t%d\n" % (day, base_key, 
            self._checkpoint_model_path, self._checkpoint_pass_id, pass_id)
        self._pass_donefile_handler.write(done_content, self._train_pass_donefile, 'a')
        pass

    def init_pass_by_id(self, date_str, pass_id):
X
xiexionghang 已提交
256 257 258 259 260 261
        """
        init pass context with pass_id
        Args:
            date_str: example "20200110"
            pass_id(int): pass_id of date
        """
X
xiexionghang 已提交
262 263 264 265 266 267 268 269 270 271 272
        date_time = make_datetime(date_str) 
        if pass_id < 1:
            pass_id = 0
        if (date_time - self._begin_day).total_seconds() > 0:
            self._begin_day = date_time
        self._pass_id = pass_id
        mins = self._interval_per_pass * (pass_id - 1)
        self._current_train_time = date_time + datetime.timedelta(minutes=mins)
        print(self._current_train_time)
    
    def init_pass_by_time(self, datetime_str):
X
xiexionghang 已提交
273 274 275 276 277
        """
        init pass context with datetime
        Args:
            date_str: example "20200110000" -> "%Y%m%d%H%M"
        """
X
xiexionghang 已提交
278
        self._current_train_time = make_datetime(datetime_str)
X
xiexionghang 已提交
279
        minus = self._current_train_time.hour * 60 + self._current_train_time.minute
X
xiexionghang 已提交
280 281
        self._pass_id = minus / self._interval_per_pass + 1

X
xiexionghang 已提交
282 283 284
    def current_pass(self):
        """R
        """
X
xiexionghang 已提交
285 286 287
        return self._pass_id
        
    def next(self):
X
xiexionghang 已提交
288 289
        """R
        """
X
xiexionghang 已提交
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
        has_next = True
        old_pass_id = self._pass_id
        if self._pass_id < 1:
            self.init_pass_by_time(self._begin_day.strftime("%Y%m%d%H%M"))
        else:
            next_time = self._current_train_time + datetime.timedelta(minutes=self._interval_per_pass)
            if (next_time - self._end_day).total_seconds() > 0:
                has_next = False
            else:
                self.init_pass_by_time(next_time.strftime("%Y%m%d%H%M"))
        if has_next and (self._inference_pass_id < self._pass_id or self._pass_id < old_pass_id):
            self._inference_pass_id = self._pass_id - 1
        return has_next

    def is_checkpoint_pass(self, pass_id):
X
xiexionghang 已提交
305 306
        """R
        """
X
xiexionghang 已提交
307 308 309 310 311 312 313 314 315
        if pass_id < 1:
            return True
        if pass_id == self.max_pass_num_day():
            return False
        if pass_id % self._checkpoint_interval == 0:
            return True
        return False
    
    def need_dump_inference(self, pass_id):
X
xiexionghang 已提交
316 317
        """R
        """
X
xiexionghang 已提交
318 319 320
        return self._inference_pass_id < pass_id and pass_id % self._dump_inference_interval == 0

    def date(self, delta_day=0):
X
xiexionghang 已提交
321 322 323 324 325 326 327
        """
        get train date
        Args:
            delta_day(int): n day afer current_train_date
        Return:
            date(current_train_time + delta_day)
        """
X
xiexionghang 已提交
328 329 330
        return (self._current_train_time + datetime.timedelta(days=delta_day)).strftime("%Y%m%d")

    def timestamp(self, delta_day=0):
X
xiexionghang 已提交
331 332
        """R
        """
X
xiexionghang 已提交
333
        return (self._current_train_time + datetime.timedelta(days=delta_day)).timestamp()