tsts

Loss FunctionsΒΆ

Adding a LOSSES section to the config allows the user to select the loss function to be used during training. Multiple loss functions can be used by adding multiple elements to the list. You can set the weight of each loss function in WEIGHT_PER_LOSS. The default loss function is MSE.

DILATEΒΆ

LOSSES:
  NAMES: ["DILATE"]
  ARGS: [{"alpha": 0.5, "gamma": 0.001}]

Mean Absolute Error (MAE)ΒΆ

LOSSES:
  NAMES: ["MAE"]
  ARGS: [{}]

Mean Absolute Percentage Error (MAPE)ΒΆ

LOSSES:
  NAMES: ["MAPE"]
  ARGS: [{}]

Mean Squared Error (MSE)ΒΆ

LOSSES:
  NAMES: ["MSE"]
  ARGS: [{}]

Smooth MAEΒΆ

LOSSES:
  NAMES: ["SmoothMAE"]
  ARGS: [{"beta": 0.11}]

ReferenceΒΆ

Fast R-CNN