Python caffe.init_log() Examples
The following are 7
code examples of caffe.init_log().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
caffe
, or try the search function
.
Example #1
Source File: multigpu.py From DTPP with BSD 2-Clause "Simplified" License | 6 votes |
def train( solver, # solver proto definition snapshot, # solver snapshot to restore gpus, # list of device ids timing=False, # show timing info for compute and communications ): # NCCL uses a uid to identify a session uid = caffe.NCCL.new_uid() caffe.init_log() caffe.log('Using devices %s' % str(gpus)) procs = [] for rank in range(len(gpus)): p = Process(target=solve_step, args=(solver, snapshot, gpus, timing, uid, rank)) p.daemon = True p.start() procs.append(p) for p in procs: p.join()
Example #2
Source File: train_multi_gpu.py From face-magnet with Apache License 2.0 | 6 votes |
def train_net_multi_gpu(solver_prototxt, roidb, output_dir, pretrained_model, max_iter, gpus, reload): """Train a Fast R-CNN network.""" roidb = filter_roidb(roidb) uid = caffe.NCCL.new_uid() caffe.init_log() caffe.log('Using devices %s' % str(gpus)) procs = [] for rank in range(len(gpus)): p = Process(target=solve, args=( solver_prototxt, roidb, pretrained_model, gpus, uid, rank, output_dir, max_iter, reload)) p.daemon = True p.start() procs.append(p) for p in procs: p.join()
Example #3
Source File: train.py From Deep-Learning-Based-Structural-Damage-Detection with MIT License | 6 votes |
def train( solver, # solver proto definition snapshot, # solver snapshot to restore gpus, # list of device ids timing=False, # show timing info for compute and communications ): # NCCL uses a uid to identify a session uid = caffe.NCCL.new_uid() caffe.init_log() caffe.log('Using devices %s' % str(gpus)) procs = [] for rank in range(len(gpus)): p = Process(target=solve, args=(solver, snapshot, gpus, timing, uid, rank)) p.daemon = True p.start() procs.append(p) for p in procs: p.join()
Example #4
Source File: train_large_file.py From uai-sdk with Apache License 2.0 | 5 votes |
def train( solver, # solver proto definition snapshot, # solver snapshot to restore use_cpu, #whether use cpu gpus, # list of device ids timing=False, # show timing info for compute and communications ): caffe.init_log(0,True) caffe.log('Using devices %s' % str(gpus)) if use_cpu == True: p = Process(target=cpu_solve, args=(solver, snapshot, timing)) p.daemon = True p.start() p.join() else: # NCCL uses a uid to identify a session uid = caffe.NCCL.new_uid() procs = [] for rank in range(len(gpus)): p = Process(target=solve, args=(solver, snapshot, gpus, timing, uid, rank)) p.daemon = True p.start() procs.append(p) for p in procs: p.join()
Example #5
Source File: train.py From uai-sdk with Apache License 2.0 | 5 votes |
def train( solver, # solver proto definition snapshot, # solver snapshot to restore use_cpu, #whether use cpu gpus, # list of device ids timing=False, # show timing info for compute and communications ): caffe.init_log(0,True) caffe.log('Using devices %s' % str(gpus)) if use_cpu == True: p = Process(target=cpu_solve, args=(solver, snapshot, timing)) p.daemon = True p.start() p.join() else: # NCCL uses a uid to identify a session uid = caffe.NCCL.new_uid() procs = [] for rank in range(len(gpus)): p = Process(target=solve, args=(solver, snapshot, gpus, timing, uid, rank)) p.daemon = True p.start() procs.append(p) for p in procs: p.join()
Example #6
Source File: train.py From uai-sdk with Apache License 2.0 | 5 votes |
def train( solver, # solver proto definition snapshot, # solver snapshot to restore use_cpu, #whether use cpu gpus, # list of device ids timing=False, # show timing info for compute and communications ): caffe.init_log(0,True) caffe.log('Using devices %s' % str(gpus)) if use_cpu == True: p = Process(target=cpu_solve, args=(solver, snapshot, timing)) p.daemon = True p.start() p.join() else: # NCCL uses a uid to identify a session uid = caffe.NCCL.new_uid() procs = [] for rank in range(len(gpus)): p = Process(target=solve, args=(solver, snapshot, gpus, timing, uid, rank)) p.daemon = True p.start() procs.append(p) for p in procs: p.join()
Example #7
Source File: train.py From uai-sdk with Apache License 2.0 | 5 votes |
def train( solver, # solver proto definition snapshot, # solver snapshot to restore use_cpu, #whether use cpu gpus, # list of device ids timing=False, # show timing info for compute and communications ): caffe.init_log(0,True) caffe.log('Using devices %s' % str(gpus)) if use_cpu == True: p = Process(target=cpu_solve, args=(solver, snapshot, timing)) p.daemon = True p.start() p.join() else: # NCCL uses a uid to identify a session uid = caffe.NCCL.new_uid() procs = [] for rank in range(len(gpus)): p = Process(target=solve, args=(solver, snapshot, gpus, timing, uid, rank)) p.daemon = True p.start() procs.append(p) for p in procs: p.join()