Converts Sentinel-2 bands 4,3,2 to RGB by scaling values between 0-3000 to 0-255
Converts satellite bands 1,2,3 to RGB by scaling values between 0-3000 to 0-1
Applies sigmoid function to model output and thresholds at 0.5 to create binary mask
Applies argmax function to model output to create a mask
When you perform inference, the backend will perform a POST request to the model URL with the image as a multipart/form-data request, using the name "image" for the form data field. You can use the preprocessing and postprocessing options to preprocess and postprocess the image before and after inference (limited to simple, common operations).