diff --git a/README.md b/README.md index 13e7ba56..e0296388 100644 --- a/README.md +++ b/README.md @@ -640,6 +640,8 @@ class CustomLoss(BaseLoss): return value.abs() ``` +For additional examples of creating custom components, please refer to the [examples section](examples/README.md). + **Using custom components in the configuration file:** ```yaml diff --git a/examples/README.md b/examples/README.md index 3d4f3121..ebbee2dc 100644 --- a/examples/README.md +++ b/examples/README.md @@ -217,8 +217,6 @@ class ResNet(BaseNode[Tensor, list[Tensor]]): #### Segmentation Head ```python -from luxonis - from typing import override from torch import Tensor, nn