@@ -650,19 +650,22 @@ def fit(self, inputs=None, wait=True, logs="All", job_name=None, experiment_conf
650
650
model using the Amazon SageMaker hosting services.
651
651
652
652
Args:
653
- inputs (str or dict or sagemaker.inputs.TrainingInput): Information
654
- about the training data. This can be one of three types:
653
+ inputs (str or dict or sagemaker.inputs.TrainingInput or
654
+ sagemaker.inputs.FileSystemInput): Information about the training data.
655
+ This can be one of four types:
655
656
656
657
* (str) the S3 location where training data is saved, or a file:// path in
657
658
local mode.
658
- * (dict[str, str] or dict[str, sagemaker.inputs.TrainingInput]) If using multiple
659
- channels for training data, you can specify a dict mapping channel names to
660
- strings or :func:`~sagemaker.inputs.TrainingInput` objects.
659
+ * (dict[str, str] or dict[str, sagemaker.inputs.TrainingInput] or
660
+ dict[str, sagemaker.inputs.FileSystemInput]) If using multiple channels for
661
+ training data, you can specify a dict mapping channel names to strings or
662
+ :func:`~sagemaker.inputs.TrainingInput` objects or
663
+ :func:`~sagemaker.inputs.FileSystemInput` objects.
661
664
* (sagemaker.inputs.TrainingInput) - channel configuration for S3 data sources
662
665
that can provide additional information as well as the path to the training
663
666
dataset.
664
667
See :func:`sagemaker.inputs.TrainingInput` for full details.
665
- * (sagemaker.session .FileSystemInput) - channel configuration for
668
+ * (sagemaker.inputs .FileSystemInput) - channel configuration for
666
669
a file system data source that can provide additional information as well as
667
670
the path to the training dataset.
668
671
0 commit comments