PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` # Generated by default/object.tt package Paws::SageMaker::Channel; use Moose; has ChannelName => (is => 'ro', isa => 'Str', required => 1); has CompressionType => (is => 'ro', isa => 'Str'); has ContentType => (is => 'ro', isa => 'Str'); has DataSource => (is => 'ro', isa => 'Paws::SageMaker::DataSource', required => 1); has InputMode => (is => 'ro', isa => 'Str'); has RecordWrapperType => (is => 'ro', isa => 'Str'); has ShuffleConfig => (is => 'ro', isa => 'Paws::SageMaker::ShuffleConfig'); 1; ### main pod documentation begin ### =head1 NAME Paws::SageMaker::Channel =head1 USAGE This class represents one of two things: =head3 Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::SageMaker::Channel object: $service_obj->Method(Att1 => { ChannelName => $value, ..., ShuffleConfig => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::SageMaker::Channel object: $result = $service_obj->Method(...); $result->Att1->ChannelName =head1 DESCRIPTION A channel is a named input source that training algorithms can consume. =head1 ATTRIBUTES =head2 B ChannelName => Str The name of the channel. =head2 CompressionType => Str If training data is compressed, the compression type. The default value is C. C is used only in Pipe input mode. In File mode, leave this field unset or set it to None. =head2 ContentType => Str The MIME type of the data. =head2 B DataSource => L The location of the channel data. =head2 InputMode => Str (Optional) The input mode to use for the data channel in a training job. If you don't set a value for C, Amazon SageMaker uses the value set for C. Use this parameter to override the C setting in a AlgorithmSpecification request when you have a channel that needs a different input mode from the training job's general setting. To download the data from Amazon Simple Storage Service (Amazon S3) to the provisioned ML storage volume, and mount the directory to a Docker volume, use C input mode. To stream data directly from Amazon S3 to the container, choose C input mode. To use a model for incremental training, choose C input model. =head2 RecordWrapperType => Str Specify RecordIO as the value when input data is in raw format but the training algorithm requires the RecordIO format. In this case, Amazon SageMaker wraps each individual S3 object in a RecordIO record. If the input data is already in RecordIO format, you don't need to set this attribute. For more information, see Create a Dataset Using RecordIO (https://mxnet.apache.org/api/architecture/note_data_loading#data-format). In File mode, leave this field unset or set it to None. =head2 ShuffleConfig => L A configuration for a shuffle option for input data in a channel. If you use C for C, this shuffles the results of the S3 key prefix matches. If you use C, the order of the S3 object references in the C is shuffled. If you use C, the order of the JSON lines in the C is shuffled. The shuffling order is determined using the C value. For Pipe input mode, shuffling is done at the start of every epoch. With large datasets this ensures that the order of the training data is different for each epoch, it helps reduce bias and possible overfitting. In a multi-node training job when ShuffleConfig is combined with C of C, the data is shuffled across nodes so that the content sent to a particular node on the first epoch might be sent to a different node on the second epoch. =head1 SEE ALSO This class forms part of L, describing an object used in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut