Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 9bea801

Browse files
committed
fix linters
1 parent 7cdfb0d commit 9bea801

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

skflow/estimators/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ def predict(self, X, axis=1, batch_size=-1):
264264
265265
Args:
266266
X: array-like matrix, [n_samples, n_features...] or iterator.
267-
axis: Which axis to argmax for classification.
267+
axis: Which axis to argmax for classification.
268268
By default axis 1 (next after batch) is used.
269269
Use 2 for sequence predictions.
270270
batch_size: If test set is too big, use batch size to split

skflow/io/data_feeder.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@
1717
from __future__ import division, print_function, absolute_import
1818

1919
import itertools
20+
import math
21+
2022
import six
2123
from six.moves import xrange # pylint: disable=redefined-builtin
22-
import math
2324

2425
import numpy as np
2526
from sklearn.utils import check_array

0 commit comments

Comments
 (0)