File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 16
16
# these imports ensure backward compatibility.
17
17
from sagemaker .deserializers import RecordDeserializer # noqa: F401 # pylint: disable=W0611
18
18
from sagemaker .serializers import RecordSerializer # noqa: F401 # pylint: disable=W0611
19
- from sagemaker .serializer_utils import (
19
+ from sagemaker .serializer_utils import ( # noqa: F401 # pylint: disable=W0611
20
+ read_recordio ,
21
+ read_records ,
20
22
write_numpy_to_dense_tensor ,
21
23
write_spmatrix_to_sparse_tensor ,
22
- ) # noqa: F401 # pylint: disable=W0611
24
+ )
Original file line number Diff line number Diff line change 23
23
import numpy as np
24
24
from six import with_metaclass
25
25
26
- from sagemaker .amazon . common import read_records
26
+ from sagemaker .serializer_utils import read_records
27
27
from sagemaker .utils import DeferredError
28
28
29
29
try :
You can’t perform that action at this time.
0 commit comments