1 réponse
- Le plus récent
- Le plus de votes
- La plupart des commentaires
0
You can do this with the latest version of the sagemaker sdk 2.89.0
from sagemaker.workflow.pipeline_context import PipelineSession
session = PipelineSession()
inputs = [
ProcessingInput(
source="s3://my-bucket/sourcefile",
destination="/opt/ml/processing/inputs/",),
]
processor = FrameworkProcessor(...)
step_args = processor.run(inputs=inputs, source_dir="...")
step_sklearn = ProcessingStep(
name="MyProcessingStep",
step_args=step_args,
)
répondu il y a 2 ans
Contenus pertinents
- demandé il y a 4 mois
- demandé il y a un mois
- demandé il y a 10 mois
- demandé il y a un an
- AWS OFFICIELA mis à jour il y a 2 ans
- AWS OFFICIELA mis à jour il y a 2 ans
thank you!