Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

__init__.py 896 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
  1. from super_gradients.training.losses.focal_loss import FocalLoss
  2. from super_gradients.training.losses.label_smoothing_cross_entropy_loss import LabelSmoothingCrossEntropyLoss
  3. from super_gradients.training.losses.r_squared_loss import RSquaredLoss
  4. from super_gradients.training.losses.shelfnet_ohem_loss import ShelfNetOHEMLoss
  5. from super_gradients.training.losses.shelfnet_semantic_encoding_loss import ShelfNetSemanticEncodingLoss
  6. from super_gradients.training.losses.yolo_v3_loss import YoLoV3DetectionLoss
  7. from super_gradients.training.losses.yolo_v5_loss import YoLoV5DetectionLoss
  8. from super_gradients.training.losses.ssd_loss import SSDLoss
  9. from super_gradients.training.losses.all_losses import LOSSES
  10. __all__ = [FocalLoss, LabelSmoothingCrossEntropyLoss, ShelfNetOHEMLoss, ShelfNetSemanticEncodingLoss,
  11. YoLoV3DetectionLoss, YoLoV5DetectionLoss, RSquaredLoss, SSDLoss, LOSSES]
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...