public interface TargetEncoderTransform
| Modifier and Type | Method and Description |
|---|---|
retrofit2.Call<FrameKeyV3> |
transform() |
retrofit2.Call<FrameKeyV3> |
transform(java.lang.String model,
java.lang.String frame,
boolean as_training,
boolean blending,
double inflection_point,
double smoothing,
double noise)
Transform using give TargetEncoderModel
|
@GET(value="/3/TargetEncoderTransform") retrofit2.Call<FrameKeyV3> transform(@Query(value="model") java.lang.String model, @Query(value="frame") java.lang.String frame, @Query(value="as_training") boolean as_training, @Query(value="blending") boolean blending, @Query(value="inflection_point") double inflection_point, @Query(value="smoothing") double smoothing, @Query(value="noise") double noise)
model - Target Encoder model to use.frame - Frame to transform.as_training - Force encoding mode for training data: when using a leakage handling strategy different from
None, training data should be transformed with this flag set to true (Defaults to false).blending - Enables or disables blending. Defaults to the value assigned at model creation.inflection_point - Inflection point. Defaults to the value assigned at model creation.smoothing - Smoothing. Defaults to the value assigned at model creation.noise - Noise. Defaults to the value assigned at model creation.@GET(value="/3/TargetEncoderTransform") retrofit2.Call<FrameKeyV3> transform()