We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d0f6b3 commit 0b8b26eCopy full SHA for 0b8b26e
src/sagemaker/local/data.py
@@ -69,7 +69,7 @@ def get_splitter_instance(split_type):
69
Returns
70
:class:`sagemaker.local.data.Splitter`: an Instance of a Splitter
71
"""
72
- if split_type is None:
+ if split_type == "None" or split_type is None:
73
return NoneSplitter()
74
if split_type == "Line":
75
return LineSplitter()
0 commit comments