File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -536,15 +536,15 @@ def standardize(self, x):
536
536
x -= self .mean
537
537
else :
538
538
warnings .warn ('This ImageDataGenerator specifies '
539
- '`featurewise_center`, but it hasn\' t'
539
+ '`featurewise_center`, but it hasn\' t '
540
540
'been fit on any training data. Fit it '
541
541
'first by calling `.fit(numpy_data)`.' )
542
542
if self .featurewise_std_normalization :
543
543
if self .std is not None :
544
544
x /= (self .std + 1e-7 )
545
545
else :
546
546
warnings .warn ('This ImageDataGenerator specifies '
547
- '`featurewise_std_normalization`, but it hasn\' t'
547
+ '`featurewise_std_normalization`, but it hasn\' t '
548
548
'been fit on any training data. Fit it '
549
549
'first by calling `.fit(numpy_data)`.' )
550
550
if self .zca_whitening :
@@ -554,7 +554,7 @@ def standardize(self, x):
554
554
x = np .reshape (whitex , x .shape )
555
555
else :
556
556
warnings .warn ('This ImageDataGenerator specifies '
557
- '`zca_whitening`, but it hasn\' t'
557
+ '`zca_whitening`, but it hasn\' t '
558
558
'been fit on any training data. Fit it '
559
559
'first by calling `.fit(numpy_data)`.' )
560
560
return x
You can’t perform that action at this time.
0 commit comments