mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-08-22 06:23:20 -07:00
fix keyword spell mistake in ModelBase
This commit is contained in:
parent
95e70d510f
commit
a262a603ce
1 changed files with 2 additions and 2 deletions
|
@ -223,7 +223,7 @@ class ModelBase(object):
|
||||||
|
|
||||||
#overridable
|
#overridable
|
||||||
def get_converter(self):
|
def get_converter(self):
|
||||||
raise NotImplementeError
|
raise NotImplementedError
|
||||||
#return existing or your own converter which derived from base
|
#return existing or your own converter which derived from base
|
||||||
|
|
||||||
def get_target_epoch(self):
|
def get_target_epoch(self):
|
||||||
|
@ -441,4 +441,4 @@ class ModelBase(object):
|
||||||
lh_text = 'Epoch: %d' % (epoch) if epoch != 0 else ''
|
lh_text = 'Epoch: %d' % (epoch) if epoch != 0 else ''
|
||||||
|
|
||||||
lh_img[last_line_t:last_line_b, 0:w] += image_utils.get_text_image ( (w,last_line_b-last_line_t,c), lh_text, color=[0.8]*c )
|
lh_img[last_line_t:last_line_b, 0:w] += image_utils.get_text_image ( (w,last_line_b-last_line_t,c), lh_text, color=[0.8]*c )
|
||||||
return lh_img
|
return lh_img
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue