so there is this piece of code I am trying to understand:
rois, target_class_ids, target_bbox, target_mask =\
DetectionTargetLayer(config, name="proposal_targets")([
target_rois, input_gt_class_ids, gt_boxes, input_gt_masks])
DetectionTargetLayer is a Keras subclass layer. So what does the operator =\ mean? Is it just the same as '='?